2012-12-14 08:34:56 +00:00
|
|
|
<?php
|
|
|
|
// MyDMS. Document Management System
|
2016-08-09 05:53:15 +00:00
|
|
|
// Copyright (C) 2002-2005 Markus Westphal
|
2012-12-14 08:34:56 +00:00
|
|
|
// Copyright (C) 2006-2008 Malcolm Cowe
|
|
|
|
// Copyright (C) 2010 Matteo Lucarelli
|
2016-08-09 05:53:15 +00:00
|
|
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
2012-12-14 08:34:56 +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");
|
|
|
|
include("../inc/inc.Utils.php");
|
2016-08-11 14:41:19 +00:00
|
|
|
include("../inc/inc.Language.php");
|
2014-12-08 13:48:23 +00:00
|
|
|
include("../inc/inc.Init.php");
|
|
|
|
include("../inc/inc.Extension.php");
|
2010-10-29 13:19:51 +00:00
|
|
|
include("../inc/inc.DBInit.php");
|
2012-12-14 08:34:56 +00:00
|
|
|
include("../inc/inc.ClassUI.php");
|
|
|
|
include("../inc/inc.Authentication.php");
|
|
|
|
|
2016-04-18 11:13:16 +00:00
|
|
|
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
|
|
|
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
|
|
|
$accessop = new SeedDMS_AccessOperation($dms, $user, $settings);
|
2016-08-12 16:08:30 +00:00
|
|
|
if (!$accessop->check_view_access($view, $_GET)) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))),getMLText("access_denied"));
|
|
|
|
}
|
2016-04-18 11:13:16 +00:00
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
if (!isset($_GET["folderid"]) || !is_numeric($_GET["folderid"]) || intval($_GET["folderid"])<1) {
|
2012-12-14 08:34:56 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_folder_id"))),getMLText("invalid_folder_id"));
|
|
|
|
}
|
|
|
|
$folderid = $_GET["folderid"];
|
|
|
|
$folder = $dms->getFolder($folderid);
|
2010-10-29 13:19:51 +00:00
|
|
|
if (!is_object($folder)) {
|
2012-12-14 08:34:56 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_folder_id"))),getMLText("invalid_folder_id"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
|
|
|
|
2012-12-14 08:34:56 +00:00
|
|
|
if ($folder->getAccessMode($user) < M_READWRITE) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))),getMLText("access_denied"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
|
|
|
|
2014-05-20 04:31:12 +00:00
|
|
|
if($settings->_quota > 0) {
|
|
|
|
$remain = checkQuota($user);
|
|
|
|
if ($remain < 0) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))),getMLText("quota_exceeded", array('bytes'=>SeedDMS_Core_File::format_filesize(abs($remain)))));
|
|
|
|
}
|
2012-12-19 10:18:57 +00:00
|
|
|
}
|
|
|
|
|
2015-09-16 09:25:59 +00:00
|
|
|
if($settings->_libraryFolder) {
|
|
|
|
$libfolder = $dms->getFolder($settings->_libraryFolder);
|
|
|
|
if (!is_object($libfolder)) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_folder_id"))),getMLText("invalid_folder_id"));
|
|
|
|
}
|
2015-06-24 10:26:08 +00:00
|
|
|
|
2015-09-16 09:25:59 +00:00
|
|
|
if ($libfolder->getAccessMode($user) < M_READ) {
|
2016-04-22 10:25:26 +00:00
|
|
|
$libfolder = null;
|
|
|
|
// UI::exitError(getMLText("folder_title", array("foldername" => htmlspecialchars($libfolder->getName()))), getMLText("access_denied"));
|
2015-09-16 09:25:59 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$libfolder = null;
|
2015-06-24 10:26:08 +00:00
|
|
|
}
|
|
|
|
|
2012-12-14 08:34:56 +00:00
|
|
|
if($view) {
|
2016-03-16 11:41:17 +00:00
|
|
|
$view->setParam('folder', $folder);
|
|
|
|
$view->setParam('strictformcheck', $settings->_strictFormCheck);
|
|
|
|
$view->setParam('enablelargefileupload', $settings->_enableLargeFileUpload);
|
2017-04-27 04:51:16 +00:00
|
|
|
$view->setParam('enablemultiupload', $settings->_enableMultiUpload);
|
2016-03-16 11:41:17 +00:00
|
|
|
$view->setParam('enableadminrevapp', $settings->_enableAdminRevApp);
|
|
|
|
$view->setParam('enableownerrevapp', $settings->_enableOwnerRevApp);
|
|
|
|
$view->setParam('enableselfrevapp', $settings->_enableSelfRevApp);
|
2016-03-18 15:17:17 +00:00
|
|
|
$view->setParam('libraryfolder', $libfolder);
|
2016-03-16 11:41:17 +00:00
|
|
|
$view->setParam('dropfolderdir', $settings->_dropFolderDir);
|
2017-08-01 05:56:31 +00:00
|
|
|
$view->setParam('dropfolderfile', isset($_REQUEST["dropfolderfileform1"]) ?$_REQUEST["dropfolderfileform1"] : '');
|
2016-03-16 11:41:17 +00:00
|
|
|
$view->setParam('workflowmode', $settings->_workflowMode);
|
|
|
|
$view->setParam('presetexpiration', $settings->_presetExpirationDate);
|
|
|
|
$view->setParam('sortusersinlist', $settings->_sortUsersInList);
|
|
|
|
$view->setParam('orderby', $settings->_sortFoldersDefault);
|
2016-04-18 11:13:16 +00:00
|
|
|
$view->setParam('accessobject', $accessop);
|
2016-03-16 11:41:17 +00:00
|
|
|
$view($_GET);
|
2012-12-14 08:34:56 +00:00
|
|
|
exit;
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2012-10-09 10:08:10 +00:00
|
|
|
|
|
|
|
?>
|