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
|
|
|
|
// Copyright (C) 2010 Matteo Lucarelli
|
2016-08-09 05:34:30 +00:00
|
|
|
// Copyright (C) 2010-2106 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.Utils.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-01-24 10:12:15 +00:00
|
|
|
include("../inc/inc.ClassUI.php");
|
2017-10-18 04:50:15 +00:00
|
|
|
include("../inc/inc.ClassController.php");
|
2013-01-24 10:12:15 +00:00
|
|
|
include("../inc/inc.Authentication.php");
|
|
|
|
|
2017-10-18 04:50:15 +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));
|
2017-10-18 04:50:15 +00:00
|
|
|
|
2016-10-05 14:23:22 +00:00
|
|
|
/* Check if the form data comes from a trusted request */
|
2012-09-05 20:59:12 +00:00
|
|
|
if(!checkFormKey('addsubfolder')) {
|
|
|
|
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"));
|
|
|
|
}
|
|
|
|
|
|
|
|
$folderPathHTML = getFolderPathHTML($folder, true);
|
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
if ($folder->getAccessMode($user) < M_READWRITE) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("access_denied"));
|
2013-01-24 10:12:15 +00:00
|
|
|
}
|
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
$sequence = $_POST["sequence"];
|
2014-03-03 13:42:58 +00:00
|
|
|
$sequence = str_replace(',', '.', $_POST["sequence"]);
|
2013-01-24 10:12:15 +00:00
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
if (!is_numeric($sequence)) {
|
2013-01-24 10:12:15 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("invalid_sequence"));
|
|
|
|
}
|
|
|
|
|
|
|
|
$name = $_POST["name"];
|
|
|
|
$comment = $_POST["comment"];
|
2013-02-14 12:10:28 +00:00
|
|
|
if(isset($_POST["attributes"]))
|
|
|
|
$attributes = $_POST["attributes"];
|
|
|
|
else
|
|
|
|
$attributes = array();
|
2013-05-28 07:03:21 +00:00
|
|
|
foreach($attributes as $attrdefid=>$attribute) {
|
|
|
|
$attrdef = $dms->getAttributeDefinition($attrdefid);
|
|
|
|
if($attribute) {
|
2016-10-27 07:19:35 +00:00
|
|
|
if(!$attrdef->validate($attribute)) {
|
|
|
|
$errmsg = getAttributeValidationText($attrdef->getValidationError(), $attrdef->getName(), $attribute);
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())), $errmsg);
|
2014-11-17 06:03:57 +00:00
|
|
|
}
|
2016-10-27 08:56:56 +00:00
|
|
|
} elseif($attrdef->getMinValues() > 0) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $document->getName())),getMLText("attr_min_values", array("attrname"=>$attrdef->getName())));
|
2013-05-28 07:03:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-18 04:50:15 +00:00
|
|
|
/* Check if additional notification shall be added */
|
|
|
|
$notusers = array();
|
|
|
|
if(!empty($_POST['notification_users'])) {
|
|
|
|
foreach($_POST['notification_users'] as $notuserid) {
|
|
|
|
$notuser = $dms->getUser($notuserid);
|
|
|
|
if($notuser) {
|
|
|
|
$notusers[] = $notuser;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$notgroups = array();
|
|
|
|
if(!empty($_POST['notification_groups'])) {
|
|
|
|
foreach($_POST['notification_groups'] as $notgroupid) {
|
|
|
|
$notgroup = $dms->getGroup($notgroupid);
|
|
|
|
if($notgroup) {
|
|
|
|
$notgroups[] = $notgroup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-11-17 07:34:12 +00:00
|
|
|
|
2017-10-18 04:50:15 +00:00
|
|
|
$controller->setParam('folder', $folder);
|
|
|
|
$controller->setParam('name', $name);
|
|
|
|
$controller->setParam('comment', $comment);
|
|
|
|
$controller->setParam('sequence', $sequence);
|
|
|
|
$controller->setParam('attributes', $attributes);
|
|
|
|
$controller->setParam('notificationgroups', $notgroups);
|
|
|
|
$controller->setParam('notificationusers', $notusers);
|
|
|
|
if(!$subFolder = $controller->run()) {
|
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText($controller->getErrorMsg()));
|
|
|
|
} else {
|
2010-11-17 07:34:12 +00:00
|
|
|
// Send notification to subscribers.
|
|
|
|
if($notifier) {
|
2013-03-06 11:53:25 +00:00
|
|
|
$notifyList = $folder->getNotifyList();
|
|
|
|
|
|
|
|
$subject = "new_subfolder_email_subject";
|
|
|
|
$message = "new_subfolder_email_body";
|
|
|
|
$params = array();
|
|
|
|
$params['name'] = $subFolder->getName();
|
2014-02-25 10:04:34 +00:00
|
|
|
$params['folder_name'] = $folder->getName();
|
2013-03-06 11:53:25 +00:00
|
|
|
$params['folder_path'] = $folder->getFolderPathPlain();
|
|
|
|
$params['username'] = $user->getFullName();
|
|
|
|
$params['comment'] = $comment;
|
|
|
|
$params['url'] = "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot."out/out.ViewFolder.php?folderid=".$subFolder->getID();
|
|
|
|
$params['sitename'] = $settings->_siteName;
|
|
|
|
$params['http_root'] = $settings->_httpRoot;
|
|
|
|
$notifier->toList($user, $notifyList["users"], $subject, $message, $params);
|
|
|
|
foreach ($notifyList["groups"] as $grp) {
|
|
|
|
$notifier->toGroup($user, $grp, $subject, $message, $params);
|
|
|
|
}
|
2010-11-17 07:34:12 +00:00
|
|
|
}
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-24 10:12:15 +00:00
|
|
|
add_log_line("?name=".$name."&folderid=".$folderid);
|
2010-10-29 13:19:51 +00:00
|
|
|
|
|
|
|
header("Location:../out/out.ViewFolder.php?folderid=".$folderid."&showtree=".$_POST["showtree"]);
|
2013-01-24 10:12:15 +00:00
|
|
|
|
|
|
|
?>
|