123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Joas Schilling <coding@schilljs.com>
- * @author John Molakvoæ <skjnldsv@protonmail.com>
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Olivier Paroz <github@oparoz.com>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Sebastian Steinmetz <462714+steiny2k@users.noreply.github.com>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OC;
- use OC\AppFramework\Bootstrap\Coordinator;
- use OC\Preview\Generator;
- use OC\Preview\GeneratorHelper;
- use OC\Preview\IMagickSupport;
- use OCP\AppFramework\QueryException;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\Files\File;
- use OCP\Files\IAppData;
- use OCP\Files\IRootFolder;
- use OCP\Files\NotFoundException;
- use OCP\Files\SimpleFS\ISimpleFile;
- use OCP\IBinaryFinder;
- use OCP\IConfig;
- use OCP\IPreview;
- use OCP\IServerContainer;
- use OCP\Preview\IProviderV2;
- use Symfony\Component\EventDispatcher\EventDispatcherInterface;
- use function array_key_exists;
- class PreviewManager implements IPreview {
- protected IConfig $config;
- protected IRootFolder $rootFolder;
- protected IAppData $appData;
- protected IEventDispatcher $eventDispatcher;
- protected EventDispatcherInterface $legacyEventDispatcher;
- private ?Generator $generator = null;
- private GeneratorHelper $helper;
- protected bool $providerListDirty = false;
- protected bool $registeredCoreProviders = false;
- protected array $providers = [];
- /** @var array mime type => support status */
- protected array $mimeTypeSupportMap = [];
- protected ?array $defaultProviders = null;
- protected ?string $userId;
- private Coordinator $bootstrapCoordinator;
- /**
- * Hash map (without value) of loaded bootstrap providers
- * @psalm-var array<string, null>
- */
- private array $loadedBootstrapProviders = [];
- private IServerContainer $container;
- private IBinaryFinder $binaryFinder;
- private IMagickSupport $imagickSupport;
- public function __construct(
- IConfig $config,
- IRootFolder $rootFolder,
- IAppData $appData,
- IEventDispatcher $eventDispatcher,
- EventDispatcherInterface $legacyEventDispatcher,
- GeneratorHelper $helper,
- ?string $userId,
- Coordinator $bootstrapCoordinator,
- IServerContainer $container,
- IBinaryFinder $binaryFinder,
- IMagickSupport $imagickSupport
- ) {
- $this->config = $config;
- $this->rootFolder = $rootFolder;
- $this->appData = $appData;
- $this->eventDispatcher = $eventDispatcher;
- $this->legacyEventDispatcher = $legacyEventDispatcher;
- $this->helper = $helper;
- $this->userId = $userId;
- $this->bootstrapCoordinator = $bootstrapCoordinator;
- $this->container = $container;
- $this->binaryFinder = $binaryFinder;
- $this->imagickSupport = $imagickSupport;
- }
- /**
- * In order to improve lazy loading a closure can be registered which will be
- * called in case preview providers are actually requested
- *
- * $callable has to return an instance of \OCP\Preview\IProvider or \OCP\Preview\IProviderV2
- *
- * @param string $mimeTypeRegex Regex with the mime types that are supported by this provider
- * @param \Closure $callable
- * @return void
- */
- public function registerProvider($mimeTypeRegex, \Closure $callable): void {
- if (!$this->config->getSystemValueBool('enable_previews', true)) {
- return;
- }
- if (!isset($this->providers[$mimeTypeRegex])) {
- $this->providers[$mimeTypeRegex] = [];
- }
- $this->providers[$mimeTypeRegex][] = $callable;
- $this->providerListDirty = true;
- }
- /**
- * Get all providers
- */
- public function getProviders(): array {
- if (!$this->config->getSystemValueBool('enable_previews', true)) {
- return [];
- }
- $this->registerCoreProviders();
- $this->registerBootstrapProviders();
- if ($this->providerListDirty) {
- $keys = array_map('strlen', array_keys($this->providers));
- array_multisort($keys, SORT_DESC, $this->providers);
- $this->providerListDirty = false;
- }
- return $this->providers;
- }
- /**
- * Does the manager have any providers
- */
- public function hasProviders(): bool {
- $this->registerCoreProviders();
- return !empty($this->providers);
- }
- private function getGenerator(): Generator {
- if ($this->generator === null) {
- $this->generator = new Generator(
- $this->config,
- $this,
- $this->appData,
- new GeneratorHelper(
- $this->rootFolder,
- $this->config
- ),
- $this->legacyEventDispatcher,
- $this->eventDispatcher
- );
- }
- return $this->generator;
- }
- /**
- * Returns a preview of a file
- *
- * The cache is searched first and if nothing usable was found then a preview is
- * generated by one of the providers
- *
- * @param File $file
- * @param int $width
- * @param int $height
- * @param bool $crop
- * @param string $mode
- * @param string $mimeType
- * @return ISimpleFile
- * @throws NotFoundException
- * @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid)
- * @since 11.0.0 - \InvalidArgumentException was added in 12.0.0
- */
- public function getPreview(File $file, $width = -1, $height = -1, $crop = false, $mode = IPreview::MODE_FILL, $mimeType = null) {
- $previewConcurrency = $this->getGenerator()->getNumConcurrentPreviews('preview_concurrency_all');
- $sem = Generator::guardWithSemaphore(Generator::SEMAPHORE_ID_ALL, $previewConcurrency);
- try {
- $preview = $this->getGenerator()->getPreview($file, $width, $height, $crop, $mode, $mimeType);
- } finally {
- Generator::unguardWithSemaphore($sem);
- }
- return $preview;
- }
- /**
- * Generates previews of a file
- *
- * @param File $file
- * @param array $specifications
- * @param string $mimeType
- * @return ISimpleFile the last preview that was generated
- * @throws NotFoundException
- * @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid)
- * @since 19.0.0
- */
- public function generatePreviews(File $file, array $specifications, $mimeType = null) {
- return $this->getGenerator()->generatePreviews($file, $specifications, $mimeType);
- }
- /**
- * returns true if the passed mime type is supported
- *
- * @param string $mimeType
- * @return boolean
- */
- public function isMimeSupported($mimeType = '*') {
- if (!$this->config->getSystemValueBool('enable_previews', true)) {
- return false;
- }
- if (isset($this->mimeTypeSupportMap[$mimeType])) {
- return $this->mimeTypeSupportMap[$mimeType];
- }
- $this->registerCoreProviders();
- $this->registerBootstrapProviders();
- $providerMimeTypes = array_keys($this->providers);
- foreach ($providerMimeTypes as $supportedMimeType) {
- if (preg_match($supportedMimeType, $mimeType)) {
- $this->mimeTypeSupportMap[$mimeType] = true;
- return true;
- }
- }
- $this->mimeTypeSupportMap[$mimeType] = false;
- return false;
- }
- /**
- * Check if a preview can be generated for a file
- */
- public function isAvailable(\OCP\Files\FileInfo $file): bool {
- if (!$this->config->getSystemValueBool('enable_previews', true)) {
- return false;
- }
- $this->registerCoreProviders();
- if (!$this->isMimeSupported($file->getMimetype())) {
- return false;
- }
- $mount = $file->getMountPoint();
- if ($mount and !$mount->getOption('previews', true)) {
- return false;
- }
- foreach ($this->providers as $supportedMimeType => $providers) {
- if (preg_match($supportedMimeType, $file->getMimetype())) {
- foreach ($providers as $providerClosure) {
- $provider = $this->helper->getProvider($providerClosure);
- if (!($provider instanceof IProviderV2)) {
- continue;
- }
- if ($provider->isAvailable($file)) {
- return true;
- }
- }
- }
- }
- return false;
- }
- /**
- * List of enabled default providers
- *
- * The following providers are enabled by default:
- * - OC\Preview\PNG
- * - OC\Preview\JPEG
- * - OC\Preview\GIF
- * - OC\Preview\BMP
- * - OC\Preview\XBitmap
- * - OC\Preview\MarkDown
- * - OC\Preview\MP3
- * - OC\Preview\TXT
- *
- * The following providers are disabled by default due to performance or privacy concerns:
- * - OC\Preview\Font
- * - OC\Preview\HEIC
- * - OC\Preview\Illustrator
- * - OC\Preview\Movie
- * - OC\Preview\MSOfficeDoc
- * - OC\Preview\MSOffice2003
- * - OC\Preview\MSOffice2007
- * - OC\Preview\OpenDocument
- * - OC\Preview\PDF
- * - OC\Preview\Photoshop
- * - OC\Preview\Postscript
- * - OC\Preview\StarOffice
- * - OC\Preview\SVG
- * - OC\Preview\TIFF
- *
- * @return array
- */
- protected function getEnabledDefaultProvider() {
- if ($this->defaultProviders !== null) {
- return $this->defaultProviders;
- }
- $imageProviders = [
- Preview\PNG::class,
- Preview\JPEG::class,
- Preview\GIF::class,
- Preview\BMP::class,
- Preview\XBitmap::class,
- Preview\Krita::class,
- Preview\WebP::class,
- ];
- $this->defaultProviders = $this->config->getSystemValue('enabledPreviewProviders', array_merge([
- Preview\MarkDown::class,
- Preview\MP3::class,
- Preview\TXT::class,
- Preview\OpenDocument::class,
- ], $imageProviders));
- if (in_array(Preview\Image::class, $this->defaultProviders)) {
- $this->defaultProviders = array_merge($this->defaultProviders, $imageProviders);
- }
- $this->defaultProviders = array_unique($this->defaultProviders);
- return $this->defaultProviders;
- }
- /**
- * Register the default providers (if enabled)
- *
- * @param string $class
- * @param string $mimeType
- */
- protected function registerCoreProvider($class, $mimeType, $options = []) {
- if (in_array(trim($class, '\\'), $this->getEnabledDefaultProvider())) {
- $this->registerProvider($mimeType, function () use ($class, $options) {
- return new $class($options);
- });
- }
- }
- /**
- * Register the default providers (if enabled)
- */
- protected function registerCoreProviders() {
- if ($this->registeredCoreProviders) {
- return;
- }
- $this->registeredCoreProviders = true;
- $this->registerCoreProvider(Preview\TXT::class, '/text\/plain/');
- $this->registerCoreProvider(Preview\MarkDown::class, '/text\/(x-)?markdown/');
- $this->registerCoreProvider(Preview\PNG::class, '/image\/png/');
- $this->registerCoreProvider(Preview\JPEG::class, '/image\/jpeg/');
- $this->registerCoreProvider(Preview\GIF::class, '/image\/gif/');
- $this->registerCoreProvider(Preview\BMP::class, '/image\/bmp/');
- $this->registerCoreProvider(Preview\XBitmap::class, '/image\/x-xbitmap/');
- $this->registerCoreProvider(Preview\WebP::class, '/image\/webp/');
- $this->registerCoreProvider(Preview\Krita::class, '/application\/x-krita/');
- $this->registerCoreProvider(Preview\MP3::class, '/audio\/mpeg/');
- $this->registerCoreProvider(Preview\OpenDocument::class, '/application\/vnd.oasis.opendocument.*/');
- $this->registerCoreProvider(Preview\Imaginary::class, Preview\Imaginary::supportedMimeTypes());
- // SVG, Office and Bitmap require imagick
- if ($this->imagickSupport->hasExtension()) {
- $imagickProviders = [
- 'SVG' => ['mimetype' => '/image\/svg\+xml/', 'class' => Preview\SVG::class],
- 'TIFF' => ['mimetype' => '/image\/tiff/', 'class' => Preview\TIFF::class],
- 'PDF' => ['mimetype' => '/application\/pdf/', 'class' => Preview\PDF::class],
- 'AI' => ['mimetype' => '/application\/illustrator/', 'class' => Preview\Illustrator::class],
- 'PSD' => ['mimetype' => '/application\/x-photoshop/', 'class' => Preview\Photoshop::class],
- 'EPS' => ['mimetype' => '/application\/postscript/', 'class' => Preview\Postscript::class],
- 'TTF' => ['mimetype' => '/application\/(?:font-sfnt|x-font$)/', 'class' => Preview\Font::class],
- 'HEIC' => ['mimetype' => '/image\/hei(f|c)/', 'class' => Preview\HEIC::class],
- 'TGA' => ['mimetype' => '/image\/t(ar)?ga/', 'class' => Preview\TGA::class],
- 'SGI' => ['mimetype' => '/image\/sgi/', 'class' => Preview\SGI::class],
- ];
- foreach ($imagickProviders as $queryFormat => $provider) {
- $class = $provider['class'];
- if (!in_array(trim($class, '\\'), $this->getEnabledDefaultProvider())) {
- continue;
- }
- if ($this->imagickSupport->supportsFormat($queryFormat)) {
- $this->registerCoreProvider($class, $provider['mimetype']);
- }
- }
- if ($this->imagickSupport->supportsFormat('PDF')) {
- // Office requires openoffice or libreoffice
- $officeBinary = $this->config->getSystemValue('preview_libreoffice_path', null);
- if (!is_string($officeBinary)) {
- $officeBinary = $this->binaryFinder->findBinaryPath('libreoffice');
- }
- if (!is_string($officeBinary)) {
- $officeBinary = $this->binaryFinder->findBinaryPath('openoffice');
- }
- if (is_string($officeBinary)) {
- $this->registerCoreProvider(Preview\MSOfficeDoc::class, '/application\/msword/', ["officeBinary" => $officeBinary]);
- $this->registerCoreProvider(Preview\MSOffice2003::class, '/application\/vnd.ms-.*/', ["officeBinary" => $officeBinary]);
- $this->registerCoreProvider(Preview\MSOffice2007::class, '/application\/vnd.openxmlformats-officedocument.*/', ["officeBinary" => $officeBinary]);
- $this->registerCoreProvider(Preview\OpenDocument::class, '/application\/vnd.oasis.opendocument.*/', ["officeBinary" => $officeBinary]);
- $this->registerCoreProvider(Preview\StarOffice::class, '/application\/vnd.sun.xml.*/', ["officeBinary" => $officeBinary]);
- }
- }
- }
- // Video requires avconv or ffmpeg
- if (in_array(Preview\Movie::class, $this->getEnabledDefaultProvider())) {
- $movieBinary = $this->config->getSystemValue('preview_ffmpeg_path', null);
- if (!is_string($movieBinary)) {
- $movieBinary = $this->binaryFinder->findBinaryPath('avconv');
- if (!is_string($movieBinary)) {
- $movieBinary = $this->binaryFinder->findBinaryPath('ffmpeg');
- }
- }
- if (is_string($movieBinary)) {
- $this->registerCoreProvider(Preview\Movie::class, '/video\/.*/', ["movieBinary" => $movieBinary]);
- }
- }
- }
- private function registerBootstrapProviders(): void {
- $context = $this->bootstrapCoordinator->getRegistrationContext();
- if ($context === null) {
- // Just ignore for now
- return;
- }
- $providers = $context->getPreviewProviders();
- foreach ($providers as $provider) {
- $key = $provider->getMimeTypeRegex() . '-' . $provider->getService();
- if (array_key_exists($key, $this->loadedBootstrapProviders)) {
- // Do not load the provider more than once
- continue;
- }
- $this->loadedBootstrapProviders[$key] = null;
- $this->registerProvider($provider->getMimeTypeRegex(), function () use ($provider) {
- try {
- return $this->container->get($provider->getService());
- } catch (QueryException $e) {
- return null;
- }
- });
- }
- }
- }
|