Better handling of content type for book. Reported by Morg.

This commit is contained in:
Sébastien Lucas 2012-12-23 13:42:53 +01:00
parent 67f1a53ba2
commit 38b61c89da
3 changed files with 23 additions and 11 deletions

View File

@ -166,6 +166,17 @@ class Book extends Base {
return $this->datas;
}
public function getDataById ($idData)
{
foreach ($this->getDatas () as $data) {
if ($data->id == $idData) {
return $data;
}
}
return NULL;
}
public function getTagsName () {
$tagList = null;
foreach ($this->getTags () as $tag) {
@ -230,14 +241,8 @@ class Book extends Base {
}
else
{
$result = parent::getDb ()->prepare('select format, name
from data where id = ?');
$result->execute (array ($idData));
while ($post = $result->fetchObject ())
{
$file = $post->name . "." . strtolower ($post->format);
}
$data = $this->getDataById ($idData);
$file = $data->name . "." . strtolower ($data->format);
}
if ($relative)
@ -340,13 +345,16 @@ where books.id = ?');
}
public static function getBookByDataId($dataId) {
$result = parent::getDb ()->prepare('select ' . self::BOOK_COLUMNS . '
$result = parent::getDb ()->prepare('select ' . self::BOOK_COLUMNS . ', data.name, data.format
from data, books ' . self::SQL_BOOKS_LEFT_JOIN . '
where data.book = books.id and data.id = ?');
$result->execute (array ($dataId));
while ($post = $result->fetchObject ())
{
$book = new Book ($post);
$data = new Data ($post, $book);
$data->id = $dataId;
$book->datas = array ($data);
return $book;
}
return NULL;

View File

@ -58,7 +58,11 @@ class Data extends Base {
}
public function getMimeType () {
return self::$mimetypes [$this->extension];
if ($this->isKnownType ()) {
return self::$mimetypes [$this->extension];
} else {
return "application/octet-stream";
}
}
public function getFilename () {

View File

@ -87,7 +87,7 @@
break;
}
$file = $book->getFilePath ($type, $idData, true);
header('Content-Type: application/octet-stream');
header('Content-Type: ' . $book->getDataById ($idData)->getMimeType ());
header('Content-Disposition: attachment; filename="' . basename ($file) . '"');
header ($config['cops_x_accel_redirect'] . ": " . $config['calibre_internal_directory'] . $file);
?>