. defined('GNUSOCIAL') || die(); /** * Download notice attachment * * @category Personal * @package GNUsocial * @author Mikael Nordfeldth * @copyright 2016 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or late */ class Attachment_downloadAction 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()) { try { $this->filepath = $this->attachment->getFileOrThumbnailPath(); } catch (Exception $e) { $this->clientError( _m('Requested local URL for a file that is not stored locally.'), 404 ); } common_send_file( $this->filepath, $this->mimetype, $this->filename, 'attachment' ); } else { common_redirect($this->attachment->getUrl(), 303); } } }