cops/fetch.php

96 lines
2.6 KiB
PHP
Raw Normal View History

2012-05-28 08:01:33 +03:00
<?php
/**
2013-12-05 11:52:51 +02:00
* COPS (Calibre OPDS PHP Server)
2012-05-28 08:01:33 +03:00
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
2013-12-15 15:28:35 +02:00
* @author S<EFBFBD>bastien Lucas <sebastien@slucas.fr>
2012-05-28 08:01:33 +03:00
*/
2013-12-05 11:52:51 +02:00
2012-05-28 08:01:33 +03:00
require_once ("config.php");
2012-05-28 08:05:05 +03:00
require_once ("book.php");
require_once ("data.php");
2014-02-12 05:20:31 +02:00
global $config;
if ($config ['cops_fetch_protect'] == "1") {
session_start();
if (!isset($_SESSION['connected'])) {
notFound ();
return;
}
}
2012-05-28 08:06:12 +03:00
$expires = 60*60*24*14;
header("Pragma: public");
header("Cache-Control: maxage=".$expires);
header('Expires: ' . gmdate('D, d M Y H:i:s', time()+$expires) . ' GMT');
$bookId = getURLParam ("id", NULL);
2012-05-28 08:05:05 +03:00
$type = getURLParam ("type", "jpg");
$idData = getURLParam ("data", NULL);
if (is_null ($bookId))
{
$book = Book::getBookByDataId($idData);
}
else
{
$book = Book::getBookById($bookId);
}
2013-12-05 11:52:51 +02:00
if (!$book) {
notFound ();
2013-12-05 11:52:51 +02:00
return;
}
2013-12-05 11:52:51 +02:00
if ($book && ($type == "jpg" || empty ($config['calibre_internal_directory']))) {
if ($type == "jpg") {
$file = $book->getFilePath ($type);
} else {
$file = $book->getFilePath ($type, $idData);
}
if (!$file || !file_exists ($file)) {
notFound ();
return;
}
}
2013-12-05 11:52:51 +02:00
2012-05-28 08:01:33 +03:00
switch ($type)
{
case "jpg":
2012-12-23 15:16:54 +02:00
header("Content-Type: image/jpeg");
if ($book->getThumbnail (getURLParam ("width"), getURLParam ("height"))) {
// The cover had to be resized
2012-05-28 08:06:12 +03:00
return;
}
2012-05-28 08:01:33 +03:00
break;
2012-05-28 08:05:05 +03:00
default:
$data = $book->getDataById ($idData);
header("Content-Type: " . $data->getMimeType ());
2012-05-28 08:01:33 +03:00
break;
}
$file = $book->getFilePath ($type, $idData, true);
if ($type == "epub" && $config['cops_update_epub-metadata'])
{
$book->getUpdatedEpub ($idData);
return;
}
if ($type == "jpg") {
header('Content-Disposition: filename="' . basename ($file) . '"');
} else {
header('Content-Disposition: attachment; filename="' . basename ($file) . '"');
}
2013-12-05 11:52:51 +02:00
$dir = $config['calibre_internal_directory'];
if (empty ($config['calibre_internal_directory'])) {
$dir = Base::getDbDirectory ();
}
2013-12-05 11:52:51 +02:00
if (empty ($config['cops_x_accel_redirect'])) {
$filename = $dir . $file;
$fp = fopen($filename, 'rb');
header("Content-Length: " . filesize($filename));
fpassthru($fp);
}
else {
header ($config['cops_x_accel_redirect'] . ": " . $dir . $file);
}