You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IPreview.php 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author Morris Jobke <hey@morrisjobke.de>
  8. * @author Robin Appelman <robin@icewind.nl>
  9. * @author Roeland Jago Douma <roeland@famdouma.nl>
  10. * @author Thomas Müller <thomas.mueller@tmit.eu>
  11. *
  12. * @license AGPL-3.0
  13. *
  14. * This code is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU Affero General Public License, version 3,
  16. * as published by the Free Software Foundation.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Affero General Public License, version 3,
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>
  25. *
  26. */
  27. // use OCP namespace for all classes that are considered public.
  28. // This means that they should be used by apps instead of the internal ownCloud classes
  29. namespace OCP;
  30. use OCP\Files\File;
  31. use OCP\Files\NotFoundException;
  32. use OCP\Files\SimpleFS\ISimpleFile;
  33. /**
  34. * This class provides functions to render and show thumbnails and previews of files
  35. * @since 6.0.0
  36. */
  37. interface IPreview {
  38. /**
  39. * @since 9.2.0
  40. * @deprecated 22.0.0
  41. */
  42. public const EVENT = self::class . ':' . 'PreviewRequested';
  43. public const MODE_FILL = 'fill';
  44. public const MODE_COVER = 'cover';
  45. /**
  46. * In order to improve lazy loading a closure can be registered which will be
  47. * called in case preview providers are actually requested
  48. *
  49. * $callable has to return an instance of \OCP\Preview\IProvider
  50. *
  51. * @param string $mimeTypeRegex Regex with the mime types that are supported by this provider
  52. * @param \Closure $callable
  53. * @return void
  54. * @since 8.1.0
  55. * @see \OCP\AppFramework\Bootstrap\IRegistrationContext::registerPreviewProvider
  56. *
  57. * @deprecated 23.0.0 Register your provider via the IRegistrationContext when booting the app
  58. */
  59. public function registerProvider($mimeTypeRegex, \Closure $callable);
  60. /**
  61. * Get all providers
  62. * @return array
  63. * @since 8.1.0
  64. */
  65. public function getProviders();
  66. /**
  67. * Does the manager have any providers
  68. * @return bool
  69. * @since 8.1.0
  70. */
  71. public function hasProviders();
  72. /**
  73. * Returns a preview of a file
  74. *
  75. * The cache is searched first and if nothing usable was found then a preview is
  76. * generated by one of the providers
  77. *
  78. * @param File $file
  79. * @param int $width
  80. * @param int $height
  81. * @param bool $crop
  82. * @param string $mode
  83. * @param string $mimeType To force a given mimetype for the file (files_versions needs this)
  84. * @return ISimpleFile
  85. * @throws NotFoundException
  86. * @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid)
  87. * @since 11.0.0 - \InvalidArgumentException was added in 12.0.0
  88. */
  89. public function getPreview(File $file, $width = -1, $height = -1, $crop = false, $mode = IPreview::MODE_FILL, $mimeType = null);
  90. /**
  91. * Returns true if the passed mime type is supported
  92. * @param string $mimeType
  93. * @return boolean
  94. * @since 6.0.0
  95. */
  96. public function isMimeSupported($mimeType = '*');
  97. /**
  98. * Check if a preview can be generated for a file
  99. *
  100. * @param \OCP\Files\FileInfo $file
  101. * @return bool
  102. * @since 8.0.0
  103. */
  104. public function isAvailable(\OCP\Files\FileInfo $file);
  105. /**
  106. * Generates previews of a file
  107. *
  108. * @param File $file
  109. * @param array $specifications
  110. * @param string $mimeType
  111. * @return ISimpleFile the last preview that was generated
  112. * @throws NotFoundException
  113. * @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid)
  114. * @since 19.0.0
  115. */
  116. public function generatePreviews(File $file, array $specifications, $mimeType = null);
  117. }