cops/serie.php

76 rindas
2.5 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 = "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();
if ($nSeries == 0) return NULL;
$entry = new Entry (localize("series.title"), self::ALL_SERIES_ID,
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 (),
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
}
}