2012-05-28 08:01:33 +03:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* COPS (Calibre OPDS PHP Server) class file
|
|
|
|
|
*
|
|
|
|
|
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
|
|
|
|
* @author S<EFBFBD>bastien Lucas <sebastien@slucas.fr>
|
|
|
|
|
*/
|
|
|
|
|
|
2012-05-28 08:05:05 +03:00
|
|
|
|
function getURLParam ($name, $default = NULL) {
|
|
|
|
|
if (!empty ($_GET) && isset($_GET[$name])) {
|
|
|
|
|
return $_GET[$name];
|
|
|
|
|
}
|
|
|
|
|
return $default;
|
|
|
|
|
}
|
2012-05-28 08:01:33 +03:00
|
|
|
|
|
2012-05-29 21:10:41 +03:00
|
|
|
|
/**
|
|
|
|
|
* This method is a direct copy-paste from
|
|
|
|
|
* http://tmont.com/blargh/2010/1/string-format-in-php
|
|
|
|
|
*/
|
|
|
|
|
function str_format($format) {
|
|
|
|
|
$args = func_get_args();
|
|
|
|
|
$format = array_shift($args);
|
|
|
|
|
|
|
|
|
|
preg_match_all('/(?=\{)\{(\d+)\}(?!\})/', $format, $matches, PREG_OFFSET_CAPTURE);
|
|
|
|
|
$offset = 0;
|
|
|
|
|
foreach ($matches[1] as $data) {
|
|
|
|
|
$i = $data[0];
|
|
|
|
|
$format = substr_replace($format, @$args[$i], $offset + $data[1] - 1, 2 + strlen($i));
|
|
|
|
|
$offset += strlen(@$args[$i]) - 2 - strlen($i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $format;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This method is based on this page
|
|
|
|
|
* http://www.mind-it.info/2010/02/22/a-simple-approach-to-localization-in-php/
|
|
|
|
|
*/
|
|
|
|
|
function localize($phrase) {
|
|
|
|
|
/* Static keyword is used to ensure the file is loaded only once */
|
|
|
|
|
static $translations = NULL;
|
|
|
|
|
/* If no instance of $translations has occured load the language file */
|
|
|
|
|
if (is_null($translations)) {
|
|
|
|
|
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
|
|
|
|
|
$lang_file_en = NULL;
|
|
|
|
|
$lang_file = 'lang/Localization_' . $lang . '.json';
|
|
|
|
|
if (!file_exists($lang_file)) {
|
|
|
|
|
$lang_file = 'lang/' . 'Localization_en.json';
|
|
|
|
|
}
|
|
|
|
|
elseif ($lang != "en") {
|
|
|
|
|
$lang_file_en = 'lang/' . 'Localization_en.json';
|
|
|
|
|
}
|
|
|
|
|
$lang_file_content = file_get_contents($lang_file);
|
|
|
|
|
/* Load the language file as a JSON object and transform it into an associative array */
|
|
|
|
|
$translations = json_decode($lang_file_content, true);
|
|
|
|
|
if ($lang_file_en)
|
|
|
|
|
{
|
|
|
|
|
$lang_file_content = file_get_contents($lang_file_en);
|
|
|
|
|
$translations_en = json_decode($lang_file_content, true);
|
|
|
|
|
$translations = array_merge ($translations_en, $translations);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $translations[$phrase];
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-28 08:01:33 +03:00
|
|
|
|
class Link
|
|
|
|
|
{
|
2012-05-28 08:07:49 +03:00
|
|
|
|
const OPDS_THUMBNAIL_TYPE = "http://opds-spec.org/image/thumbnail";
|
|
|
|
|
const OPDS_IMAGE_TYPE = "http://opds-spec.org/image";
|
|
|
|
|
const OPDS_ACQUISITION_TYPE = "http://opds-spec.org/acquisition";
|
|
|
|
|
const OPDS_NAVIGATION_TYPE = "application/atom+xml;profile=opds-catalog;kind=navigation";
|
|
|
|
|
|
2012-05-28 08:01:33 +03:00
|
|
|
|
public $href;
|
|
|
|
|
public $type;
|
|
|
|
|
public $rel;
|
|
|
|
|
public $title;
|
|
|
|
|
|
|
|
|
|
public function __construct($phref, $ptype, $prel = NULL, $ptitle = NULL) {
|
|
|
|
|
$this->href = $phref;
|
|
|
|
|
$this->type = $ptype;
|
|
|
|
|
$this->rel = $prel;
|
|
|
|
|
$this->title = $ptitle;
|
|
|
|
|
}
|
2012-05-28 08:06:12 +03:00
|
|
|
|
|
|
|
|
|
public function hrefXhtml () {
|
|
|
|
|
return str_replace ("&", "&", $this->href);
|
|
|
|
|
}
|
2012-05-28 08:01:33 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class LinkNavigation extends Link
|
|
|
|
|
{
|
|
|
|
|
public function __construct($phref, $prel = NULL, $ptitle = NULL) {
|
2012-05-28 08:07:49 +03:00
|
|
|
|
parent::__construct ($phref, Link::OPDS_NAVIGATION_TYPE, $prel, $ptitle);
|
2012-05-28 08:06:12 +03:00
|
|
|
|
$this->href = $_SERVER["SCRIPT_NAME"] . $this->href;
|
2012-05-28 08:01:33 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Entry
|
|
|
|
|
{
|
|
|
|
|
public $title;
|
|
|
|
|
public $id;
|
|
|
|
|
public $content;
|
|
|
|
|
public $contentType;
|
|
|
|
|
public $linkArray;
|
|
|
|
|
public $localUpdated;
|
|
|
|
|
private static $updated = NULL;
|
|
|
|
|
|
2012-05-28 08:07:49 +03:00
|
|
|
|
public static $icons = array(
|
|
|
|
|
Author::ALL_AUTHORS_ID => 'images/author.png',
|
|
|
|
|
Serie::ALL_SERIES_ID => 'images/serie.png',
|
|
|
|
|
Book::ALL_RECENT_BOOKS_ID => 'images/recent.png',
|
|
|
|
|
Tag::ALL_TAGS_ID => 'images/tag.png',
|
|
|
|
|
"calibre:books$" => 'images/allbook.png',
|
|
|
|
|
"calibre:books:letter" => 'images/allbook.png'
|
|
|
|
|
);
|
|
|
|
|
|
2012-05-28 08:01:33 +03:00
|
|
|
|
public function getUpdatedTime () {
|
|
|
|
|
if (!is_null ($this->localUpdated)) {
|
|
|
|
|
return date (DATE_ATOM, $this->localUpdated);
|
|
|
|
|
}
|
|
|
|
|
if (is_null (self::$updated)) {
|
|
|
|
|
self::$updated = time();
|
|
|
|
|
}
|
|
|
|
|
return date (DATE_ATOM, self::$updated);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function __construct($ptitle, $pid, $pcontent, $pcontentType, $plinkArray) {
|
2012-05-28 08:07:49 +03:00
|
|
|
|
global $config;
|
2012-05-28 08:01:33 +03:00
|
|
|
|
$this->title = $ptitle;
|
|
|
|
|
$this->id = $pid;
|
|
|
|
|
$this->content = $pcontent;
|
|
|
|
|
$this->contentType = $pcontentType;
|
|
|
|
|
$this->linkArray = $plinkArray;
|
2012-05-28 08:07:49 +03:00
|
|
|
|
|
|
|
|
|
if ($config['cops_show_icons'] == 1)
|
|
|
|
|
{
|
|
|
|
|
foreach (self::$icons as $reg => $image)
|
|
|
|
|
{
|
|
|
|
|
if (preg_match ("/" . $reg . "/", $pid)) {
|
|
|
|
|
array_push ($this->linkArray, new Link ($image, "image/png", Link::OPDS_THUMBNAIL_TYPE));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-05-28 08:01:33 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class EntryBook extends Entry
|
|
|
|
|
{
|
|
|
|
|
public $book;
|
|
|
|
|
|
|
|
|
|
public function __construct($ptitle, $pid, $pcontent, $pcontentType, $plinkArray, $pbook) {
|
|
|
|
|
parent::__construct ($ptitle, $pid, $pcontent, $pcontentType, $plinkArray);
|
|
|
|
|
$this->book = $pbook;
|
|
|
|
|
$this->localUpdated = $pbook->timestamp;
|
|
|
|
|
}
|
2012-05-28 08:06:12 +03:00
|
|
|
|
|
|
|
|
|
public function getCoverThumbnail () {
|
|
|
|
|
foreach ($this->linkArray as $link) {
|
2012-05-28 08:07:49 +03:00
|
|
|
|
if ($link->rel == Link::OPDS_THUMBNAIL_TYPE)
|
|
|
|
|
return $link->hrefXhtml ();
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getCover () {
|
|
|
|
|
foreach ($this->linkArray as $link) {
|
|
|
|
|
if ($link->rel == Link::OPDS_IMAGE_TYPE)
|
2012-05-28 08:06:12 +03:00
|
|
|
|
return $link->hrefXhtml ();
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2012-05-28 08:05:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class Page
|
|
|
|
|
{
|
|
|
|
|
public $title;
|
|
|
|
|
public $idPage;
|
|
|
|
|
public $idGet;
|
|
|
|
|
public $query;
|
|
|
|
|
public $entryArray = array();
|
|
|
|
|
|
|
|
|
|
public static function getPage ($pageId, $id, $query)
|
|
|
|
|
{
|
|
|
|
|
switch ($pageId) {
|
|
|
|
|
case Base::PAGE_ALL_AUTHORS :
|
|
|
|
|
return new PageAllAuthors ($id, $query);
|
|
|
|
|
case Base::PAGE_AUTHOR_DETAIL :
|
|
|
|
|
return new PageAuthorDetail ($id, $query);
|
2012-05-28 08:07:49 +03:00
|
|
|
|
case Base::PAGE_ALL_TAGS :
|
|
|
|
|
return new PageAllTags ($id, $query);
|
|
|
|
|
case Base::PAGE_TAG_DETAIL :
|
|
|
|
|
return new PageTagDetail ($id, $query);
|
2012-05-28 08:05:05 +03:00
|
|
|
|
case Base::PAGE_ALL_SERIES :
|
|
|
|
|
return new PageAllSeries ($id, $query);
|
|
|
|
|
case Base::PAGE_ALL_BOOKS :
|
|
|
|
|
return new PageAllBooks ($id, $query);
|
|
|
|
|
case Base::PAGE_ALL_BOOKS_LETTER:
|
|
|
|
|
return new PageAllBooksLetter ($id, $query);
|
|
|
|
|
case Base::PAGE_ALL_RECENT_BOOKS :
|
|
|
|
|
return new PageRecentBooks ($id, $query);
|
|
|
|
|
case Base::PAGE_SERIE_DETAIL :
|
|
|
|
|
return new PageSerieDetail ($id, $query);
|
|
|
|
|
case Base::PAGE_OPENSEARCH_QUERY :
|
|
|
|
|
return new PageQueryResult ($id, $query);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2012-05-28 08:07:49 +03:00
|
|
|
|
$page = new Page ($id, $query);
|
|
|
|
|
$page->idPage = "cops:catalog";
|
|
|
|
|
return $page;
|
2012-05-28 08:01:33 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-28 08:05:05 +03:00
|
|
|
|
public function __construct($pid, $pquery) {
|
|
|
|
|
$this->idGet = $pid;
|
|
|
|
|
$this->query = $pquery;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function InitializeContent ()
|
|
|
|
|
{
|
|
|
|
|
global $config;
|
|
|
|
|
$this->title = $config['cops_title_default'];
|
|
|
|
|
array_push ($this->entryArray, Author::getCount());
|
|
|
|
|
array_push ($this->entryArray, Serie::getCount());
|
2012-05-28 08:07:49 +03:00
|
|
|
|
array_push ($this->entryArray, Tag::getCount());
|
2012-05-28 08:05:05 +03:00
|
|
|
|
$this->entryArray = array_merge ($this->entryArray, Book::getCount());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class PageAllAuthors extends Page
|
|
|
|
|
{
|
|
|
|
|
public function InitializeContent ()
|
|
|
|
|
{
|
2012-05-29 21:10:41 +03:00
|
|
|
|
$this->title = localize("authors.title");
|
2012-05-28 08:05:05 +03:00
|
|
|
|
$this->entryArray = Author::getAllAuthors();
|
2012-05-28 08:07:49 +03:00
|
|
|
|
$this->idPage = Author::ALL_AUTHORS_ID;
|
2012-05-28 08:01:33 +03:00
|
|
|
|
}
|
2012-05-28 08:05:05 +03:00
|
|
|
|
}
|
2012-05-28 08:01:33 +03:00
|
|
|
|
|
2012-05-28 08:05:05 +03:00
|
|
|
|
class PageAuthorDetail extends Page
|
|
|
|
|
{
|
|
|
|
|
public function InitializeContent ()
|
|
|
|
|
{
|
2012-05-28 08:07:49 +03:00
|
|
|
|
$author = Author::getAuthorById ($this->idGet);
|
|
|
|
|
$this->idPage = $author->getEntryId ();
|
|
|
|
|
$this->title = $author->name;
|
2012-05-28 08:05:05 +03:00
|
|
|
|
$this->entryArray = Book::getBooksByAuthor ($this->idGet);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-28 08:07:49 +03:00
|
|
|
|
class PageAllTags extends Page
|
|
|
|
|
{
|
|
|
|
|
public function InitializeContent ()
|
|
|
|
|
{
|
2012-05-29 21:10:41 +03:00
|
|
|
|
$this->title = localize("tags.title");
|
2012-05-28 08:07:49 +03:00
|
|
|
|
$this->entryArray = Tag::getAllTags();
|
|
|
|
|
$this->idPage = Tag::ALL_TAGS_ID;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class PageTagDetail extends Page
|
|
|
|
|
{
|
|
|
|
|
public function InitializeContent ()
|
|
|
|
|
{
|
|
|
|
|
$tag = Tag::getTagById ($this->idGet);
|
|
|
|
|
$this->idPage = $tag->getEntryId ();
|
|
|
|
|
$this->title = $tag->name;
|
|
|
|
|
$this->entryArray = Book::getBooksByTag ($this->idGet);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-28 08:05:05 +03:00
|
|
|
|
class PageAllSeries extends Page
|
|
|
|
|
{
|
|
|
|
|
public function InitializeContent ()
|
|
|
|
|
{
|
2012-05-29 21:10:41 +03:00
|
|
|
|
$this->title = localize("series.title");
|
2012-05-28 08:05:05 +03:00
|
|
|
|
$this->entryArray = Serie::getAllSeries();
|
2012-05-28 08:07:49 +03:00
|
|
|
|
$this->idPage = Serie::ALL_SERIES_ID;
|
2012-05-28 08:05:05 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class PageSerieDetail extends Page
|
|
|
|
|
{
|
|
|
|
|
public function InitializeContent ()
|
|
|
|
|
{
|
2012-05-28 08:07:49 +03:00
|
|
|
|
$serie = Serie::getSerieById ($this->idGet);
|
2012-05-29 21:10:41 +03:00
|
|
|
|
$this->title = $serie->name;
|
2012-05-28 08:05:05 +03:00
|
|
|
|
$this->entryArray = Book::getBooksBySeries ($this->idGet);
|
2012-05-28 08:07:49 +03:00
|
|
|
|
$this->idPage = $serie->getEntryId ();
|
2012-05-28 08:05:05 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class PageAllBooks extends Page
|
|
|
|
|
{
|
|
|
|
|
public function InitializeContent ()
|
|
|
|
|
{
|
2012-05-29 21:10:41 +03:00
|
|
|
|
$this->title = localize ("allbooks.title");
|
2012-05-28 08:05:05 +03:00
|
|
|
|
$this->entryArray = Book::getAllBooks ();
|
2012-05-28 08:07:49 +03:00
|
|
|
|
$this->idPage = Book::ALL_BOOKS_ID;
|
2012-05-28 08:05:05 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class PageAllBooksLetter extends Page
|
|
|
|
|
{
|
|
|
|
|
public function InitializeContent ()
|
|
|
|
|
{
|
2012-05-29 21:10:41 +03:00
|
|
|
|
$this->title = str_format (localize ("splitByLetter.letter"), localize ("bookword.title"), $this->idGet);
|
2012-05-28 08:05:05 +03:00
|
|
|
|
$this->entryArray = Book::getBooksByStartingLetter ($this->idGet);
|
2012-05-28 08:07:49 +03:00
|
|
|
|
$this->idPage = Book::getEntryIdByLetter ($this->idGet);
|
2012-05-28 08:05:05 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class PageRecentBooks extends Page
|
|
|
|
|
{
|
|
|
|
|
public function InitializeContent ()
|
|
|
|
|
{
|
2012-05-29 21:10:41 +03:00
|
|
|
|
$this->title = localize ("recent.title");
|
2012-05-28 08:05:05 +03:00
|
|
|
|
$this->entryArray = Book::getAllRecentBooks ();
|
2012-05-28 08:07:49 +03:00
|
|
|
|
$this->idPage = Book::ALL_RECENT_BOOKS_ID;
|
2012-05-28 08:05:05 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class PageQueryResult extends Page
|
|
|
|
|
{
|
|
|
|
|
public function InitializeContent ()
|
|
|
|
|
{
|
2012-05-29 21:10:41 +03:00
|
|
|
|
$this->title = "Search result for query *" . $this->query . "*"; // TODO I18N
|
2012-05-28 08:05:05 +03:00
|
|
|
|
$this->entryArray = Book::getBooksByQuery ($this->query);
|
|
|
|
|
}
|
2012-05-28 08:01:33 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
abstract class Base
|
|
|
|
|
{
|
|
|
|
|
const PAGE_INDEX = "index";
|
|
|
|
|
const PAGE_ALL_AUTHORS = "1";
|
|
|
|
|
const PAGE_AUTHORS_FIRST_LETTER = "2";
|
|
|
|
|
const PAGE_AUTHOR_DETAIL = "3";
|
|
|
|
|
const PAGE_ALL_BOOKS = "4";
|
|
|
|
|
const PAGE_ALL_BOOKS_LETTER = "5";
|
|
|
|
|
const PAGE_ALL_SERIES = "6";
|
|
|
|
|
const PAGE_SERIE_DETAIL = "7";
|
|
|
|
|
const PAGE_OPENSEARCH = "8";
|
|
|
|
|
const PAGE_OPENSEARCH_QUERY = "9";
|
|
|
|
|
const PAGE_ALL_RECENT_BOOKS = "10";
|
2012-05-28 08:07:49 +03:00
|
|
|
|
const PAGE_ALL_TAGS = "11";
|
|
|
|
|
const PAGE_TAG_DETAIL = "12";
|
|
|
|
|
|
2012-05-28 08:01:33 +03:00
|
|
|
|
const COMPATIBILITY_XML_ALDIKO = "aldiko";
|
|
|
|
|
|
|
|
|
|
private static $db = NULL;
|
|
|
|
|
|
|
|
|
|
public static function getDb () {
|
|
|
|
|
global $config;
|
|
|
|
|
if (is_null (self::$db)) {
|
|
|
|
|
try {
|
|
|
|
|
self::$db = new PDO('sqlite:'. $config['calibre_directory'] .'metadata.db');
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
|
echo $e;
|
|
|
|
|
die($e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return self::$db;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
?>
|