123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-only
- */
- // use OCP namespace for all classes that are considered public.
- // This means that they should be used by apps instead of the internal Nextcloud classes
- namespace OCP;
- use OCP\Files\File;
- use OCP\Files\NotFoundException;
- use OCP\Files\SimpleFS\ISimpleFile;
- /**
- * This class provides functions to render and show thumbnails and previews of files
- * @since 6.0.0
- */
- interface IPreview {
- /**
- * @since 11.0.0
- */
- public const MODE_FILL = 'fill';
- /**
- * @since 11.0.0
- */
- public const MODE_COVER = 'cover';
- /**
- * 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
- *
- * @param string $mimeTypeRegex Regex with the mime types that are supported by this provider
- * @param \Closure $callable
- * @return void
- * @since 8.1.0
- * @see \OCP\AppFramework\Bootstrap\IRegistrationContext::registerPreviewProvider
- *
- * @deprecated 23.0.0 Register your provider via the IRegistrationContext when booting the app
- */
- public function registerProvider($mimeTypeRegex, \Closure $callable);
- /**
- * Get all providers
- * @return array
- * @since 8.1.0
- */
- public function getProviders();
- /**
- * Does the manager have any providers
- * @return bool
- * @since 8.1.0
- */
- public function hasProviders();
- /**
- * 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 To force a given mimetype for the file (files_versions needs this)
- * @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);
- /**
- * Returns true if the passed mime type is supported
- * @param string $mimeType
- * @return boolean
- * @since 6.0.0
- */
- public function isMimeSupported($mimeType = '*');
- /**
- * Check if a preview can be generated for a file
- *
- * @param \OCP\Files\FileInfo $file
- * @return bool
- * @since 8.0.0
- */
- public function isAvailable(\OCP\Files\FileInfo $file);
- /**
- * 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);
- }
|