2013-05-14 22:35:43 +03:00
|
|
|
<?php
|
2014-03-13 19:11:33 +02:00
|
|
|
/**
|
|
|
|
* COPS (Calibre OPDS PHP Server) class file
|
|
|
|
*
|
|
|
|
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
|
|
|
* @author Sébastien Lucas <sebastien@slucas.fr>
|
|
|
|
*/
|
2013-05-14 22:35:43 +03:00
|
|
|
|
2013-08-30 16:52:28 +03:00
|
|
|
require_once ("config.php");
|
|
|
|
require_once ("base.php");
|
|
|
|
require_once ("book.php");
|
2013-05-14 22:35:43 +03:00
|
|
|
require_once ("resources/php-epub-meta/epub.php");
|
|
|
|
|
2014-02-11 19:03:19 +02:00
|
|
|
function getComponentContent ($book, $component, $add) {
|
2013-08-30 11:35:15 +03:00
|
|
|
$data = $book->component ($component);
|
2014-02-11 18:00:38 +02:00
|
|
|
|
2013-08-30 16:52:28 +03:00
|
|
|
$callback = function ($m) use ($book, $component, $add) {
|
2013-08-30 11:35:15 +03:00
|
|
|
$method = $m[1];
|
|
|
|
$path = $m[2];
|
2014-01-13 22:43:44 +02:00
|
|
|
$end = "";
|
2014-02-13 14:51:01 +02:00
|
|
|
if (preg_match ("/^src\s*:/", $method)) {
|
2014-01-13 22:43:44 +02:00
|
|
|
$end = ")";
|
|
|
|
}
|
2013-08-30 11:35:15 +03:00
|
|
|
if (preg_match ("/^#/", $path)) {
|
2014-01-13 22:43:44 +02:00
|
|
|
return "{$method}'{$path}'{$end}";
|
2013-08-30 11:35:15 +03:00
|
|
|
}
|
2013-08-30 22:14:59 +03:00
|
|
|
$hash = "";
|
|
|
|
if (preg_match ("/^(.+)#(.+)$/", $path, $matches)) {
|
|
|
|
$path = $matches [1];
|
|
|
|
$hash = "#" . $matches [2];
|
|
|
|
}
|
2013-08-30 11:35:15 +03:00
|
|
|
$comp = $book->getComponentName ($component, $path);
|
2014-01-13 23:31:03 +02:00
|
|
|
if (!$comp) return "{$method}'#'{$end}";
|
2014-01-13 23:21:01 +02:00
|
|
|
$out = "{$method}'epubfs.php?{$add}comp={$comp}{$hash}'{$end}";
|
|
|
|
if ($end) {
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
return str_replace ("&", "&", $out);
|
2013-08-30 11:35:15 +03:00
|
|
|
};
|
2014-02-11 18:00:38 +02:00
|
|
|
|
2013-08-30 11:35:15 +03:00
|
|
|
$data = preg_replace_callback ("/(src=)[\"']([^:]*?)[\"']/", $callback, $data);
|
|
|
|
$data = preg_replace_callback ("/(href=)[\"']([^:]*?)[\"']/", $callback, $data);
|
|
|
|
$data = preg_replace_callback ("/(\@import\s+)[\"'](.*?)[\"'];/", $callback, $data);
|
2014-02-13 14:51:01 +02:00
|
|
|
$data = preg_replace_callback ("/(src\s*:\s*url\()(.*?)\)/", $callback, $data);
|
2014-02-11 18:00:38 +02:00
|
|
|
|
2014-02-11 19:03:19 +02:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (php_sapi_name() === 'cli') { return; }
|
|
|
|
|
|
|
|
$idData = getURLParam ("data", NULL);
|
|
|
|
$add = "data=$idData&";
|
|
|
|
if (!is_null (GetUrlParam (DB))) $add .= DB . "=" . GetUrlParam (DB) . "&";
|
|
|
|
$myBook = Book::getBookByDataId($idData);
|
|
|
|
|
|
|
|
$book = new EPub ($myBook->getFilePath ("EPUB", $idData));
|
|
|
|
|
|
|
|
$book->initSpineComponent ();
|
|
|
|
|
|
|
|
if (!isset ($_GET["comp"])) {
|
|
|
|
notFound ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$component = $_GET["comp"];
|
|
|
|
|
|
|
|
try {
|
|
|
|
$data = getComponentContent ($book, $component, $add);
|
|
|
|
|
2013-08-30 22:08:07 +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');
|
2013-05-14 22:35:43 +03:00
|
|
|
header ("Content-Type: " . $book->componentContentType($component));
|
|
|
|
echo $data;
|
|
|
|
}
|
|
|
|
catch (Exception $e) {
|
2013-08-30 11:35:15 +03:00
|
|
|
error_log ($e);
|
2013-05-14 22:35:43 +03:00
|
|
|
notFound ();
|
2013-08-30 16:52:28 +03:00
|
|
|
}
|