Better handling of book format inside Calibre.

Not tested enough
This commit is contained in:
Sébastien Lucas 2012-06-23 22:11:13 +02:00
父節點 b2f34f428f
當前提交 9a8e9bacae
共有 2 個檔案被更改,包括 36 行新增19 行删除

查看文件

@ -139,32 +139,48 @@ class Book extends Base {
} }
} }
public function getFilePath ($extension, $relative = false) public function getFilePath ($extension, $idData = NULL, $relative = false)
{ {
if ($handle = opendir($this->path)) { $file = NULL;
while (false !== ($file = readdir($handle))) { if ($extension == "jpg")
if (preg_match ('/' . $extension . '$/', $file)) { {
if ($relative) $file = "cover.jpg";
{ }
return $this->relativePath."/".$file; else
} {
else $result = parent::getDb ()->prepare('select format, name
{ from data where id = ?');
return $this->path."/".$file; $result->execute (array ($idData));
}
} while ($post = $result->fetchObject ())
{
$file = $post->name . "." . strtolower ($post->format);
} }
} }
return NULL;
if ($relative)
{
return $this->relativePath."/".$file;
}
else
{
return $this->path."/".$file;
}
} }
private function getLink ($type, $mime, $rel, $filename, $title = NULL) private function getLink ($type, $mime, $rel, $filename, $idData, $title = NULL)
{ {
global $config; global $config;
$textData = "";
if (!is_null ($idData))
{
$textData = "&data=" . $idData;
}
if (preg_match ('/^\//', $config['calibre_directory'])) if (preg_match ('/^\//', $config['calibre_directory']))
{ {
return new Link ("fetch.php?id=$this->id&type=" . $type, $mime, $rel, $title); return new Link ("fetch.php?id=$this->id" . $textData . "&type=" . $type, $mime, $rel, $title);
} }
else else
{ {
@ -179,7 +195,7 @@ class Book extends Base {
if ($this->hasCover) if ($this->hasCover)
{ {
array_push ($linkArray, $this->getLink ("jpg", "image/jpeg", Link::OPDS_IMAGE_TYPE, "cover.jpg")); array_push ($linkArray, $this->getLink ("jpg", "image/jpeg", Link::OPDS_IMAGE_TYPE, "cover.jpg", NULL));
$height = "50"; $height = "50";
if (preg_match ('/feed.php/', $_SERVER["SCRIPT_NAME"])) { if (preg_match ('/feed.php/', $_SERVER["SCRIPT_NAME"])) {
$height = $config['cops_opds_thumbnail_height']; $height = $config['cops_opds_thumbnail_height'];
@ -200,7 +216,7 @@ from data where book = ?');
$ext = strtolower (str_replace ("ORIGINAL_", "", $post->format)); $ext = strtolower (str_replace ("ORIGINAL_", "", $post->format));
if (array_key_exists ($ext, self::$mimetypes)) if (array_key_exists ($ext, self::$mimetypes))
{ {
array_push ($linkArray, $this->getLink ($ext, self::$mimetypes [$ext], Link::OPDS_ACQUISITION_TYPE, $post->name . "." . strtolower ($post->format), "Download")); array_push ($linkArray, $this->getLink ($ext, self::$mimetypes [$ext], Link::OPDS_ACQUISITION_TYPE, $post->name . "." . strtolower ($post->format), $post->id, "Download"));
$this->format [$ext] = $post->name . "." . strtolower ($post->format); $this->format [$ext] = $post->name . "." . strtolower ($post->format);
} }
} }

查看文件

@ -17,6 +17,7 @@
$bookId = $_GET["id"]; $bookId = $_GET["id"];
$book = Book::getBookById($bookId); $book = Book::getBookById($bookId);
$type = getURLParam ("type", "jpg"); $type = getURLParam ("type", "jpg");
$idData = getURLParam ("data", NULL);
switch ($type) switch ($type)
{ {
@ -77,7 +78,7 @@
header("Content-type: " . Book::$mimetypes[$type]); header("Content-type: " . Book::$mimetypes[$type]);
break; break;
} }
$file = $book->getFilePath ($type, true); $file = $book->getFilePath ($type, $idData, true);
header('Content-Disposition: attachement; filename="' . basename ($file) . '"'); header('Content-Disposition: attachement; filename="' . basename ($file) . '"');
header ($config['cops_x_accel_redirect'] . ": " . $config['calibre_internal_directory'] . $file); header ($config['cops_x_accel_redirect'] . ": " . $config['calibre_internal_directory'] . $file);
?> ?>