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.

download.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. // Check if we are a user
  23. OCP\User::checkLoggedIn();
  24. $filename = $_GET["file"];
  25. if(!OC_Filesystem::file_exists($filename)) {
  26. header("HTTP/1.0 404 Not Found");
  27. $tmpl = new OCP\Template( '', '404', 'guest' );
  28. $tmpl->assign('file', $filename);
  29. $tmpl->printPage();
  30. exit;
  31. }
  32. $ftype=OC_Filesystem::getMimeType( $filename );
  33. header('Content-Type:'.$ftype);
  34. if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) {
  35. header( 'Content-Disposition: attachment; filename="' . rawurlencode( basename($filename) ) . '"' );
  36. } else {
  37. header( 'Content-Disposition: attachment; filename*=UTF-8\'\'' . rawurlencode( basename($filename) )
  38. . '; filename="' . rawurlencode( basename($filename) ) . '"' );
  39. }
  40. OCP\Response::disableCaching();
  41. header('Content-Length: '.OC_Filesystem::filesize($filename));
  42. OC_Util::obEnd();
  43. OC_Filesystem::readfile( $filename );