2011-01-28 07:42:10 +00:00
|
|
|
<?php
|
|
|
|
// MyDMS. Document Management System
|
2016-08-09 05:53:15 +00:00
|
|
|
// Copyright (C) 2002-2005 Markus Westphal
|
2011-01-28 07:42:10 +00:00
|
|
|
// Copyright (C) 2006-2008 Malcolm Cowe
|
2010-10-29 13:19:51 +00:00
|
|
|
// Copyright (C) 2010 Matteo Lucarelli
|
2016-08-09 05:53:15 +00:00
|
|
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
2011-01-28 07:42:10 +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.
|
|
|
|
|
2018-10-11 07:39:02 +00:00
|
|
|
if(!isset($settings))
|
|
|
|
require_once("../inc/inc.Settings.php");
|
|
|
|
require_once("inc/inc.Utils.php");
|
2022-11-09 08:25:45 +00:00
|
|
|
require_once("inc/inc.LogInit.php");
|
2018-10-11 07:39:02 +00:00
|
|
|
require_once("inc/inc.Language.php");
|
|
|
|
require_once("inc/inc.Init.php");
|
|
|
|
require_once("inc/inc.Extension.php");
|
|
|
|
require_once("inc/inc.DBInit.php");
|
|
|
|
require_once("inc/inc.ClassUI.php");
|
|
|
|
require_once("inc/inc.Authentication.php");
|
2011-01-28 07:42:10 +00:00
|
|
|
|
2012-12-14 08:34:56 +00:00
|
|
|
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
2017-11-21 09:23:34 +00:00
|
|
|
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
2010-11-12 22:47:41 +00:00
|
|
|
|
2012-12-14 08:34:56 +00:00
|
|
|
if (!isset($_GET["documentid"]) || !is_numeric($_GET["documentid"]) || intval($_GET["documentid"])<1) {
|
2018-04-06 14:34:01 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("invalid_doc_id"));
|
2012-12-14 08:34:56 +00:00
|
|
|
}
|
2011-01-28 07:42:10 +00:00
|
|
|
|
2012-12-14 08:34:56 +00:00
|
|
|
$document = $dms->getDocument($_GET["documentid"]);
|
2011-01-28 07:42:10 +00:00
|
|
|
if (!is_object($document)) {
|
2018-04-06 14:34:01 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("invalid_doc_id"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2011-01-28 07:42:10 +00:00
|
|
|
|
2017-11-21 10:29:49 +00:00
|
|
|
$accessop = new SeedDMS_AccessOperation($dms, $document, $user, $settings);
|
2011-01-28 07:42:10 +00:00
|
|
|
$folder = $document->getFolder();
|
|
|
|
|
2017-10-16 07:05:45 +00:00
|
|
|
if ($document->getAccessMode($user) < M_READ || !$document->getLatestContent()) {
|
2018-04-06 14:34:01 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => htmlspecialchars($document->getName()))),getMLText("access_denied"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
|
|
|
|
2017-11-21 09:23:34 +00:00
|
|
|
/* Could be that the advanced access rights prohibit access on the content */
|
|
|
|
if (!$document->getLatestContent()) {
|
2018-04-06 14:34:01 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => htmlspecialchars($document->getName()))),getMLText("access_denied"));
|
2017-11-21 09:23:34 +00:00
|
|
|
}
|
|
|
|
|
2013-01-24 09:01:09 +00:00
|
|
|
/* Recalculate the status of a document and reload the page if the status
|
|
|
|
* has changed. A status change may occur if the document has expired in
|
|
|
|
* the mean time
|
|
|
|
*/
|
2010-10-29 13:19:51 +00:00
|
|
|
if ($document->verifyLastestContentExpriry()){
|
2012-12-14 08:34:56 +00:00
|
|
|
header("Location:../out/out.ViewDocument.php?documentid=".$document->getID());
|
2017-01-01 13:47:20 +00:00
|
|
|
exit;
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2011-01-28 07:42:10 +00:00
|
|
|
|
2012-12-14 08:34:56 +00:00
|
|
|
if($view) {
|
2020-12-12 15:29:26 +00:00
|
|
|
$view->setParam('fulltextservice', $fulltextservice);
|
2021-10-06 13:03:03 +00:00
|
|
|
$view->setParam('conversionmgr', $conversionmgr);
|
2012-12-14 08:34:56 +00:00
|
|
|
$view->setParam('folder', $folder);
|
|
|
|
$view->setParam('document', $document);
|
|
|
|
$view->setParam('accessobject', $accessop);
|
|
|
|
$view->setParam('viewonlinefiletypes', $settings->_viewOnlineFileTypes);
|
2021-07-16 14:03:34 +00:00
|
|
|
$view->setParam('enableDropUpload', $settings->_enableDropUpload);
|
2013-09-19 12:27:09 +00:00
|
|
|
$view->setParam('enableownerrevapp', $settings->_enableOwnerRevApp);
|
2021-07-01 10:17:04 +00:00
|
|
|
$view->setParam('enableremoverevapp', $settings->_enableRemoveRevApp);
|
2012-12-14 08:34:56 +00:00
|
|
|
$view->setParam('cachedir', $settings->_cacheDir);
|
2013-01-24 09:01:09 +00:00
|
|
|
$view->setParam('workflowmode', $settings->_workflowMode);
|
2014-03-18 09:06:07 +00:00
|
|
|
$view->setParam('previewWidthList', $settings->_previewWidthList);
|
|
|
|
$view->setParam('previewWidthDetail', $settings->_previewWidthDetail);
|
2018-03-20 20:25:16 +00:00
|
|
|
$view->setParam('previewConverters', isset($settings->_converters['preview']) ? $settings->_converters['preview'] : array());
|
|
|
|
$view->setParam('pdfConverters', isset($settings->_converters['pdf']) ? $settings->_converters['pdf'] : array());
|
2016-11-07 08:26:19 +00:00
|
|
|
$view->setParam('showFullPreview', $settings->_showFullPreview);
|
2020-01-20 10:53:38 +00:00
|
|
|
$view->setParam('showtree', showtree());
|
2016-11-07 08:26:19 +00:00
|
|
|
$view->setParam('convertToPdf', $settings->_convertToPdf);
|
2015-06-09 07:18:29 +00:00
|
|
|
$view->setParam('currenttab', isset($_GET['currenttab']) ? $_GET['currenttab'] : "");
|
2016-02-15 09:57:37 +00:00
|
|
|
$view->setParam('timeout', $settings->_cmdTimeout);
|
2019-01-18 12:07:39 +00:00
|
|
|
$view->setParam('xsendfile', $settings->_enableXsendfile);
|
2020-02-28 07:28:58 +00:00
|
|
|
$view->setParam('onepage', $settings->_onePageMode); // do most navigation by reloading areas of pages with ajax
|
2015-10-19 11:14:50 +00:00
|
|
|
$view($_GET);
|
2012-10-22 13:32:48 +00:00
|
|
|
exit;
|
|
|
|
}
|