download.php 598 B

123456789101112131415
  1. <?php
  2. // download.php?file=PlanningReport-24_Clifton_Drive_Sorell_TAS_7172.docx
  3. $fn = basename($_GET['file'] ?? '');
  4. if (!preg_match('/^PlanningReport-[\w\-]+\.docx$/', $fn)) {
  5. http_response_code(400); exit;
  6. }
  7. $path = sys_get_temp_dir() . '/' . $fn;
  8. if (!is_file($path) || (time() - filemtime($path)) > 3600) {
  9. http_response_code(404); exit; // expire after 1 hour
  10. }
  11. header('Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document');
  12. header('Content-Disposition: attachment; filename="'.$fn.'"');
  13. header('Content-Length: '.filesize($path));
  14. readfile($path);