2012-08-28 08:48:56 +00:00
|
|
|
<?php
|
|
|
|
// MyDMS. Document Management System
|
|
|
|
// Copyright (C) 2012 Uwe Steinmann
|
|
|
|
//
|
|
|
|
// 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.DBInit.php");
|
2013-06-18 16:14:41 +00:00
|
|
|
include("../inc/inc.Language.php");
|
|
|
|
include("../inc/inc.ClassUI.php");
|
2012-08-28 08:48:56 +00:00
|
|
|
|
|
|
|
require_once("../inc/inc.Utils.php");
|
|
|
|
require_once("../inc/inc.ClassSession.php");
|
|
|
|
include("../inc/inc.ClassPasswordStrength.php");
|
|
|
|
include("../inc/inc.ClassPasswordHistoryManager.php");
|
|
|
|
|
|
|
|
/* Load session */
|
2013-01-29 13:12:12 +00:00
|
|
|
if (isset($_COOKIE["mydms_session"])) {
|
|
|
|
$dms_session = $_COOKIE["mydms_session"];
|
2013-02-14 11:10:53 +00:00
|
|
|
$session = new SeedDMS_Session($db);
|
2013-01-29 13:12:12 +00:00
|
|
|
if(!$resArr = $session->load($dms_session)) {
|
|
|
|
echo json_encode(array('error'=>1));
|
|
|
|
exit;
|
|
|
|
}
|
2012-08-28 08:48:56 +00:00
|
|
|
|
2014-05-22 04:39:54 +00:00
|
|
|
/* Update last access time */
|
|
|
|
$session->updateAccess($dms_session);
|
|
|
|
|
2013-01-29 13:12:12 +00:00
|
|
|
/* Load user data */
|
|
|
|
$user = $dms->getUser($resArr["userID"]);
|
|
|
|
if (!is_object($user)) {
|
|
|
|
echo json_encode(array('error'=>1));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
$dms->setUser($user);
|
2013-05-24 15:30:02 +00:00
|
|
|
if($user->isAdmin()) {
|
|
|
|
if($resArr["su"]) {
|
|
|
|
$user = $dms->getUser($resArr["su"]);
|
|
|
|
}
|
|
|
|
}
|
2014-03-06 10:33:31 +00:00
|
|
|
include $settings->_rootDir . "languages/" . $resArr["language"] . "/lang.inc";
|
2013-01-29 13:12:12 +00:00
|
|
|
} else {
|
|
|
|
$user = null;
|
2012-08-28 08:48:56 +00:00
|
|
|
}
|
2013-01-29 13:12:12 +00:00
|
|
|
|
2013-09-03 06:19:59 +00:00
|
|
|
$command = $_REQUEST["command"];
|
2012-08-28 08:48:56 +00:00
|
|
|
switch($command) {
|
2014-04-08 08:41:53 +00:00
|
|
|
case 'checkpwstrength': /* {{{ */
|
2012-08-28 08:48:56 +00:00
|
|
|
$ps = new Password_Strength();
|
2013-09-03 06:19:59 +00:00
|
|
|
$ps->set_password($_REQUEST["pwd"]);
|
2012-08-28 08:48:56 +00:00
|
|
|
if($settings->_passwordStrengthAlgorithm == 'simple')
|
|
|
|
$ps->simple_calculate();
|
|
|
|
else
|
|
|
|
$ps->calculate();
|
|
|
|
$score = $ps->get_score();
|
|
|
|
if($settings->_passwordStrength) {
|
2012-12-17 18:30:08 +00:00
|
|
|
if($score >= $settings->_passwordStrength) {
|
2012-12-14 07:57:03 +00:00
|
|
|
echo json_encode(array('error'=>0, 'strength'=>$score, 'score'=>$score/$settings->_passwordStrength, 'ok'=>1));
|
2012-08-28 08:48:56 +00:00
|
|
|
} else {
|
2012-12-14 07:57:03 +00:00
|
|
|
echo json_encode(array('error'=>0, 'strength'=>$score, 'score'=>$score/$settings->_passwordStrength, 'ok'=>0));
|
2012-08-28 08:48:56 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
echo json_encode(array('error'=>0, 'strength'=>$score));
|
|
|
|
}
|
2014-04-08 08:41:53 +00:00
|
|
|
break; /* }}} */
|
2012-08-28 08:48:56 +00:00
|
|
|
|
2014-03-06 10:33:31 +00:00
|
|
|
case 'sessioninfo': /* {{{ */
|
|
|
|
if($user) {
|
|
|
|
echo json_encode($resArr);
|
|
|
|
}
|
|
|
|
break; /* }}} */
|
|
|
|
|
2013-06-18 16:14:41 +00:00
|
|
|
case 'searchdocument': /* {{{ */
|
2013-01-29 13:12:12 +00:00
|
|
|
if($user) {
|
|
|
|
$query = $_GET['query'];
|
2013-01-28 10:12:07 +00:00
|
|
|
|
2013-01-29 13:12:12 +00:00
|
|
|
$hits = $dms->search($query, $limit=0, $offset=0, $logicalmode='AND', $searchin=array(), $startFolder=null, $owner=null, $status = array(), $creationstartdate=array(), $creationenddate=array(), $modificationstartdate=array(), $modificationenddate=array(), $categories=array(), $attributes=array(), $mode=0x1, $expirationstartdate=array(), $expirationenddate=array());
|
|
|
|
if($hits) {
|
|
|
|
$result = array();
|
|
|
|
foreach($hits['docs'] as $hit) {
|
|
|
|
$result[] = $hit->getID().'#'.$hit->getName();
|
|
|
|
}
|
|
|
|
header('Content-Type: application/json');
|
|
|
|
echo json_encode($result);
|
2013-01-28 10:12:07 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-18 16:14:41 +00:00
|
|
|
break; /* }}} */
|
2013-01-28 10:12:07 +00:00
|
|
|
|
2013-06-18 16:14:41 +00:00
|
|
|
case 'searchfolder': /* {{{ */
|
2013-01-29 13:12:12 +00:00
|
|
|
if($user) {
|
|
|
|
$query = $_GET['query'];
|
2013-01-28 10:12:07 +00:00
|
|
|
|
2013-01-29 13:12:12 +00:00
|
|
|
$hits = $dms->search($query, $limit=0, $offset=0, $logicalmode='AND', $searchin=array(), $startFolder=null, $owner=null, $status = array(), $creationstartdate=array(), $creationenddate=array(), $modificationstartdate=array(), $modificationenddate=array(), $categories=array(), $attributes=array(), $mode=0x2, $expirationstartdate=array(), $expirationenddate=array());
|
|
|
|
if($hits) {
|
|
|
|
$result = array();
|
|
|
|
foreach($hits['folders'] as $hit) {
|
|
|
|
$result[] = $hit->getID().'#'.$hit->getName();
|
|
|
|
}
|
|
|
|
header('Content-Type: application/json');
|
|
|
|
echo json_encode($result);
|
2013-01-28 10:12:07 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-18 16:14:41 +00:00
|
|
|
break; /* }}} */
|
2013-05-24 15:30:02 +00:00
|
|
|
|
2013-06-18 16:14:41 +00:00
|
|
|
case 'subtree': /* {{{ */
|
2014-03-06 10:33:31 +00:00
|
|
|
if($user) {
|
|
|
|
if(empty($_GET['node']))
|
|
|
|
$nodeid = $settings->_rootFolderID;
|
|
|
|
else
|
|
|
|
$nodeid = (int) $_GET['node'];
|
|
|
|
if(empty($_GET['showdocs']))
|
|
|
|
$showdocs = false;
|
|
|
|
else
|
|
|
|
$showdocs = true;
|
2014-03-14 14:10:29 +00:00
|
|
|
if(empty($_GET['orderby']))
|
|
|
|
$orderby = $settings->_sortFoldersDefault;
|
|
|
|
else
|
|
|
|
$orderby = $_GET['orderby'];
|
2013-05-24 15:30:02 +00:00
|
|
|
|
2014-03-06 10:33:31 +00:00
|
|
|
$folder = $dms->getFolder($nodeid);
|
|
|
|
if (!is_object($folder)) return '';
|
|
|
|
|
2014-03-14 14:10:29 +00:00
|
|
|
$subfolders = $folder->getSubFolders($orderby);
|
2014-03-06 10:33:31 +00:00
|
|
|
$subfolders = SeedDMS_Core_DMS::filterAccess($subfolders, $user, M_READ);
|
|
|
|
$tree = array();
|
|
|
|
foreach($subfolders as $subfolder) {
|
2014-03-24 09:39:02 +00:00
|
|
|
$loadondemand = $subfolder->hasSubFolders() || ($subfolder->hasDocuments() && $showdocs);
|
|
|
|
$level = array('label'=>$subfolder->getName(), 'id'=>$subfolder->getID(), 'load_on_demand'=>$loadondemand, 'is_folder'=>true);
|
2014-03-06 10:33:31 +00:00
|
|
|
if(!$subfolder->hasSubFolders())
|
|
|
|
$level['children'] = array();
|
2013-05-24 15:30:02 +00:00
|
|
|
$tree[] = $level;
|
|
|
|
}
|
2014-03-06 10:33:31 +00:00
|
|
|
if($showdocs) {
|
2014-03-14 14:10:29 +00:00
|
|
|
$documents = $folder->getDocuments($orderby);
|
2014-03-06 10:33:31 +00:00
|
|
|
$documents = SeedDMS_Core_DMS::filterAccess($documents, $user, M_READ);
|
|
|
|
foreach($documents as $document) {
|
|
|
|
$level = array('label'=>$document->getName(), 'id'=>$document->getID(), 'load_on_demand'=>false, 'is_folder'=>false);
|
|
|
|
$tree[] = $level;
|
|
|
|
}
|
|
|
|
}
|
2013-05-24 15:30:02 +00:00
|
|
|
|
2014-03-06 10:33:31 +00:00
|
|
|
echo json_encode($tree);
|
|
|
|
// echo json_encode(array(array('label'=>'test1', 'id'=>1, 'load_on_demand'=> true), array('label'=>'test2', 'id'=>2, 'load_on_demand'=> true)));
|
|
|
|
}
|
2013-06-18 16:14:41 +00:00
|
|
|
break; /* }}} */
|
|
|
|
|
|
|
|
case 'addtoclipboard': /* {{{ */
|
2014-03-06 10:33:31 +00:00
|
|
|
if($user) {
|
|
|
|
if (isset($_GET["id"]) && is_numeric($_GET["id"]) && isset($_GET['type'])) {
|
|
|
|
switch($_GET['type']) {
|
|
|
|
case "folder":
|
|
|
|
$session->addToClipboard($dms->getFolder($_GET['id']));
|
|
|
|
break;
|
|
|
|
case "document":
|
|
|
|
$session->addToClipboard($dms->getDocument($_GET['id']));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$view = UI::factory($theme, '', array('dms'=>$dms, 'user'=>$user));
|
|
|
|
if($view) {
|
|
|
|
$view->setParam('refferer', '');
|
|
|
|
$content = $view->menuClipboard($session->getClipboard());
|
|
|
|
header('Content-Type: application/json');
|
|
|
|
echo json_encode($content);
|
|
|
|
} else {
|
2013-06-18 16:14:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break; /* }}} */
|
2014-02-21 20:25:26 +00:00
|
|
|
|
|
|
|
case 'movefolder': /* {{{ */
|
|
|
|
if($user) {
|
2014-06-04 17:17:08 +00:00
|
|
|
if(!checkFormKey('movefolder', 'GET')) {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>false, 'message'=>getMLText('invalid_request_token'), 'data'=>''));
|
|
|
|
} else {
|
|
|
|
$mfolder = $dms->getFolder($_REQUEST['folderid']);
|
|
|
|
if($mfolder) {
|
|
|
|
if ($mfolder->getAccessMode($user) >= M_READ) {
|
|
|
|
if($folder = $dms->getFolder($_REQUEST['targetfolderid'])) {
|
|
|
|
if($folder->getAccessMode($user) >= M_READWRITE) {
|
|
|
|
if($mfolder->setParent($folder)) {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>true, 'message'=>'Folder moved', 'data'=>''));
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>false, 'message'=>'Error moving folder', 'data'=>''));
|
|
|
|
}
|
2014-02-21 20:25:26 +00:00
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
2014-06-04 17:17:08 +00:00
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No access on destination folder', 'data'=>''));
|
2014-02-21 20:25:26 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
2014-06-04 17:17:08 +00:00
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No destination folder', 'data'=>''));
|
2014-02-21 20:25:26 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
2014-06-04 17:17:08 +00:00
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No access', 'data'=>''));
|
2014-02-21 20:25:26 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
2014-06-04 17:17:08 +00:00
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No folder', 'data'=>''));
|
2014-02-21 20:25:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break; /* }}} */
|
|
|
|
|
|
|
|
case 'movedocument': /* {{{ */
|
|
|
|
if($user) {
|
2014-06-04 17:15:28 +00:00
|
|
|
if(!checkFormKey('movedocument', 'GET')) {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>false, 'message'=>getMLText('invalid_request_token'), 'data'=>''));
|
|
|
|
} else {
|
|
|
|
$mdocument = $dms->getDocument($_REQUEST['docid']);
|
|
|
|
if($mdocument) {
|
|
|
|
if ($mdocument->getAccessMode($user) >= M_READ) {
|
|
|
|
if($folder = $dms->getFolder($_REQUEST['targetfolderid'])) {
|
|
|
|
if($folder->getAccessMode($user) >= M_READWRITE) {
|
|
|
|
if($mdocument->setFolder($folder)) {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>true, 'message'=>'Document moved', 'data'=>''));
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>false, 'message'=>'Error moving folder', 'data'=>''));
|
|
|
|
}
|
2014-02-21 20:25:26 +00:00
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
2014-06-04 17:15:28 +00:00
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No access on destination folder', 'data'=>''));
|
2014-02-21 20:25:26 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
2014-06-04 17:15:28 +00:00
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No destination folder', 'data'=>''));
|
2014-02-21 20:25:26 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
2014-06-05 07:48:45 +00:00
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No access', 'data'=>''));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No folder', 'data'=>''));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break; /* }}} */
|
|
|
|
|
|
|
|
case 'deletefolder': /* {{{ */
|
|
|
|
if($user) {
|
|
|
|
if(!checkFormKey('removefolder', 'GET')) {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>false, 'message'=>getMLText('invalid_request_token'), 'data'=>''));
|
|
|
|
} else {
|
|
|
|
$folder = $dms->getFolder($_REQUEST['id']);
|
|
|
|
if($folder) {
|
|
|
|
if ($folder->getAccessMode($user) >= M_READWRITE) {
|
|
|
|
if($folder->remove()) {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>true, 'message'=>'', 'data'=>''.$_REQUEST['formtoken']));
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>false, 'message'=>'Error removing folder', 'data'=>''));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
2014-06-04 17:15:28 +00:00
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No access', 'data'=>''));
|
2014-02-21 20:25:26 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
2014-06-04 17:15:28 +00:00
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No folder', 'data'=>''));
|
2014-02-21 20:25:26 +00:00
|
|
|
}
|
2014-06-04 17:15:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break; /* }}} */
|
|
|
|
|
|
|
|
case 'deletedocument': /* {{{ */
|
|
|
|
if($user) {
|
|
|
|
if(!checkFormKey('removedocument', 'GET')) {
|
2014-02-21 20:25:26 +00:00
|
|
|
header('Content-Type', 'application/json');
|
2014-06-04 17:15:28 +00:00
|
|
|
echo json_encode(array('success'=>false, 'message'=>getMLText('invalid_request_token'), 'data'=>''));
|
|
|
|
} else {
|
|
|
|
$document = $dms->getDocument($_REQUEST['id']);
|
|
|
|
if($document) {
|
|
|
|
if ($document->getAccessMode($user) >= M_READWRITE) {
|
|
|
|
if($document->remove()) {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>true, 'message'=>'', 'data'=>''.$_REQUEST['formtoken']));
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>false, 'message'=>'Error removing document', 'data'=>''));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No access', 'data'=>''));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>false, 'message'=>'No document', 'data'=>''));
|
|
|
|
}
|
2014-02-21 20:25:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break; /* }}} */
|
|
|
|
|
2014-04-08 08:41:53 +00:00
|
|
|
case 'submittranslation': /* {{{ */
|
2014-04-08 08:43:59 +00:00
|
|
|
if($settings->_showMissingTranslations) {
|
|
|
|
if($user && !empty($_POST['phrase'])) {
|
|
|
|
if($fp = fopen('/tmp/newtranslations.txt', 'a+')) {
|
|
|
|
fputcsv($fp, array(date('Y-m-d H:i:s'), $user->getLogin(), $_POST['key'], $_POST['lang'], $_POST['phrase']));
|
|
|
|
fclose($fp);
|
|
|
|
}
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>true, 'message'=>'Thank you for your contribution', 'data'=>''));
|
|
|
|
} else {
|
|
|
|
header('Content-Type', 'application/json');
|
|
|
|
echo json_encode(array('success'=>false, 'message'=>'Missing translation', 'data'=>''));
|
2014-04-08 08:41:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break; /* }}} */
|
|
|
|
|
2012-08-28 08:48:56 +00:00
|
|
|
}
|
|
|
|
?>
|