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>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
require_once('base.php');
|
|
|
|
|
|
|
|
|
|
class Serie extends Base {
|
|
|
|
|
const ALL_SERIES_ID = "calibre:series";
|
|
|
|
|
|
|
|
|
|
public $id;
|
|
|
|
|
public $name;
|
|
|
|
|
|
|
|
|
|
public function __construct($pid, $pname) {
|
|
|
|
|
$this->id = $pid;
|
|
|
|
|
$this->name = $pname;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getUri () {
|
2012-05-28 08:06:12 +03:00
|
|
|
|
return "?page=".parent::PAGE_SERIE_DETAIL."&id=$this->id";
|
2012-05-28 08:01:33 +03:00
|
|
|
|
}
|
2012-05-28 08:07:49 +03:00
|
|
|
|
|
|
|
|
|
public function getEntryId () {
|
|
|
|
|
return self::ALL_SERIES_ID.":".$this->id;
|
|
|
|
|
}
|
2012-05-28 08:01:33 +03:00
|
|
|
|
|
|
|
|
|
public static function getCount() {
|
|
|
|
|
$nSeries = parent::getDb ()->query('select count(*) from series')->fetchColumn();
|
2013-05-21 10:10:05 +03:00
|
|
|
|
if ($nSeries == 0) return NULL;
|
2012-05-29 21:10:41 +03:00
|
|
|
|
$entry = new Entry (localize("series.title"), self::ALL_SERIES_ID,
|
2013-04-20 16:41:32 +03:00
|
|
|
|
str_format (localize("series.alphabetical", $nSeries), $nSeries), "text",
|
2012-05-28 08:06:12 +03:00
|
|
|
|
array ( new LinkNavigation ("?page=".parent::PAGE_ALL_SERIES)));
|
2012-05-28 08:05:05 +03:00
|
|
|
|
return $entry;
|
2012-05-28 08:01:33 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function getSerieByBookId ($bookId) {
|
|
|
|
|
$result = parent::getDb ()->prepare('select series.id as id, name
|
|
|
|
|
from books_series_link, series
|
|
|
|
|
where series.id = series and book = ?');
|
|
|
|
|
$result->execute (array ($bookId));
|
|
|
|
|
if ($post = $result->fetchObject ()) {
|
|
|
|
|
return new Serie ($post->id, $post->name);
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function getSerieById ($serieId) {
|
|
|
|
|
$result = parent::getDb ()->prepare('select id, name from series where id = ?');
|
|
|
|
|
$result->execute (array ($serieId));
|
|
|
|
|
if ($post = $result->fetchObject ()) {
|
|
|
|
|
return new Serie ($post->id, $post->name);
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function getAllSeries() {
|
|
|
|
|
$result = parent::getDb ()->query('select series.id as id, series.name as name, series.sort as sort, count(*) as count
|
|
|
|
|
from series, books_series_link
|
|
|
|
|
where series.id = series
|
|
|
|
|
group by series.id, series.name, series.sort
|
|
|
|
|
order by series.sort');
|
2012-05-28 08:05:05 +03:00
|
|
|
|
$entryArray = array();
|
2012-05-28 08:01:33 +03:00
|
|
|
|
while ($post = $result->fetchObject ())
|
|
|
|
|
{
|
2012-05-28 08:07:49 +03:00
|
|
|
|
$serie = new Serie ($post->id, $post->sort);
|
|
|
|
|
array_push ($entryArray, new Entry ($serie->name, $serie->getEntryId (),
|
2013-01-05 15:33:12 +02:00
|
|
|
|
str_format (localize("bookword", $post->count), $post->count), "text",
|
2012-05-28 08:07:49 +03:00
|
|
|
|
array ( new LinkNavigation ($serie->getUri ()))));
|
2012-05-28 08:01:33 +03:00
|
|
|
|
}
|
2012-05-28 08:05:05 +03:00
|
|
|
|
return $entryArray;
|
2012-05-28 08:01:33 +03:00
|
|
|
|
}
|
|
|
|
|
}
|