. defined('GNUSOCIAL') || die(); /** * View notice attachment * * @package GNUsocial * @author Miguel Dantas * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class Attachment_viewAction extends AttachmentAction { public function showPage(): void { // Disable errors, to not mess with the file contents (suppress errors in case access to this // function is blocked, like in some shared hosts). Automatically reset at the end of the // script execution, and we don't want to have any more errors until then, so don't reset it @ini_set('display_errors', 0); if ($this->attachment->isLocal()) { $disposition = 'attachment'; if (in_array(common_get_mime_media($this->mimetype), ['image', 'video'])) { $disposition = 'inline'; } common_send_file($this->filepath, $this->mimetype, $this->filename, $disposition); } else { common_redirect($this->attachment->getUrl(), 303); } } }