2013-04-25 06:51:44 -04:00
|
|
|
<?php
|
2013-05-29 06:33:24 -04:00
|
|
|
namespace OC\Preview;
|
|
|
|
|
|
2013-05-29 07:11:43 -04:00
|
|
|
abstract class Provider {
|
2013-04-25 06:51:44 -04:00
|
|
|
private $options;
|
|
|
|
|
|
|
|
|
|
public function __construct($options) {
|
|
|
|
|
$this->options=$options;
|
|
|
|
|
}
|
2013-05-17 13:08:16 -04:00
|
|
|
|
2013-04-25 06:51:44 -04:00
|
|
|
abstract public function getMimeType();
|
|
|
|
|
|
|
|
|
|
/**
|
2013-09-25 04:41:09 -04:00
|
|
|
* get thumbnail for file at path $path
|
|
|
|
|
* @param string $path Path of file
|
|
|
|
|
* @param int $maxX The maximum X size of the thumbnail. It can be smaller depending on the shape of the image
|
|
|
|
|
* @param int $maxY The maximum Y size of the thumbnail. It can be smaller depending on the shape of the image
|
2014-02-06 10:30:58 -05:00
|
|
|
* @param bool $scalingup Disable/Enable upscaling of previews
|
2013-09-25 04:41:09 -04:00
|
|
|
* @param object $fileview fileview object of user folder
|
|
|
|
|
* @return mixed
|
|
|
|
|
* false if no preview was generated
|
|
|
|
|
* OC_Image object of the preview
|
2013-04-25 06:51:44 -04:00
|
|
|
*/
|
2013-05-29 07:03:33 -04:00
|
|
|
abstract public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview);
|
2013-04-25 06:51:44 -04:00
|
|
|
}
|