leilukin-tumbleblog/includes/download.php

55 lines
1.3 KiB
PHP
Raw Normal View History

2024-06-20 14:10:42 +00:00
<?php
/**
* File: download
* Serve an uploaded file to the visitor as a file attachment.
*/
define('USE_OB', false);
require_once "common.php";
$trigger->call("serve_download");
if (empty($_GET['file']))
error(
__("Error"),
__("Missing argument."),
code:400
);
if (!$visitor->group->can("view_site"))
show_403(
__("Access Denied"),
__("You are not allowed to view this site.")
);
$filename = str_replace(array(DIR, "/"), "", $_GET['file']);
if ($filename == "")
show_404(
__("Not Found"),
__("File not found.")
);
$filepath = uploaded($filename, false);
if (!is_readable($filepath) or !is_file($filepath))
show_404(
__("Not Found"),
__("File not found.")
);
if (DEBUG)
error_log("DOWNLOAD served ".$filename);
2024-09-05 17:51:48 +00:00
if (!USE_COMPRESSION and !ini_get("zlib.output_compression"))
2024-06-20 14:10:42 +00:00
header("Content-Length: ".filesize($filepath));
$safename = addslashes($filename);
header("Last-Modified: ".date("r", filemtime($filepath)));
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"".$safename."\"");
readfile($filepath);
$trigger->call("end");
flush();