seeddms-code/controllers/class.Download.php

213 lines
6.3 KiB
PHP
Raw Normal View History

<?php
/**
* Implementation of Download controller
*
* @category DMS
* @package SeedDMS
* @license GPL 2
* @version @version@
* @author Uwe Steinmann <uwe@steinmann.cx>
* @copyright Copyright (C) 2010-2013 Uwe Steinmann
* @version Release: @package_version@
*/
/**
* Class which does the busines logic for downloading a document
*
* @category DMS
* @package SeedDMS
* @author Uwe Steinmann <uwe@steinmann.cx>
* @copyright Copyright (C) 2010-2013 Uwe Steinmann
* @version Release: @package_version@
*/
class SeedDMS_Controller_Download extends SeedDMS_Controller_Common {
2016-08-11 20:56:12 +00:00
public function version() { /* {{{ */
$dms = $this->params['dms'];
$version = $this->params['version'];
$document = $this->params['document'];
if($version < 1) {
$content = $this->callHook('documentLatestContent', $document);
if($content === null)
$content = $document->getLatestContent();
} else {
$content = $this->callHook('documentContent', $document, $version);
if($content === null)
$content = $document->getContentByVersion($version);
}
if (!is_object($content)) {
$this->errormsg = 'invalid_version';
return false;
}
/* set params['content'] for compatiblity with older extensions which
* expect the content in the controller
*/
$this->params['content'] = $content;
if(null === $this->callHook('version')) {
2016-08-11 20:56:12 +00:00
if(file_exists($dms->contentDir . $content->getPath())) {
header("Content-Transfer-Encoding: binary");
$efilename = rawurlencode($content->getOriginalFileName());
header("Content-Disposition: attachment; filename=\"" . $efilename . "\"; filename*=UTF-8''".$efilename);
header("Content-Type: " . $content->getMimeType());
header("Cache-Control: must-revalidate");
2018-01-18 16:28:30 +00:00
sendFile($dms->contentDir . $content->getPath());
2016-08-11 20:56:12 +00:00
}
}
2019-02-11 18:20:07 +00:00
return true;
2016-08-11 20:56:12 +00:00
} /* }}} */
public function file() { /* {{{ */
$dms = $this->params['dms'];
$file = $this->params['file'];
if(null === $this->callHook('file')) {
2016-08-11 20:56:12 +00:00
if(file_exists($dms->contentDir . $file->getPath())) {
header("Content-Transfer-Encoding: binary");
header("Content-Disposition: attachment; filename=\"" . $file->getOriginalFileName() . "\"");
header("Content-Type: " . $file->getMimeType());
header("Cache-Control: must-revalidate");
2018-01-18 16:28:30 +00:00
sendFile($dms->contentDir . $file->getPath());
2016-08-11 20:56:12 +00:00
}
}
2019-02-11 18:20:07 +00:00
return true;
2016-08-11 20:56:12 +00:00
} /* }}} */
public function archive() { /* {{{ */
$dms = $this->params['dms'];
$filename = $this->params['file'];
$basedir = $this->params['basedir'];
if(null === $this->callHook('archive')) {
2016-08-11 20:56:12 +00:00
if(file_exists($basedir . $filename)) {
header('Content-Description: File Transfer');
header("Content-Type: application/zip");
header("Content-Transfer-Encoding: binary");
$efilename = rawurlencode($filename);
header("Content-Disposition: attachment; filename=\"" .$efilename . "\"; filename*=UTF-8''".$efilename);
header("Cache-Control: public");
2018-01-18 16:28:30 +00:00
sendFile($basedir .$filename );
2016-08-11 20:56:12 +00:00
}
}
2019-02-11 18:20:07 +00:00
return true;
2016-08-11 20:56:12 +00:00
} /* }}} */
public function log() { /* {{{ */
$dms = $this->params['dms'];
$filename = $this->params['file'];
$basedir = $this->params['basedir'];
if(null === $this->callHook('log')) {
2016-08-11 20:56:12 +00:00
if(file_exists($basedir . $filename)) {
header("Content-Type: text/plain; name=\"" . $filename . "\"");
header("Content-Transfer-Encoding: binary");
$efilename = rawurlencode($filename);
header("Content-Disposition: attachment; filename=\"" .$efilename . "\"; filename*=UTF-8''".$efilename);
header("Cache-Control: must-revalidate");
2018-01-18 16:28:30 +00:00
sendFile($basedir.$filename);
2016-08-11 20:56:12 +00:00
}
}
2019-02-11 18:20:07 +00:00
return true;
2016-08-11 20:56:12 +00:00
} /* }}} */
public function sqldump() { /* {{{ */
$dms = $this->params['dms'];
$filename = $this->params['file'];
$basedir = $this->params['basedir'];
if(null === $this->callHook('sqldump')) {
2016-08-11 20:56:12 +00:00
if(file_exists($basedir . $filename)) {
2018-01-18 16:28:30 +00:00
header("Content-Type: application/zip");
2016-08-11 20:56:12 +00:00
header("Content-Transfer-Encoding: binary");
$efilename = rawurlencode($filename);
header("Content-Disposition: attachment; filename=\"" .$efilename . "\"; filename*=UTF-8''".$efilename);
header("Cache-Control: must-revalidate");
2018-01-18 16:28:30 +00:00
sendFile($basedir.$filename);
2016-08-11 20:56:12 +00:00
}
}
2019-02-11 18:20:07 +00:00
return true;
2016-08-11 20:56:12 +00:00
} /* }}} */
public function approval() { /* {{{ */
$dms = $this->params['dms'];
$document = $this->params['document'];
$logid = $this->params['approvelogid'];
$filename = $dms->contentDir . $document->getDir().'a'.$logid;
if (!file_exists($filename) ) {
$this->error = 1;
2019-02-11 18:20:07 +00:00
return false;
2016-08-11 20:56:12 +00:00
}
if(null === $this->callHook('approval')) {
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$mimetype = finfo_file($finfo, $filename);
2018-01-18 16:28:30 +00:00
header("Content-Type: ".$mimetype);
header("Content-Transfer-Encoding: binary");
header("Content-Disposition: attachment; filename=\"approval-" . $document->getID()."-".(int) $_GET['approvelogid'] . get_extension($mimetype) . "\"");
header("Cache-Control: must-revalidate");
2018-01-18 16:28:30 +00:00
sendFile($filename);
2016-08-11 20:56:12 +00:00
}
2019-02-11 18:20:07 +00:00
return true;
2016-08-11 20:56:12 +00:00
} /* }}} */
public function review() { /* {{{ */
$dms = $this->params['dms'];
$document = $this->params['document'];
$logid = $this->params['reviewlogid'];
$filename = $dms->contentDir . $document->getDir().'r'.$logid;
if (!file_exists($filename) ) {
$this->error = 1;
2019-02-11 18:20:07 +00:00
return false;
2016-08-11 20:56:12 +00:00
}
if(null === $this->callHook('review')) {
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$mimetype = finfo_file($finfo, $filename);
2018-01-18 16:28:30 +00:00
header("Content-Type: ".$mimetype);
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . filesize($filename ));
header("Content-Disposition: attachment; filename=\"review-" . $document->getID()."-".(int) $_GET['reviewlogid'] . get_extension($mimetype) . "\"");
header("Cache-Control: must-revalidate");
2018-01-18 16:28:30 +00:00
sendFile($filename);
2016-08-11 20:56:12 +00:00
}
return true;
} /* }}} */
public function run() { /* {{{ */
$dms = $this->params['dms'];
$type = $this->params['type'];
switch($type) {
case "version":
2019-02-11 18:20:07 +00:00
return $this->version();
break;
case "file":
2019-02-11 18:20:07 +00:00
return $this->file();
2016-08-11 20:56:12 +00:00
break;
case "archive":
2019-02-11 18:20:07 +00:00
return $this->archive();
2016-08-11 20:56:12 +00:00
break;
case "log":
2019-02-11 18:20:07 +00:00
return $this->log();
2016-08-11 20:56:12 +00:00
break;
case "sqldump":
2019-02-11 18:20:07 +00:00
return $this->sqldump();
2016-08-11 20:56:12 +00:00
break;
case "approval":
2019-02-11 18:20:07 +00:00
return $this->approval();
2016-08-11 20:56:12 +00:00
break;
case "review":
2019-02-11 18:20:07 +00:00
return $this->review();
break;
}
2016-08-11 20:56:12 +00:00
} /* }}} */
}