attachment_download.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. * Download notice attachment
  19. *
  20. * @category Personal
  21. * @package GNUsocial
  22. * @author Mikael Nordfeldth <mmn@hethane.se>
  23. * @copyright 2016 Free Software Foundation, Inc http://www.fsf.org
  24. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or late
  25. */
  26. class Attachment_downloadAction extends AttachmentAction
  27. {
  28. public function showPage(): void
  29. {
  30. // Disable errors, to not mess with the file contents (suppress errors in case access to this
  31. // function is blocked, like in some shared hosts). Automatically reset at the end of the
  32. // script execution, and we don't want to have any more errors until then, so don't reset it
  33. @ini_set('display_errors', 0);
  34. if ($this->attachment->isLocal()) {
  35. try {
  36. $this->filepath = $this->attachment->getFileOrThumbnailPath();
  37. } catch (Exception $e) {
  38. $this->clientError(
  39. _m('Requested local URL for a file that is not stored locally.'),
  40. 404
  41. );
  42. }
  43. common_send_file(
  44. $this->filepath,
  45. $this->mimetype,
  46. $this->filename,
  47. 'attachment'
  48. );
  49. } else {
  50. common_redirect($this->attachment->getUrl(), 303);
  51. }
  52. }
  53. }