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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * ownCloud - trash bin
  4. *
  5. * @author Bjoern Schiessle
  6. * @copyright 2013 Bjoern Schiessle schiessle@owncloud.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. $view = new OC_FilesystemView('/'.\OCP\User::getUser().'/files_trashbin/files');
  26. if(!$view->file_exists($filename)) {
  27. header("HTTP/1.0 404 Not Found");
  28. $tmpl = new OCP\Template( '', '404', 'guest' );
  29. $tmpl->assign('file', $filename);
  30. $tmpl->printPage();
  31. exit;
  32. }
  33. $ftype=$view->getMimeType( $filename );
  34. header('Content-Type:'.$ftype);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: '. $view->filesize($filename));
  42. OC_Util::obEnd();
  43. $view->readfile( $filename );