90 lines
3.1 KiB
PHP
90 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* COPS (Calibre OPDS PHP Server) class file
|
|
*
|
|
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
|
* @author Sébastien Lucas <sebastien@slucas.fr>
|
|
*/
|
|
|
|
require_once('base.php');
|
|
|
|
class Serie extends Base {
|
|
const ALL_SERIES_ID = "cops:series";
|
|
|
|
public $id;
|
|
public $name;
|
|
|
|
public function __construct($pid, $pname) {
|
|
$this->id = $pid;
|
|
$this->name = $pname;
|
|
}
|
|
|
|
public function getUri () {
|
|
return "?page=".parent::PAGE_SERIE_DETAIL."&id=$this->id";
|
|
}
|
|
|
|
public function getEntryId () {
|
|
return self::ALL_SERIES_ID.":".$this->id;
|
|
}
|
|
|
|
public static function getCount() {
|
|
// str_format (localize("series.alphabetical", count(array))
|
|
return parent::getCountGeneric ("series", self::ALL_SERIES_ID, parent::PAGE_ALL_SERIES);
|
|
}
|
|
|
|
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');
|
|
$entryArray = array();
|
|
while ($post = $result->fetchObject ())
|
|
{
|
|
$serie = new Serie ($post->id, $post->sort);
|
|
array_push ($entryArray, new Entry ($serie->name, $serie->getEntryId (),
|
|
str_format (localize("bookword", $post->count), $post->count), "text",
|
|
array ( new LinkNavigation ($serie->getUri ()))));
|
|
}
|
|
return $entryArray;
|
|
}
|
|
|
|
public static function getAllSeriesByQuery($query) {
|
|
$columns = "series.id as id, series.name as name, series.sort as sort, count(*) as count";
|
|
$sql = 'select {0} from series, books_series_link
|
|
where series.id = series and upper (series.name) like ?
|
|
group by series.id, series.name, series.sort
|
|
order by series.sort';
|
|
list (, $result) = parent::executeQuery ($sql, $columns, "", array ('%' . $query . '%'), -1);
|
|
$entryArray = array();
|
|
while ($post = $result->fetchObject ())
|
|
{
|
|
$serie = new Serie ($post->id, $post->sort);
|
|
array_push ($entryArray, new Entry ($serie->name, $serie->getEntryId (),
|
|
str_format (localize("bookword", $post->count), $post->count), "text",
|
|
array ( new LinkNavigation ($serie->getUri ()))));
|
|
}
|
|
return $entryArray;
|
|
}
|
|
}
|