2013-03-05 07:19:27 +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-03-05 07:19:27 +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");
|
2022-11-09 05:40:50 +00:00
|
|
|
include("../inc/inc.LogInit.php");
|
2013-03-05 07:19:27 +00:00
|
|
|
include("../inc/inc.Language.php");
|
2014-12-08 13:43:04 +00:00
|
|
|
include("../inc/inc.Init.php");
|
|
|
|
include("../inc/inc.Extension.php");
|
|
|
|
include("../inc/inc.DBInit.php");
|
2013-03-05 07:19:27 +00:00
|
|
|
include("../inc/inc.ClassUI.php");
|
2014-12-08 13:43:04 +00:00
|
|
|
include("../inc/inc.ClassController.php");
|
2013-03-05 07:19:27 +00:00
|
|
|
include("../inc/inc.Authentication.php");
|
|
|
|
|
2014-12-08 13:43:04 +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));
|
2014-12-08 13:43:04 +00:00
|
|
|
|
2021-01-24 16:05:13 +00:00
|
|
|
/* Check if the form data comes from a trusted request */
|
|
|
|
if(!checkFormKey('editfolder')) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_request_token"))),getMLText("invalid_request_token"));
|
|
|
|
}
|
|
|
|
|
2013-03-05 07:19:27 +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"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2013-03-05 07:19:27 +00:00
|
|
|
|
|
|
|
$folderid = $_POST["folderid"];
|
2010-11-12 22:47:41 +00:00
|
|
|
$folder = $dms->getFolder($folderid);
|
2013-03-05 07:19:27 +00:00
|
|
|
|
|
|
|
if (!is_object($folder)) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_folder_id"))),getMLText("invalid_folder_id"));
|
|
|
|
}
|
|
|
|
|
|
|
|
$folderPathHTML = getFolderPathHTML($folder, true);
|
|
|
|
|
2018-07-12 20:36:44 +00:00
|
|
|
if ($folder->getAccessMode($user, 'editFolder') < M_READWRITE) {
|
2013-03-05 07:19:27 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("access_denied"));
|
|
|
|
}
|
|
|
|
|
|
|
|
$name = $_POST["name"];
|
|
|
|
$comment = $_POST["comment"];
|
2012-12-14 08:01:37 +00:00
|
|
|
if(isset($_POST["sequence"])) {
|
2014-03-03 13:42:58 +00:00
|
|
|
$sequence = str_replace(',', '.', $_POST["sequence"]);
|
2013-03-05 07:19:27 +00:00
|
|
|
if (!is_numeric($sequence)) {
|
|
|
|
$sequence = "keep";
|
|
|
|
}
|
2012-12-14 08:01:37 +00:00
|
|
|
} else {
|
|
|
|
$sequence = "keep";
|
|
|
|
}
|
|
|
|
if(isset($_POST["attributes"]))
|
|
|
|
$attributes = $_POST["attributes"];
|
|
|
|
else
|
|
|
|
$attributes = array();
|
2010-10-29 13:19:51 +00:00
|
|
|
|
2014-12-08 13:43:04 +00:00
|
|
|
$oldname = $folder->getName();
|
|
|
|
$oldcomment = $folder->getComment();
|
2018-03-19 11:13:18 +00:00
|
|
|
/* Make a real copy of each attribute because setting a new attribute value
|
|
|
|
* will just update the old attribute object in array attributes[] and hence
|
|
|
|
* also update the old value
|
|
|
|
*/
|
2019-06-27 12:19:24 +00:00
|
|
|
$oldattributes = array();
|
2018-03-19 11:13:18 +00:00
|
|
|
foreach($folder->getAttributes() as $ai=>$aa)
|
|
|
|
$oldattributes[$ai] = clone $aa;
|
2014-12-08 13:43:04 +00:00
|
|
|
|
2020-12-14 06:53:51 +00:00
|
|
|
$controller->setParam('fulltextservice', $fulltextservice);
|
2014-12-08 13:43:04 +00:00
|
|
|
$controller->setParam('folder', $folder);
|
|
|
|
$controller->setParam('name', $name);
|
|
|
|
$controller->setParam('comment', $comment);
|
|
|
|
$controller->setParam('sequence', $sequence);
|
|
|
|
$controller->setParam('attributes', $attributes);
|
2022-07-29 19:44:04 +00:00
|
|
|
if(!$controller()) {
|
2019-12-13 14:00:04 +00:00
|
|
|
$err = $controller->getErrorMsg();
|
|
|
|
if(is_string($err))
|
|
|
|
$errmsg = getMLText($err);
|
|
|
|
elseif(is_array($err)) {
|
|
|
|
$errmsg = getMLText($err[0], $err[1]);
|
|
|
|
} else {
|
|
|
|
$errmsg = $err;
|
2010-11-17 07:34:12 +00:00
|
|
|
}
|
2019-12-13 14:00:04 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())), $errmsg);
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2013-03-06 11:53:25 +00:00
|
|
|
|
2021-05-19 13:13:49 +00:00
|
|
|
// Send notification to subscribers.
|
|
|
|
if($notifier) {
|
|
|
|
$notifier->sendChangedFolderNameMail($folder, $user, $oldname);
|
2012-10-09 10:03:38 +00:00
|
|
|
|
2021-05-19 13:13:49 +00:00
|
|
|
$notifier->sendChangedFolderCommentMail($folder, $user, $oldcomment);
|
2010-11-17 07:34:12 +00:00
|
|
|
|
2021-05-19 13:13:49 +00:00
|
|
|
$notifier->sendChangedFolderAttributesMail($folder, $user, $oldattributes);
|
2018-03-19 11:13:18 +00:00
|
|
|
}
|
|
|
|
|
2013-05-21 06:39:03 +00:00
|
|
|
$session->setSplashMsg(array('type'=>'success', 'msg'=>getMLText('splash_folder_edited')));
|
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
add_log_line("?folderid=".$folderid);
|
|
|
|
|
|
|
|
header("Location:../out/out.ViewFolder.php?folderid=".$folderid."&showtree=".$_POST["showtree"]);
|
2013-03-05 07:19:27 +00:00
|
|
|
|
|
|
|
?>
|