2013-01-24 10:12:15 +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
|
2013-01-24 10:12:15 +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.LogInit.php");
|
|
|
|
include("../inc/inc.Language.php");
|
2014-12-08 13:46:01 +00:00
|
|
|
include("../inc/inc.Init.php");
|
|
|
|
include("../inc/inc.Extension.php");
|
|
|
|
include("../inc/inc.DBInit.php");
|
2013-01-24 10:12:15 +00:00
|
|
|
include("../inc/inc.ClassUI.php");
|
2014-01-10 07:22:25 +00:00
|
|
|
include("../inc/inc.ClassController.php");
|
2013-01-24 10:12:15 +00:00
|
|
|
include("../inc/inc.Authentication.php");
|
2014-01-10 07:22:25 +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));
|
2013-01-24 10:12:15 +00:00
|
|
|
|
2016-10-05 14:23:22 +00:00
|
|
|
/* Check if the form data comes from a trusted request */
|
2012-08-29 20:37:22 +00:00
|
|
|
if(!checkFormKey('removefolder')) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_request_token"))),getMLText("invalid_request_token"));
|
|
|
|
}
|
|
|
|
|
2013-01-24 10:12:15 +00:00
|
|
|
if (!isset($_POST["folderid"]) || !is_numeric($_POST["folderid"]) || intval($_POST["folderid"])<1) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_folder_id"))),getMLText("invalid_folder_id"));
|
|
|
|
}
|
|
|
|
$folderid = $_POST["folderid"];
|
2010-11-12 22:47:41 +00:00
|
|
|
$folder = $dms->getFolder($folderid);
|
2013-01-24 10:12:15 +00:00
|
|
|
|
|
|
|
if (!is_object($folder)) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_folder_id"))),getMLText("invalid_folder_id"));
|
|
|
|
}
|
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
if ($folderid == $settings->_rootFolderID || !$folder->getParent()) {
|
2013-01-24 10:12:15 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("cannot_rm_root"));
|
|
|
|
}
|
|
|
|
|
2018-07-12 20:36:44 +00:00
|
|
|
if ($folder->getAccessMode($user, 'removeFolder') < M_ALL) {
|
2013-01-24 10:12:15 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("access_denied"));
|
|
|
|
}
|
|
|
|
|
2020-02-25 16:06:55 +00:00
|
|
|
/*
|
2016-04-26 10:14:59 +00:00
|
|
|
function removePreviews($arr, $document) {
|
|
|
|
$previewer = $arr[0];
|
|
|
|
|
|
|
|
$previewer->deleteDocumentPreviews($document);
|
2020-02-25 16:06:55 +00:00
|
|
|
return null;
|
2016-04-26 10:14:59 +00:00
|
|
|
}
|
|
|
|
require_once("SeedDMS/Preview.php");
|
|
|
|
$previewer = new SeedDMS_Preview_Previewer($settings->_cacheDir);
|
|
|
|
$dms->addCallback('onPreRemoveDocument', 'removePreviews', array($previewer));
|
2020-02-25 16:06:55 +00:00
|
|
|
*/
|
2016-04-26 10:14:59 +00:00
|
|
|
|
2018-09-29 14:10:20 +00:00
|
|
|
/* Get the notify list before removing the folder
|
|
|
|
* Also inform the users/groups of the parent folder
|
|
|
|
*/
|
2010-10-29 13:19:51 +00:00
|
|
|
$parent=$folder->getParent();
|
2014-01-10 07:22:25 +00:00
|
|
|
$foldername = $folder->getName();
|
2018-09-29 14:10:20 +00:00
|
|
|
$fnl = $folder->getNotifyList();
|
|
|
|
$pnl = $parent->getNotifyList();
|
|
|
|
$nl = array(
|
2018-10-02 16:18:24 +00:00
|
|
|
'users'=>array_unique(array_merge($fnl['users'], $pnl['users']), SORT_REGULAR),
|
|
|
|
'groups'=>array_unique(array_merge($fnl['groups'], $pnl['groups']), SORT_REGULAR)
|
2018-09-29 14:10:20 +00:00
|
|
|
);
|
2013-01-24 10:12:15 +00:00
|
|
|
|
2014-01-10 07:22:25 +00:00
|
|
|
$controller->setParam('folder', $folder);
|
2020-09-09 17:49:15 +00:00
|
|
|
$controller->setParam('fulltextservice', $fulltextservice);
|
2014-01-10 07:22:25 +00:00
|
|
|
if(!$controller->run()) {
|
2016-12-06 17:06:19 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => htmlspecialchars($foldername))),getMLText("error_remove_folder"));
|
2013-01-24 10:12:15 +00:00
|
|
|
}
|
|
|
|
|
2014-01-10 07:22:25 +00:00
|
|
|
if ($notifier) {
|
2021-05-15 20:46:46 +00:00
|
|
|
$notifier->sendDeleteFolderMail($folder, $user);
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
|
|
|
|
2022-07-08 11:17:27 +00:00
|
|
|
$session->setSplashMsg(array('type'=>'success', 'msg'=>getMLText('splash_rm_folder')));
|
|
|
|
|
2015-06-19 13:04:25 +00:00
|
|
|
add_log_line("?folderid=".$folderid."&name=".$foldername);
|
2010-10-29 13:19:51 +00:00
|
|
|
|
2013-01-24 10:12:15 +00:00
|
|
|
header("Location:../out/out.ViewFolder.php?folderid=".$parent->getID()."&showtree=".$_POST["showtree"]);
|
|
|
|
|
|
|
|
?>
|