cops/serie.php

66 рядки
2.3 KiB
PHP

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 = "cops:series";
const SERIES_COLUMNS = "series.id as id, series.name as name, series.sort as sort, count(*) as count";
const SQL_ALL_SERIES = "select {0} from series, books_series_link where series.id = series group by series.id, series.name, series.sort order by series.sort";
const SQL_SERIES_FOR_SEARCH = "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";
2013-12-05 11:52:51 +02:00
2012-05-28 08:01:33 +03:00
public $id;
public $name;
2013-12-05 11:52:51 +02:00
public function __construct($post) {
$this->id = $post->id;
$this->name = $post->name;
2012-05-28 08:01:33 +03:00
}
2013-12-05 11:52:51 +02:00
2012-05-28 08:01:33 +03:00
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
}
2013-12-05 11:52:51 +02: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() {
2014-05-30 07:47:38 +03:00
// str_format (localize("series.alphabetical", count(array))
return parent::getCountGeneric ("series", self::ALL_SERIES_ID, parent::PAGE_ALL_SERIES);
2012-05-28 08:01:33 +03:00
}
2013-12-05 11:52:51 +02:00
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);
2012-05-28 08:01:33 +03:00
}
return NULL;
}
2013-12-05 11:52:51 +02:00
2012-05-28 08:01:33 +03:00
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);
2012-05-28 08:01:33 +03:00
}
return NULL;
}
2013-12-05 11:52:51 +02:00
2012-05-28 08:01:33 +03:00
public static function getAllSeries() {
return Base::getEntryArrayWithBookNumber (self::SQL_ALL_SERIES, self::SERIES_COLUMNS, array (), "Serie");
2012-05-28 08:01:33 +03:00
}
2013-12-05 11:52:51 +02:00
public static function getAllSeriesByQuery($query) {
return Base::getEntryArrayWithBookNumber (self::SQL_SERIES_FOR_SEARCH, self::SERIES_COLUMNS, array ('%' . $query . '%'), "Serie");
}
2012-05-28 08:01:33 +03:00
}