download.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /**
  3. * ownCloud - ajax frontend
  4. *
  5. * @author Robin Appelman
  6. * @copyright 2010 Robin Appelman icewind1991@gmail.com
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  10. * License as published by the Free Software Foundation; either
  11. * version 3 of the License, or any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public
  19. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. // Init owncloud
  23. require_once('../lib/base.php');
  24. // Check if we are a user
  25. OC_Util::checkLoggedIn();
  26. $filename = $_GET["file"];
  27. if(!OC_Filesystem::file_exists($filename)){
  28. header("HTTP/1.0 404 Not Found");
  29. $tmpl = new OC_Template( '', '404', 'guest' );
  30. $tmpl->assign('file',$filename);
  31. $tmpl->printPage();
  32. exit;
  33. }
  34. $ftype=OC_Filesystem::getMimeType( $filename );
  35. header('Content-Type:'.$ftype);
  36. header('Content-Disposition: attachment; filename="'.basename($filename).'"');
  37. header('Expires: 0');
  38. header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  39. header('Pragma: public');
  40. header('Content-Length: '.OC_Filesystem::filesize($filename));
  41. @ob_end_clean();
  42. OC_Filesystem::readfile( $filename );
  43. ?>