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

103 lines
1.9 KiB
PHP

<?php
/**
* ownCloud - Documents App
*
* @author Victor Dubiniuk
* @copyright 2013 Victor Dubiniuk victor.dubiniuk@gmail.com
*
* This file is licensed under the Affero General Public License version 3 or
* later.
*/
namespace OCA\Documents;
class Download {
/**
* Filesystem view
* @var \OC\Files\View
*/
protected $view;
/**
* Path to the File to be served, relative to the view
* @var string
*/
protected $filepath;
protected $instance;
/**
* Build download model according to the headers
* @param type $view - filesystem view
* @param type $filepath - path to the file relative to this view root
*/
public function __construct($view, $filepath){
$this->filepath = $filepath;
$this->view = $view;
if (isset($_SERVER['HTTP_RANGE'])) {
$this->instance = new Download\Range($view, $filepath);
} else {
$this->instance = new Download\Simple($view, $filepath);
}
}
/**
* Send the requested content
*/
public function sendResponse(){
\OCP\Response::disableCaching();
if (!$this->fileExists()){
$this->sendNotFound();
}
$this->instance->sendResponse();
exit();
}
/**
* Get the name of the requested file
* @return String
*/
protected function getFilename(){
return basename($this->filepath);
}
/**
* Get the size of the requested file
*/
protected function getFilesize(){
return $this->view->filesize($this->filepath);
}
/**
* Get the mimetype of the requested file
* @return string
*/
protected function getMimeType(){
return $this->view->getMimeType($this->filepath);
}
/**
* Check if the requested file exists
* @return bool
*/
protected function fileExists(){
return $this->view->file_exists($this->filepath);
}
/**
* Send 404 Response
*/
protected function sendNotFound(){
header("HTTP/1.0 404 Not Found");
$tmpl = new OCP\Template('', '404', 'guest');
$tmpl->assign('file', $this->filepath);
$tmpl->printPage();
exit;
}
}