2012-12-14 08:18:35 +00:00
|
|
|
<?php
|
|
|
|
// MyDMS. Document Management System
|
|
|
|
// Copyright (C) 2002-2005 Markus Westphal
|
|
|
|
// Copyright (C) 2006-2008 Malcolm Cowe
|
2016-08-09 05:34:30 +00:00
|
|
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
2012-12-14 08:18:35 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
include("../inc/inc.Settings.php");
|
2011-05-16 15:44:59 +00:00
|
|
|
include("../inc/inc.LogInit.php");
|
2012-12-14 08:18:35 +00:00
|
|
|
include("../inc/inc.Language.php");
|
2014-12-08 13:47:32 +00:00
|
|
|
include("../inc/inc.Init.php");
|
|
|
|
include("../inc/inc.Extension.php");
|
|
|
|
include("../inc/inc.DBInit.php");
|
2012-12-14 08:18:35 +00:00
|
|
|
include("../inc/inc.ClassUI.php");
|
2013-07-23 15:35:46 +00:00
|
|
|
include("../inc/inc.ClassController.php");
|
2012-12-14 08:18:35 +00:00
|
|
|
include("../inc/inc.Authentication.php");
|
2010-10-29 13:19:51 +00:00
|
|
|
|
2013-07-23 15:35:46 +00:00
|
|
|
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
2018-03-12 17:34:17 +00:00
|
|
|
$controller = Controller::factory($tmp[1], array('dms'=>$dms, 'user'=>$user));
|
2016-08-11 10:05:26 +00:00
|
|
|
$accessop = new SeedDMS_AccessOperation($dms, $user, $settings);
|
|
|
|
if (!$accessop->check_controller_access($controller, $_POST)) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => "")),getMLText("access_denied"));
|
|
|
|
}
|
2010-10-29 13:19:51 +00:00
|
|
|
|
2013-07-23 15:35:46 +00:00
|
|
|
$documentid = $_GET["documentid"];
|
2012-12-14 08:18:35 +00:00
|
|
|
if (!isset($documentid) || !is_numeric($documentid) || intval($documentid)<1) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("invalid_doc_id"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2012-12-14 08:18:35 +00:00
|
|
|
|
2010-11-12 22:47:41 +00:00
|
|
|
$document = $dms->getDocument($documentid);
|
2012-12-14 08:18:35 +00:00
|
|
|
|
|
|
|
if (!is_object($document)) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("invalid_doc_id"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2012-12-14 08:18:35 +00:00
|
|
|
|
|
|
|
if ($document->getAccessMode($user) < M_READ) {
|
2010-10-29 13:19:51 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("access_denied"));
|
|
|
|
}
|
|
|
|
|
2012-12-14 08:18:35 +00:00
|
|
|
if(isset($_GET["version"])) {
|
|
|
|
$version = $_GET["version"];
|
|
|
|
|
2014-06-03 06:48:27 +00:00
|
|
|
if (!is_numeric($version)) {
|
2012-12-14 08:18:35 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("invalid_version"));
|
|
|
|
}
|
2014-06-03 06:48:27 +00:00
|
|
|
|
2019-02-06 12:11:14 +00:00
|
|
|
$controller->setParam('document', $document);
|
|
|
|
$controller->setParam('version', intval($version));
|
|
|
|
$controller->setParam('type', 'version');
|
|
|
|
if(!$controller->run()) {
|
2012-12-14 08:18:35 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("invalid_version"));
|
|
|
|
}
|
|
|
|
} elseif(isset($_GET["file"])) {
|
|
|
|
$fileid = $_GET["file"];
|
|
|
|
|
|
|
|
if (!is_numeric($fileid) || intval($fileid)<1) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("invalid_version"));
|
|
|
|
}
|
|
|
|
|
|
|
|
$file = $document->getDocumentFile($fileid);
|
|
|
|
|
|
|
|
if (!is_object($file)) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("invalid_file_id"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($settings->_viewOnlineFileTypes) && is_array($settings->_viewOnlineFileTypes) && in_array(strtolower($file->getFileType()), $settings->_viewOnlineFileTypes)) {
|
|
|
|
header("Content-Type: " . $file->getMimeType());
|
|
|
|
}
|
2013-10-30 08:58:17 +00:00
|
|
|
header("Content-Disposition: filename=\"" . $file->getOriginalFileName() . "\"");
|
2012-12-14 08:18:35 +00:00
|
|
|
header("Content-Length: " . filesize($dms->contentDir . $file->getPath() ));
|
|
|
|
header("Expires: 0");
|
|
|
|
header("Cache-Control: no-cache, must-revalidate");
|
|
|
|
header("Pragma: no-cache");
|
|
|
|
|
2014-01-10 07:19:48 +00:00
|
|
|
ob_clean();
|
2012-12-14 08:18:35 +00:00
|
|
|
readfile($dms->contentDir . $file->getPath());
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2012-12-14 08:18:35 +00:00
|
|
|
|
|
|
|
add_log_line();
|
|
|
|
exit;
|
|
|
|
?>
|