nextcloud/lib/public/IPreview.php
Josh 07bac538e2
chore(previews): drop long deprecated registerProvider from IPreview
Signed-off-by: Josh <josh.t.richards@gmail.com>
2026-05-11 13:09:46 +02:00

93 lines
2.9 KiB
PHP

<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCP;
use Closure;
use OCP\AppFramework\Attribute\Consumable;
use OCP\Files\File;
use OCP\Files\FileInfo;
use OCP\Files\NotFoundException;
use OCP\Files\SimpleFS\ISimpleFile;
use OCP\Preview\IProviderV2;
/**
* This class provides functions to render and show thumbnails and previews of files
* @since 6.0.0
* @psalm-type ProviderClosure = Closure():(IProviderV2|false)
*/
#[Consumable(since: '6.0.0')]
interface IPreview {
/**
* @since 11.0.0
*/
public const MODE_FILL = 'fill';
/**
* @since 11.0.0
*/
public const MODE_COVER = 'cover';
/**
* Get all providers
* @return array<string, list<ProviderClosure>>
* @since 8.1.0
*/
public function getProviders(): array;
/**
* Does the manager have any providers
* @since 8.1.0
*/
public function hasProviders(): bool;
/**
* 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 IPreview::MODE_* $mode
* @param string $mimeType To force a given mimetype for the file (files_versions needs this)
* @param bool $cacheResult Whether to cache the preview on the filesystem. Default to true. Can be useful to set to false to limit the amount of stored previews.
* @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
* @since 32.0.0 - getPreview($cacheResult) added the $cacheResult argument to the signature
*/
public function getPreview(File $file, int $width = -1, int $height = -1, bool $crop = false, string $mode = IPreview::MODE_FILL, ?string $mimeType = null, bool $cacheResult = true): ISimpleFile;
/**
* Returns true if the passed mime type is supported
* @param string $mimeType A glob
* @since 6.0.0
*/
public function isMimeSupported(string $mimeType = '*'): bool;
/**
* Check if a preview can be generated for a file
*
* @param FileInfo $file
* @param string|null $mimeType To force a given mimetype for the file
* @since 8.0.0
* @since 32.0.0 - isAvailable($mimeType) added the $mimeType argument to the signature
*/
public function isAvailable(FileInfo $file, ?string $mimeType = null): bool;
/**
* Generates previews of a file
*
* @param array $specifications
* @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, ?string $mimeType = null): ISimpleFile;
}