Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

download.php 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Andreas Fischer <bantu@owncloud.com>
  6. * @author Björn Schießle <bjoern@schiessle.org>
  7. * @author Lukas Reschke <lukas@statuscode.ch>
  8. * @author Morris Jobke <hey@morrisjobke.de>
  9. * @author Roeland Jago Douma <roeland@famdouma.nl>
  10. * @author Vincent Petry <pvince81@owncloud.com>
  11. *
  12. * @license AGPL-3.0
  13. *
  14. * This code is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU Affero General Public License, version 3,
  16. * as published by the Free Software Foundation.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Affero General Public License, version 3,
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>
  25. *
  26. */
  27. OCP\JSON::checkAppEnabled('files_versions');
  28. OCP\JSON::checkLoggedIn();
  29. $file = $_GET['file'];
  30. $revision=(int)$_GET['revision'];
  31. try {
  32. list($uid, $filename) = OCA\Files_Versions\Storage::getUidAndFilename($file);
  33. } catch(\OCP\Files\NotFoundException $e) {
  34. header("HTTP/1.1 404 Not Found");
  35. $tmpl = new OCP\Template('', '404', 'guest');
  36. $tmpl->assign('file', '');
  37. $tmpl->printPage();
  38. exit();
  39. }
  40. $versionName = '/'.$uid.'/files_versions/'.$filename.'.v'.$revision;
  41. $view = new OC\Files\View('/');
  42. $ftype = \OC::$server->getMimeTypeDetector()->getSecureMimeType($view->getMimeType('/'.$uid.'/files/'.$filename));
  43. header('Content-Type:'.$ftype);
  44. OCP\Response::setContentDispositionHeader(basename($filename), 'attachment');
  45. OCP\Response::disableCaching();
  46. OCP\Response::setContentLengthHeader($view->filesize($versionName));
  47. OC_Util::obEnd();
  48. $view->readfile($versionName);