mirror of
https://github.com/YunoHost-Apps/cops_ynh.git
synced 2024-09-03 18:25:57 +02:00
40 lines
1 KiB
PHP
40 lines
1 KiB
PHP
<?php
|
|
/**
|
|
* COPS (Calibre OPDS PHP Server) main script
|
|
*
|
|
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
|
* @author Sébastien Lucas <sebastien@slucas.fr>
|
|
*
|
|
*/
|
|
|
|
require_once 'config.php';
|
|
require_once 'base.php';
|
|
|
|
header('Content-Type:application/xml');
|
|
$page = getURLParam('page', Base::PAGE_INDEX);
|
|
$query = getURLParam('query');
|
|
$n = getURLParam('n', '1');
|
|
if ($query) {
|
|
$page = Base::PAGE_OPENSEARCH_QUERY;
|
|
}
|
|
$qid = getURLParam('id');
|
|
|
|
if ($config ['cops_fetch_protect'] == '1') {
|
|
session_start();
|
|
if (!isset($_SESSION['connected'])) {
|
|
$_SESSION['connected'] = 0;
|
|
}
|
|
}
|
|
|
|
$OPDSRender = new OPDSRenderer();
|
|
|
|
switch ($page) {
|
|
case Base::PAGE_OPENSEARCH :
|
|
echo $OPDSRender->getOpenSearch();
|
|
return;
|
|
default:
|
|
$currentPage = Page::getPage($page, $qid, $query, $n);
|
|
$currentPage->InitializeContent();
|
|
echo $OPDSRender->render($currentPage);
|
|
return;
|
|
}
|