attachment_view.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. // This file is part of GNU social - https://www.gnu.org/software/social
  3. //
  4. // GNU social is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Affero General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // GNU social is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Affero General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Affero General Public License
  15. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  16. defined('GNUSOCIAL') || die();
  17. /**
  18. * View notice attachment
  19. *
  20. * @package GNUsocial
  21. * @author Miguel Dantas <biodantasgs@gmail.com>
  22. * @license https://www.gnu.org/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  23. */
  24. class Attachment_viewAction extends AttachmentAction
  25. {
  26. public function showPage(): void
  27. {
  28. // Disable errors, to not mess with the file contents (suppress errors in case access to this
  29. // function is blocked, like in some shared hosts). Automatically reset at the end of the
  30. // script execution, and we don't want to have any more errors until then, so don't reset it
  31. @ini_set('display_errors', 0);
  32. header("Content-Description: File Transfer");
  33. header("Content-Type: {$this->mimetype}");
  34. if (in_array(common_get_mime_media($this->mimetype), ['image', 'video'])) {
  35. header("Content-Disposition: inline; filename=\"{$this->filename}\"");
  36. } else {
  37. header("Content-Disposition: attachment; filename=\"{$this->filename}\"");
  38. }
  39. header('Expires: 0');
  40. header('Content-Transfer-Encoding: binary');
  41. parent::sendFile();
  42. }
  43. }