2010-10-29 13:19:51 +00:00
|
|
|
|
<?php
|
|
|
|
|
// MyDMS. Document Management System
|
|
|
|
|
// Copyright (C) 2002-2005 Markus Westphal
|
|
|
|
|
// Copyright (C) 2006-2008 Malcolm Cowe
|
|
|
|
|
// Copyright (C) 2010 Matteo Lucarelli
|
|
|
|
|
//
|
|
|
|
|
// 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");
|
2011-05-16 15:44:59 +00:00
|
|
|
|
include("../inc/inc.LogInit.php");
|
2010-10-29 13:19:51 +00:00
|
|
|
|
include("../inc/inc.Utils.php");
|
|
|
|
|
include("../inc/inc.DBInit.php");
|
|
|
|
|
include("../inc/inc.Language.php");
|
|
|
|
|
include("../inc/inc.ClassUI.php");
|
|
|
|
|
include("../inc/inc.Authentication.php");
|
|
|
|
|
|
|
|
|
|
if (!$user->isAdmin()) {
|
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("access_denied"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isset($_POST["action"])) $action=$_POST["action"];
|
|
|
|
|
else if (isset($_GET["action"])) $action=$_GET["action"];
|
|
|
|
|
else $action=NULL;
|
|
|
|
|
|
|
|
|
|
//Neuen Benutzer anlegen --------------------------------------------------------------------------
|
|
|
|
|
if ($action == "adduser") {
|
|
|
|
|
|
2011-12-02 18:44:42 +00:00
|
|
|
|
$login = $_POST["login"];
|
|
|
|
|
$name = $_POST["name"];
|
|
|
|
|
$email = $_POST["email"];
|
|
|
|
|
$comment = $_POST["comment"];
|
2011-12-01 21:32:37 +00:00
|
|
|
|
$role = preg_replace('/[^0-2]+/', '', $_POST["role"]);
|
2010-10-29 13:19:51 +00:00
|
|
|
|
$isHidden = (isset($_POST["ishidden"]) && $_POST["ishidden"]==1 ? 1 : 0);
|
|
|
|
|
|
2010-11-15 12:01:21 +00:00
|
|
|
|
if (is_object($dms->getUserByLogin($login))) {
|
2010-10-29 13:19:51 +00:00
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("user_exists"));
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-05 20:29:33 +00:00
|
|
|
|
$newUser = $dms->addUser($login, md5($_POST["pwd"]), $name, $email, $settings->_language, $settings->_theme, $comment, $role, $isHidden);
|
2010-10-29 13:19:51 +00:00
|
|
|
|
if ($newUser) {
|
|
|
|
|
|
|
|
|
|
if (isset($_FILES["userfile"]) && is_uploaded_file($_FILES["userfile"]["tmp_name"]) && $_FILES["userfile"]["size"] > 0 && $_FILES['userfile']['error']==0)
|
|
|
|
|
{
|
|
|
|
|
$userfiletype = sanitizeString($_FILES["userfile"]["type"]);
|
|
|
|
|
$userfilename = sanitizeString($_FILES["userfile"]["name"]);
|
|
|
|
|
$lastDotIndex = strrpos(basename($userfilename), ".");
|
|
|
|
|
$fileType = substr($userfilename, $lastDotIndex);
|
|
|
|
|
if ($fileType != ".jpg" && $filetype != ".jpeg")
|
|
|
|
|
{
|
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("only_jpg_user_images"));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
resizeImage($_FILES["userfile"]["tmp_name"]);
|
|
|
|
|
$newUser->setImage($_FILES["userfile"]["tmp_name"], $userfiletype);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else UI::exitError(getMLText("admin_tools"),getMLText("access_denied"));
|
|
|
|
|
|
|
|
|
|
if (isset($_POST["usrReviewers"])){
|
|
|
|
|
foreach ($_POST["usrReviewers"] as $revID)
|
|
|
|
|
$newUser->setMandatoryReviewer($revID,false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isset($_POST["grpReviewers"])){
|
|
|
|
|
foreach ($_POST["grpReviewers"] as $revID)
|
|
|
|
|
$newUser->setMandatoryReviewer($revID,true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isset($_POST["usrApprovers"])){
|
|
|
|
|
foreach ($_POST["usrApprovers"] as $appID)
|
|
|
|
|
$newUser->setMandatoryApprover($appID,false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isset($_POST["grpApprovers"])){
|
|
|
|
|
foreach ($_POST["grpApprovers"] as $appID)
|
|
|
|
|
$newUser->setMandatoryApprover($appID,true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$userid=$newUser->getID();
|
|
|
|
|
|
|
|
|
|
add_log_line(".php&action=adduser&login=".$login);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Benutzer l<>schen --------------------------------------------------------------------------------
|
|
|
|
|
else if ($action == "removeuser") {
|
|
|
|
|
|
|
|
|
|
if (isset($_POST["userid"])) {
|
|
|
|
|
$userid = $_POST["userid"];
|
|
|
|
|
}
|
|
|
|
|
else if (isset($_GET["userid"])) {
|
|
|
|
|
$userid = $_GET["userid"];
|
|
|
|
|
}
|
2010-12-10 13:38:03 +00:00
|
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
|
if (!isset($userid) || !is_numeric($userid) || intval($userid)<1) {
|
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("invalid_user_id"));
|
2010-12-10 13:38:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This used to be a check if an admin is deleted. Now it checks if one
|
|
|
|
|
* wants to delete herself.
|
|
|
|
|
*/
|
|
|
|
|
if ($userid==$user->getID()) {
|
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("cannot_delete_yourself"));
|
2010-10-29 13:19:51 +00:00
|
|
|
|
}
|
2010-12-10 13:38:03 +00:00
|
|
|
|
|
2010-11-15 12:01:21 +00:00
|
|
|
|
$userToRemove = $dms->getUser($userid);
|
2010-12-10 13:38:03 +00:00
|
|
|
|
if (!is_object($userToRemove)) {
|
2010-10-29 13:19:51 +00:00
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("invalid_user_id"));
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-22 20:42:19 +00:00
|
|
|
|
$userToAssign = $dms->getUser($_POST["assignTo"]);
|
2010-12-22 19:47:08 +00:00
|
|
|
|
if (!$userToRemove->remove($user, $userToAssign)) {
|
2010-10-29 13:19:51 +00:00
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("error_occured"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
add_log_line(".php&action=removeuser&userid=".$userid);
|
|
|
|
|
|
|
|
|
|
$userid=-1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Benutzer bearbeiten -----------------------------------------------------------------------------
|
|
|
|
|
else if ($action == "edituser") {
|
|
|
|
|
|
|
|
|
|
if (!isset($_POST["userid"]) || !is_numeric($_POST["userid"]) || intval($_POST["userid"])<1) {
|
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("invalid_user_id"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$userid=$_POST["userid"];
|
2010-11-15 12:01:21 +00:00
|
|
|
|
$editedUser = $dms->getUser($userid);
|
2010-10-29 13:19:51 +00:00
|
|
|
|
|
|
|
|
|
if (!is_object($editedUser)) {
|
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("invalid_user_id"));
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-06 12:23:29 +00:00
|
|
|
|
$login = $_POST["login"];
|
2010-10-29 13:19:51 +00:00
|
|
|
|
$pwd = $_POST["pwd"];
|
2011-12-02 18:44:42 +00:00
|
|
|
|
$name = $_POST["name"];
|
|
|
|
|
$email = $_POST["email"];
|
|
|
|
|
$comment = $_POST["comment"];
|
2011-12-01 21:32:37 +00:00
|
|
|
|
$role = preg_replace('/[^0-2]+/', '', $_POST["role"]);
|
2010-10-29 13:19:51 +00:00
|
|
|
|
$isHidden = (isset($_POST["ishidden"]) && $_POST["ishidden"]==1 ? 1 : 0);
|
|
|
|
|
|
|
|
|
|
if ($editedUser->getLogin() != $login)
|
|
|
|
|
$editedUser->setLogin($login);
|
|
|
|
|
if (isset($pwd) && ($pwd != ""))
|
|
|
|
|
$editedUser->setPwd(md5($pwd));
|
|
|
|
|
if ($editedUser->getFullName() != $name)
|
|
|
|
|
$editedUser->setFullName($name);
|
|
|
|
|
if ($editedUser->getEmail() != $email)
|
|
|
|
|
$editedUser->setEmail($email);
|
|
|
|
|
if ($editedUser->getComment() != $comment)
|
|
|
|
|
$editedUser->setComment($comment);
|
2010-12-05 20:29:33 +00:00
|
|
|
|
if ($editedUser->getRole() != $role)
|
|
|
|
|
$editedUser->setRole($role);
|
2010-10-29 13:19:51 +00:00
|
|
|
|
if ($editedUser->isHidden() != $isHidden)
|
|
|
|
|
$editedUser->setHidden($isHidden);
|
|
|
|
|
|
|
|
|
|
if (isset($_FILES['userfile']) && is_uploaded_file($_FILES["userfile"]["tmp_name"]) && $_FILES["userfile"]["size"] > 0 && $_FILES['userfile']['error']==0)
|
|
|
|
|
{
|
|
|
|
|
$userfiletype = sanitizeString($_FILES["userfile"]["type"]);
|
|
|
|
|
$userfilename = sanitizeString($_FILES["userfile"]["name"]);
|
|
|
|
|
$lastDotIndex = strrpos(basename($userfilename), ".");
|
|
|
|
|
$fileType = substr($userfilename, $lastDotIndex);
|
|
|
|
|
if ($fileType != ".jpg" && $filetype != ".jpeg") {
|
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("only_jpg_user_images"));
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
resizeImage($_FILES["userfile"]["tmp_name"]);
|
|
|
|
|
$editedUser->setImage($_FILES["userfile"]["tmp_name"], $userfiletype);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$editedUser->delMandatoryReviewers();
|
|
|
|
|
|
|
|
|
|
if (isset($_POST["usrReviewers"])) foreach ($_POST["usrReviewers"] as $revID)
|
|
|
|
|
$editedUser->setMandatoryReviewer($revID,false);
|
|
|
|
|
|
|
|
|
|
if (isset($_POST["grpReviewers"])) foreach ($_POST["grpReviewers"] as $revID)
|
|
|
|
|
$editedUser->setMandatoryReviewer($revID,true);
|
|
|
|
|
|
|
|
|
|
$editedUser->delMandatoryApprovers();
|
|
|
|
|
|
|
|
|
|
if (isset($_POST["usrApprovers"])) foreach ($_POST["usrApprovers"] as $appID)
|
|
|
|
|
$editedUser->setMandatoryApprover($appID,false);
|
|
|
|
|
|
|
|
|
|
if (isset($_POST["grpApprovers"])) foreach ($_POST["grpApprovers"] as $appID)
|
|
|
|
|
$editedUser->setMandatoryApprover($appID,true);
|
|
|
|
|
|
|
|
|
|
add_log_line(".php&action=edituser&userid=".$userid);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else UI::exitError(getMLText("admin_tools"),getMLText("unknown_command"));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function resizeImage($imageFile) {
|
|
|
|
|
|
|
|
|
|
// Not perfect. Creates a new image even if the old one is acceptable,
|
|
|
|
|
// and the output quality is low. Now uses the function imagecreatetruecolor(),
|
|
|
|
|
// though, so at least the pictures are in colour.
|
|
|
|
|
|
|
|
|
|
// Originalbild einlesen
|
|
|
|
|
$origImg = imagecreatefromjpeg($imageFile);
|
|
|
|
|
$width = imagesx($origImg);
|
|
|
|
|
$height = imagesy($origImg);
|
|
|
|
|
// Thumbnail im Speicher erzeugen
|
|
|
|
|
$newHeight = 150;
|
|
|
|
|
$newWidth = ($width/$height) * $newHeight;
|
|
|
|
|
$newImg = imagecreatetruecolor($newWidth, $newHeight);
|
|
|
|
|
// Verkleinern
|
|
|
|
|
imagecopyresized($newImg, $origImg, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height);
|
|
|
|
|
// In File speichern
|
|
|
|
|
imagejpeg($newImg, $imageFile);
|
|
|
|
|
// Aufr<66>umen
|
|
|
|
|
imagedestroy($origImg);
|
|
|
|
|
imagedestroy($newImg);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
header("Location:../out/out.UsrMgr.php?userid=".$userid);
|
|
|
|
|
|
|
|
|
|
?>
|