2013-03-05 11:48:46 +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 11:48:46 +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:47:32 +00:00
|
|
|
include("../inc/inc.Init.php");
|
|
|
|
include("../inc/inc.Extension.php");
|
|
|
|
include("../inc/inc.DBInit.php");
|
2013-03-05 11:48:46 +00:00
|
|
|
include("../inc/inc.ClassUI.php");
|
|
|
|
include("../inc/inc.Authentication.php");
|
|
|
|
|
|
|
|
if (!isset($_GET["folderid"]) || !is_numeric($_GET["folderid"]) || intval($_GET["folderid"])<1) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_folder_id"))),getMLText("invalid_folder_id"));
|
|
|
|
}
|
|
|
|
$folderid = $_GET["folderid"];
|
2010-11-12 22:47:41 +00:00
|
|
|
$folder = $dms->getFolder($folderid);
|
2013-03-05 11:48:46 +00:00
|
|
|
|
|
|
|
if (!is_object($folder)) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_folder_id"))),getMLText("invalid_folder_id"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($folderid == $settings->_rootFolderID || !$folder->getParent()) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("cannot_move_root"));
|
|
|
|
}
|
|
|
|
|
2014-07-08 06:30:59 +00:00
|
|
|
if (!isset($_GET["targetid"]) || !is_numeric($_GET["targetid"]) || intval($_GET["targetid"])<1) {
|
2013-03-05 11:48:46 +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
|
|
|
}
|
2013-03-05 11:48:46 +00:00
|
|
|
|
2014-07-08 06:30:59 +00:00
|
|
|
$targetid = $_GET["targetid"];
|
2010-11-12 22:47:41 +00:00
|
|
|
$targetFolder = $dms->getFolder($targetid);
|
2013-03-05 11:48:46 +00:00
|
|
|
|
|
|
|
if (!is_object($targetFolder)) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_folder_id"))),getMLText("invalid_folder_id"));
|
|
|
|
}
|
|
|
|
|
2013-11-25 21:12:48 +00:00
|
|
|
if($folder->isSubFolder($targetFolder)) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("invalid_target_folder"));
|
|
|
|
}
|
|
|
|
|
2018-07-12 20:36:44 +00:00
|
|
|
if ($folder->getAccessMode($user, 'moveFolder') < M_READWRITE || $targetFolder->getAccessMode($user, 'moveFolder') < M_READWRITE) {
|
2013-03-05 11:48:46 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("access_denied"));
|
|
|
|
}
|
|
|
|
|
2019-07-01 18:40:21 +00:00
|
|
|
/* Check if name already exists in the folder */
|
|
|
|
if(!$settings->_enableDuplicateSubFolderNames) {
|
|
|
|
if($targetFolder->hasSubFolderByName($folder->getName())) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("subfolder_duplicate_name"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-06 11:53:25 +00:00
|
|
|
$oldFolder = $folder->getParent();
|
2010-11-17 07:34:12 +00:00
|
|
|
if ($folder->setParent($targetFolder)) {
|
|
|
|
// Send notification to subscribers.
|
|
|
|
if($notifier) {
|
2016-12-08 17:13:12 +00:00
|
|
|
$nl1 = $oldFolder->getNotifyList();
|
|
|
|
$nl2 = $folder->getNotifyList();
|
|
|
|
$nl3 = $targetFolder->getNotifyList();
|
|
|
|
$nl = array(
|
2018-10-02 16:18:24 +00:00
|
|
|
'users'=>array_unique(array_merge($nl1['users'], $nl2['users'], $nl3['users']), SORT_REGULAR),
|
|
|
|
'groups'=>array_unique(array_merge($nl1['groups'], $nl2['groups'], $nl3['groups']), SORT_REGULAR)
|
2016-12-08 17:13:12 +00:00
|
|
|
);
|
2013-03-06 11:53:25 +00:00
|
|
|
$subject = "folder_moved_email_subject";
|
|
|
|
$message = "folder_moved_email_body";
|
|
|
|
$params = array();
|
|
|
|
$params['name'] = $folder->getName();
|
|
|
|
$params['old_folder_path'] = $oldFolder->getFolderPathPlain();
|
|
|
|
$params['new_folder_path'] = $targetFolder->getFolderPathPlain();
|
|
|
|
$params['username'] = $user->getFullName();
|
2019-11-28 09:01:59 +00:00
|
|
|
$params['url'] = getBaseUrl().$settings->_httpRoot."out/out.ViewFolder.php?folderid=".$folder->getID();
|
2013-03-06 11:53:25 +00:00
|
|
|
$params['sitename'] = $settings->_siteName;
|
|
|
|
$params['http_root'] = $settings->_httpRoot;
|
2016-12-08 17:13:12 +00:00
|
|
|
$notifier->toList($user, $nl["users"], $subject, $message, $params);
|
|
|
|
foreach ($nl["groups"] as $grp) {
|
2013-03-06 11:53:25 +00:00
|
|
|
$notifier->toGroup($user, $grp, $subject, $message, $params);
|
|
|
|
}
|
|
|
|
// if user is not owner send notification to owner
|
2019-08-12 06:09:53 +00:00
|
|
|
//if ($user->getID() != $folder->getOwner()->getID())
|
|
|
|
// $notifier->toIndividual($user, $folder->getOwner(), $subject, $message, $params);
|
2013-03-06 11:53:25 +00:00
|
|
|
|
2010-11-17 07:34:12 +00:00
|
|
|
}
|
|
|
|
} else {
|
2013-03-05 11:48:46 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("error_occured"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
add_log_line();
|
2013-03-05 11:48:46 +00:00
|
|
|
header("Location:../out/out.ViewFolder.php?folderid=".$folderid."&showtree=".$_GET["showtree"]);
|
|
|
|
|
|
|
|
?>
|