mirror of
https://github.com/Yetangitu/owncloud-apps.git
synced 2025-10-02 14:49:17 +02:00
47 lines
963 B
PHP
47 lines
963 B
PHP
<?php
|
|
|
|
/**
|
|
* ownCloud - Files_Opds App
|
|
*
|
|
* @author Frank de Lange
|
|
* @copyright 2014 Frank de Lange
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
*/
|
|
|
|
namespace OC\Preview;
|
|
|
|
/**
|
|
* Epub preview - returns cover or null
|
|
*/
|
|
class Epub extends Provider {
|
|
|
|
public function getMimeType() {
|
|
return '/application\/epub\+zip/';
|
|
}
|
|
|
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
|
//get fileinfo
|
|
$fileInfo = $fileview->getFileInfo($path);
|
|
if(!$fileInfo) {
|
|
return false;
|
|
}
|
|
|
|
$absPath = $fileview->toTmpFile($path);
|
|
|
|
$epub = new \OCA\Files_Opds\Epub($absPath);
|
|
|
|
$cover = $epub->Cover();
|
|
|
|
if ($cover) {
|
|
$image = new \OC_Image();
|
|
|
|
$image->loadFromData($cover['data']);
|
|
}
|
|
|
|
return (($cover !== null) && $image->valid()) ? $image : false;
|
|
}
|
|
|
|
}
|
|
|