download.php 1.5 KB

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