You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.5 KiB

15 years ago
15 years ago
  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. if( !OC_User::isLoggedIn()){
  26. header( "Location: ".OC_Helper::linkTo( "", "index.php" ));
  27. exit();
  28. }
  29. $filename = $_GET["file"];
  30. if(!OC_Filesystem::file_exists($filename)){
  31. header("HTTP/1.0 404 Not Found");
  32. $tmpl = new OC_Template( '', '404', 'guest' );
  33. $tmpl->assign('file',$filename);
  34. $tmpl->printPage();
  35. exit;
  36. }
  37. $ftype=OC_Filesystem::getMimeType( $filename );
  38. header('Content-Type:'.$ftype);
  39. header('Content-Disposition: attachment; filename="'.basename($filename).'"');
  40. header('Expires: 0');
  41. header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  42. header('Pragma: public');
  43. header('Content-Length: '.OC_Filesystem::filesize($filename));
  44. ob_end_clean();
  45. OC_Filesystem::readfile( $filename );
  46. ?>