OpenDocument.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Joas Schilling <coding@schilljs.com>
  6. * @author Julius Härtl <jus@bitgrid.net>
  7. * @author Robin Appelman <robin@icewind.nl>
  8. * @author Roeland Jago Douma <roeland@famdouma.nl>
  9. *
  10. * @license AGPL-3.0
  11. *
  12. * This code is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License, version 3,
  14. * as published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License, version 3,
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>
  23. *
  24. */
  25. namespace OC\Preview;
  26. //.odt, .ott, .oth, .odm, .odg, .otg, .odp, .otp, .ods, .ots, .odc, .odf, .odb, .odi, .oxt
  27. use OCP\Files\File;
  28. use OCP\IImage;
  29. class OpenDocument extends Bundled {
  30. /**
  31. * {@inheritDoc}
  32. */
  33. public function getMimeType(): string {
  34. return '/application\/vnd.oasis.opendocument.*/';
  35. }
  36. /**
  37. * @inheritDoc
  38. */
  39. public function getThumbnail(File $file, int $maxX, int $maxY): ?IImage {
  40. $image = $this->extractThumbnail($file, 'Thumbnails/thumbnail.png');
  41. if (($image !== null) && $image->valid()) {
  42. return $image;
  43. }
  44. return null;
  45. }
  46. }