2011-02-09 07:03:00 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
2023-01-21 12:31:25 +00:00
|
|
|
|
require_once "vendor/seeddms/http_webdav_server/HTTP/WebDAV/Server.php";
|
2011-02-09 07:03:00 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2013-02-14 11:10:53 +00:00
|
|
|
|
* SeedDMS access using WebDAV
|
2011-02-09 07:03:00 +00:00
|
|
|
|
*
|
|
|
|
|
* @access public
|
|
|
|
|
* @author Uwe Steinmann <steinm@php.net>
|
|
|
|
|
* @version @package-version@
|
|
|
|
|
*/
|
2013-02-14 11:10:53 +00:00
|
|
|
|
class HTTP_WebDAV_Server_SeedDMS extends HTTP_WebDAV_Server
|
2011-02-09 07:03:00 +00:00
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* A reference of the DMS itself
|
|
|
|
|
*
|
|
|
|
|
* This is set by ServeRequest
|
|
|
|
|
*
|
|
|
|
|
* @access private
|
|
|
|
|
* @var object
|
|
|
|
|
*/
|
|
|
|
|
var $dms = null;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A reference to a logger
|
|
|
|
|
*
|
|
|
|
|
* This is set by ServeRequest
|
|
|
|
|
*
|
|
|
|
|
* @access private
|
|
|
|
|
* @var object
|
|
|
|
|
*/
|
|
|
|
|
var $logger = null;
|
|
|
|
|
|
2019-08-22 05:47:04 +00:00
|
|
|
|
/**
|
2022-11-29 09:44:19 +00:00
|
|
|
|
* A reference to a notification service
|
2019-08-22 05:47:04 +00:00
|
|
|
|
*
|
|
|
|
|
* This is set by ServeRequest
|
|
|
|
|
*
|
|
|
|
|
* @access private
|
|
|
|
|
* @var object
|
|
|
|
|
*/
|
|
|
|
|
var $notifier = null;
|
|
|
|
|
|
2022-11-29 09:44:19 +00:00
|
|
|
|
/**
|
|
|
|
|
* A reference to the authentication service
|
|
|
|
|
*
|
|
|
|
|
* This is set by ServeRequest
|
|
|
|
|
*
|
|
|
|
|
* @access private
|
|
|
|
|
* @var object
|
|
|
|
|
*/
|
|
|
|
|
var $authenticator = null;
|
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* Currently logged in user
|
|
|
|
|
*
|
|
|
|
|
* @access private
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
var $user = "";
|
|
|
|
|
|
2017-08-28 11:46:16 +00:00
|
|
|
|
/**
|
|
|
|
|
* Set to true if original file shall be used instead of document name
|
2020-06-24 14:22:28 +00:00
|
|
|
|
* This can lead to duplicate file names in a directory because the original
|
|
|
|
|
* file name is not unique. You can enforce uniqueness by setting $prefixorgfilename
|
|
|
|
|
* to true which will add the document id and version in front of the original
|
|
|
|
|
* filename.
|
2017-08-28 11:46:16 +00:00
|
|
|
|
*
|
|
|
|
|
* @access private
|
|
|
|
|
* @var boolean
|
|
|
|
|
*/
|
|
|
|
|
var $useorgfilename = false;
|
|
|
|
|
|
2020-06-24 14:22:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* Set to true if original file is used and you want to prefix each filename
|
|
|
|
|
* by its document id and version, e.g. 12345-1-somefile.pdf
|
|
|
|
|
* This is option is only used fi $useorgfilename is set to true.
|
|
|
|
|
*
|
|
|
|
|
* @access private
|
|
|
|
|
* @var boolean
|
|
|
|
|
*/
|
|
|
|
|
var $prefixorgfilename = true;
|
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* Serve a webdav request
|
|
|
|
|
*
|
|
|
|
|
* @access public
|
|
|
|
|
* @param object $dms reference to DMS
|
|
|
|
|
*/
|
2022-11-29 09:44:19 +00:00
|
|
|
|
function ServeRequest($dms = null, $settings = null, $logger = null, $notifier = null, $authenticator = null) /* {{{ */
|
2011-02-09 07:03:00 +00:00
|
|
|
|
{
|
|
|
|
|
// set root directory, defaults to webserver document root if not set
|
|
|
|
|
if ($dms) {
|
|
|
|
|
$this->dms = $dms;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-29 09:44:19 +00:00
|
|
|
|
// set settings
|
|
|
|
|
if ($settings) {
|
|
|
|
|
$this->settings = $settings;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
// set logger
|
|
|
|
|
$this->logger = $logger;
|
|
|
|
|
|
2022-11-29 09:44:19 +00:00
|
|
|
|
// set notification service
|
2019-08-22 05:47:04 +00:00
|
|
|
|
$this->notifier = $notifier;
|
|
|
|
|
|
2022-11-29 09:44:19 +00:00
|
|
|
|
// set authentication service
|
|
|
|
|
$this->authenticator = $authenticator;
|
|
|
|
|
|
2018-03-22 14:12:53 +00:00
|
|
|
|
// special treatment for litmus compliance test
|
|
|
|
|
// reply on its identifier header
|
|
|
|
|
// not needed for the test itself but eases debugging
|
|
|
|
|
if( function_exists('apache_request_headers') ) {
|
|
|
|
|
foreach (apache_request_headers() as $key => $value) {
|
|
|
|
|
if (stristr($key, "litmus")) {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('Litmus test '.$value, PEAR_LOG_DEBUG);
|
|
|
|
|
header("X-Litmus-reply: ".$value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
|
|
|
|
|
// let the base class do all the work
|
|
|
|
|
parent::ServeRequest();
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Log array of options as passed to most functions
|
|
|
|
|
*
|
|
|
|
|
* @access private
|
|
|
|
|
* @param string webdav methode that was called
|
|
|
|
|
* @param array options
|
|
|
|
|
*/
|
|
|
|
|
function log_options($methode, $options) { /* {{{ */
|
|
|
|
|
if($this->logger) {
|
2018-04-12 09:32:10 +00:00
|
|
|
|
switch($methode) {
|
|
|
|
|
case 'MOVE':
|
2019-08-22 05:47:04 +00:00
|
|
|
|
case 'COPY':
|
2018-04-12 09:32:10 +00:00
|
|
|
|
$msg = $methode.': '.$options['path'].' -> '.$options['dest'];
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
$msg = $methode.': '.$options['path'];
|
|
|
|
|
}
|
|
|
|
|
$this->logger->log($msg, PEAR_LOG_INFO);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
foreach($options as $key=>$option) {
|
|
|
|
|
if(is_array($option)) {
|
|
|
|
|
$this->logger->log($methode.': '.$key.'='.var_export($option, true), PEAR_LOG_DEBUG);
|
|
|
|
|
} else {
|
|
|
|
|
$this->logger->log($methode.': '.$key.'='.$option, PEAR_LOG_DEBUG);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* No authentication is needed here
|
|
|
|
|
*
|
|
|
|
|
* @access private
|
|
|
|
|
* @param string HTTP Authentication type (Basic, Digest, ...)
|
|
|
|
|
* @param string Username
|
|
|
|
|
* @param string Password
|
|
|
|
|
* @return bool true on successful authentication
|
|
|
|
|
*/
|
|
|
|
|
function check_auth($type, $user, $pass) /* {{{ */
|
|
|
|
|
{
|
|
|
|
|
if($this->logger)
|
2011-10-27 07:57:31 +00:00
|
|
|
|
$this->logger->log('check_auth: type='.$type.', user='.$user.'', PEAR_LOG_INFO);
|
2016-09-06 19:40:09 +00:00
|
|
|
|
|
2022-11-24 11:40:25 +00:00
|
|
|
|
$controller = Controller::factory('Login', array('dms'=>$this->dms));
|
2022-11-29 09:44:19 +00:00
|
|
|
|
$controller->setParam('authenticator', $this->authenticator);
|
2024-01-10 19:37:49 +00:00
|
|
|
|
$controller->setParam('action', 'run');
|
2022-11-24 11:40:25 +00:00
|
|
|
|
$controller->setParam('login', $user);
|
|
|
|
|
$controller->setParam('pwd', $pass);
|
2023-05-11 14:58:08 +00:00
|
|
|
|
$controller->setParam('lang', $this->settings->_language);
|
|
|
|
|
$controller->setParam('sesstheme', $this->settings->_theme);
|
2022-11-24 11:40:25 +00:00
|
|
|
|
$controller->setParam('source', 'webdav');
|
|
|
|
|
if(!$controller()) {
|
|
|
|
|
if($this->logger) {
|
|
|
|
|
$this->logger->log($controller->getErrorMsg(), PEAR_LOG_NOTICE);
|
|
|
|
|
$this->logger->log('check_auth: error authenicating user '.$user, PEAR_LOG_NOTICE);
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('check_auth: type='.$type.', user='.$user.' authenticated', PEAR_LOG_INFO);
|
|
|
|
|
|
|
|
|
|
$this->user = $controller->getUser();
|
2024-01-10 19:37:49 +00:00
|
|
|
|
if(!$this->user) {
|
|
|
|
|
if($this->logger) {
|
|
|
|
|
$this->logger->log($controller->getErrorMsg(), PEAR_LOG_NOTICE);
|
|
|
|
|
$this->logger->log('check_auth: error authenicating user '.$user, PEAR_LOG_NOTICE);
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2022-11-24 11:40:25 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
2011-02-09 07:03:00 +00:00
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the object id from its path
|
|
|
|
|
*
|
|
|
|
|
* @access private
|
|
|
|
|
* @param string path
|
|
|
|
|
* @return bool/object object with given path or false on error
|
|
|
|
|
*/
|
|
|
|
|
function reverseLookup($path) /* {{{ */
|
|
|
|
|
{
|
2022-10-25 11:16:59 +00:00
|
|
|
|
// do not use rawurl[de|en]code anymore, search for rawurlencode
|
|
|
|
|
// $path = rawurldecode($path);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('reverseLookup: path='.$path.'', PEAR_LOG_DEBUG);
|
|
|
|
|
|
|
|
|
|
$root = $this->dms->getRootFolder();
|
|
|
|
|
if($path[0] == '/') {
|
|
|
|
|
$path = substr($path, 1);
|
|
|
|
|
}
|
|
|
|
|
$patharr = explode('/', $path);
|
|
|
|
|
/* The last entry is always the document, though if the path ends
|
|
|
|
|
* in '/', the document name will be empty.
|
|
|
|
|
*/
|
|
|
|
|
$docname = array_pop($patharr);
|
|
|
|
|
$parentfolder = $root;
|
|
|
|
|
|
|
|
|
|
if(!$patharr) {
|
|
|
|
|
if(!$docname) {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('reverseLookup: found folder '.$root->getName().' ('.$root->getID().')', PEAR_LOG_DEBUG);
|
|
|
|
|
return $root;
|
|
|
|
|
} else {
|
2020-06-24 14:22:28 +00:00
|
|
|
|
if($this->useorgfilename) {
|
|
|
|
|
if($this->prefixorgfilename) {
|
|
|
|
|
$tmp = explode('-', $docname, 3);
|
|
|
|
|
if(ctype_digit($tmp[0])) {
|
|
|
|
|
$document = $this->dms->getDocument((int) $tmp[0]);
|
|
|
|
|
} else {
|
|
|
|
|
$document = null;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$document = $this->dms->getDocumentByOriginalFilename($docname, $root);
|
|
|
|
|
}
|
|
|
|
|
} else
|
2017-08-28 11:46:16 +00:00
|
|
|
|
$document = $this->dms->getDocumentByName($docname, $root);
|
|
|
|
|
if($document) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('reverseLookup: found document '.$document->getName().' ('.$document->getID().')', PEAR_LOG_DEBUG);
|
|
|
|
|
return $document;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach($patharr as $pathseg) {
|
|
|
|
|
if($folder = $this->dms->getFolderByName($pathseg, $parentfolder)) {
|
|
|
|
|
$parentfolder = $folder;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if($folder) {
|
|
|
|
|
if($docname) {
|
2020-06-24 14:22:28 +00:00
|
|
|
|
if($this->useorgfilename) {
|
|
|
|
|
if($this->prefixorgfilename) {
|
|
|
|
|
$tmp = explode('-', $docname, 3);
|
|
|
|
|
if(ctype_digit($tmp[0])) {
|
|
|
|
|
$document = $this->dms->getDocument((int) $tmp[0]);
|
|
|
|
|
} else {
|
|
|
|
|
$document = null;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$document = $this->dms->getDocumentByOriginalFilename($docname, $folder);
|
|
|
|
|
}
|
|
|
|
|
} else
|
2017-08-28 11:46:16 +00:00
|
|
|
|
$document = $this->dms->getDocumentByName($docname, $folder);
|
|
|
|
|
if($document) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('reverseLookup: found document '.$document->getName().' ('.$document->getID().')', PEAR_LOG_DEBUG);
|
|
|
|
|
return $document;
|
|
|
|
|
} else {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('reverseLookup: nothing found', PEAR_LOG_DEBUG);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('reverseLookup: found folder '.$folder->getName().' ('.$folder->getID().')', PEAR_LOG_DEBUG);
|
|
|
|
|
return $folder;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('reverseLookup: nothing found', PEAR_LOG_DEBUG);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('reverseLookup: nothing found', PEAR_LOG_DEBUG);
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* PROPFIND method handler
|
|
|
|
|
*
|
|
|
|
|
* @param array general parameter passing array
|
|
|
|
|
* @param array return array for file properties
|
|
|
|
|
* @return bool true on success
|
|
|
|
|
*/
|
|
|
|
|
function PROPFIND(&$options, &$files) /* {{{ */
|
|
|
|
|
{
|
|
|
|
|
$this->log_options('PROFIND', $options);
|
|
|
|
|
|
|
|
|
|
// get folder or document from path
|
|
|
|
|
$obj = $this->reverseLookup($options["path"]);
|
|
|
|
|
|
|
|
|
|
// sanity check
|
|
|
|
|
if (!$obj) {
|
|
|
|
|
$obj = $this->reverseLookup($options["path"].'/');
|
|
|
|
|
if(!$obj)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// prepare property array
|
|
|
|
|
$files["files"] = array();
|
|
|
|
|
|
|
|
|
|
// store information for the requested path itself
|
|
|
|
|
$files["files"][] = $this->fileinfo($obj);
|
|
|
|
|
|
|
|
|
|
// information for contained resources requested?
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if (get_class($obj) == $this->dms->getClassname('folder') && !empty($options["depth"])) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
|
|
|
|
|
$subfolders = $obj->getSubFolders();
|
2013-02-14 11:10:53 +00:00
|
|
|
|
$subfolders = SeedDMS_Core_DMS::filterAccess($subfolders, $this->user, M_READ);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if ($subfolders) {
|
|
|
|
|
// ok, now get all its contents
|
|
|
|
|
foreach($subfolders as $subfolder) {
|
|
|
|
|
$files["files"][] = $this->fileinfo($subfolder);
|
|
|
|
|
}
|
|
|
|
|
// TODO recursion needed if "Depth: infinite"
|
|
|
|
|
}
|
|
|
|
|
$documents = $obj->getDocuments();
|
2013-09-06 06:00:18 +00:00
|
|
|
|
$docs = SeedDMS_Core_DMS::filterAccess($documents, $this->user, M_READ);
|
|
|
|
|
if(!$this->user->isAdmin()) {
|
|
|
|
|
$documents = array();
|
|
|
|
|
foreach($docs as $document) {
|
|
|
|
|
$lc = $document->getLatestContent();
|
|
|
|
|
$status = $lc->getStatus();
|
|
|
|
|
if($status['status'] == S_RELEASED) {
|
|
|
|
|
$documents[] = $document;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$documents = $docs;
|
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if ($documents) {
|
|
|
|
|
// ok, now get all its contents
|
|
|
|
|
foreach($documents as $document) {
|
|
|
|
|
$files["files"][] = $this->fileinfo($document);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ok, all done
|
|
|
|
|
return true;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get properties for a single file/resource
|
|
|
|
|
*
|
|
|
|
|
* @param string resource path
|
|
|
|
|
* @return array resource properties
|
|
|
|
|
*/
|
|
|
|
|
function fileinfo($obj) /* {{{ */
|
|
|
|
|
{
|
|
|
|
|
// create result array
|
|
|
|
|
$info = array();
|
|
|
|
|
$info["props"] = array();
|
|
|
|
|
|
|
|
|
|
// type and size (caller already made sure that path exists)
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if (get_class($obj) == $this->dms->getClassname('folder')) {
|
2014-11-24 12:11:29 +00:00
|
|
|
|
// modification time
|
2011-02-09 07:03:00 +00:00
|
|
|
|
/* folders do not have a modification time */
|
2018-09-17 11:47:40 +00:00
|
|
|
|
$info["props"][] = $this->mkprop("getlastmodified", $obj->getDate());
|
|
|
|
|
$info["props"][] = $this->mkprop("creationdate", $obj->getDate());
|
2011-02-09 07:03:00 +00:00
|
|
|
|
|
|
|
|
|
// directory (WebDAV collection)
|
|
|
|
|
$patharr = $obj->getPath();
|
|
|
|
|
array_shift($patharr);
|
|
|
|
|
$path = '';
|
|
|
|
|
foreach($patharr as $pathseg)
|
2022-10-25 11:16:59 +00:00
|
|
|
|
// $path .= '/'.rawurlencode($pathseg->getName());
|
|
|
|
|
$path .= '/'.$pathseg->getName();
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if(!$path) {
|
|
|
|
|
$path = '/';
|
|
|
|
|
$info["props"][] = $this->mkprop("isroot", "true");
|
|
|
|
|
}
|
2011-12-08 18:30:49 +00:00
|
|
|
|
// $info["path"] = htmlspecialchars($path);
|
|
|
|
|
$info["path"] = $path;
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$info["props"][] = $this->mkprop("displayname", $obj->getName());
|
|
|
|
|
$info["props"][] = $this->mkprop("resourcetype", "collection");
|
|
|
|
|
$info["props"][] = $this->mkprop("getcontenttype", "httpd/unix-directory");
|
|
|
|
|
} else {
|
2014-11-24 12:11:29 +00:00
|
|
|
|
// modification time
|
|
|
|
|
$info["props"][] = $this->mkprop("getlastmodified",$obj->getLatestContent()->getDate());
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$info["props"][] = $this->mkprop("creationdate", $obj->getDate());
|
|
|
|
|
|
|
|
|
|
// plain file (WebDAV resource)
|
|
|
|
|
$content = $obj->getLatestContent();
|
|
|
|
|
$fspath = $content->getPath();
|
|
|
|
|
$patharr = $obj->getFolder()->getPath();
|
|
|
|
|
array_shift($patharr);
|
|
|
|
|
$path = '/';
|
|
|
|
|
foreach($patharr as $pathseg)
|
2022-10-25 11:16:59 +00:00
|
|
|
|
// $path .= rawurlencode($pathseg->getName()).'/';
|
|
|
|
|
$path .= $pathseg->getName().'/';
|
2017-08-28 11:46:16 +00:00
|
|
|
|
if($this->useorgfilename) {
|
2020-06-28 17:38:17 +00:00
|
|
|
|
/* Add the document id and version to the display name.
|
|
|
|
|
* I doesn't harm because for
|
|
|
|
|
* accessing the document the full path is used by the browser
|
|
|
|
|
*/
|
|
|
|
|
if($this->prefixorgfilename) {
|
|
|
|
|
$info["path"] = $path.$obj->getID()."-".$content->getVersion()."-".$content->getOriginalFileName();
|
|
|
|
|
$info["props"][] = $obj->getID()."-".$content->getVersion()."-".$content->getOriginalFileName();
|
|
|
|
|
} else {
|
|
|
|
|
$info["path"] = $path.$content->getOriginalFileName();
|
|
|
|
|
$info["props"][] = $this->mkprop("displayname", $content->getOriginalFileName());
|
|
|
|
|
}
|
2017-08-28 11:46:16 +00:00
|
|
|
|
} else {
|
|
|
|
|
$info["path"] = $path.$obj->getName();
|
|
|
|
|
$info["props"][] = $this->mkprop("displayname", $obj->getName());
|
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
|
|
|
|
|
$info["props"][] = $this->mkprop("resourcetype", "");
|
|
|
|
|
if (1 /*is_readable($fspath)*/) {
|
|
|
|
|
$info["props"][] = $this->mkprop("getcontenttype", $content->getMimeType());
|
|
|
|
|
} else {
|
|
|
|
|
$info["props"][] = $this->mkprop("getcontenttype", "application/x-non-readable");
|
2021-02-23 19:37:14 +00:00
|
|
|
|
}
|
|
|
|
|
if(file_exists($this->dms->contentDir.'/'.$fspath))
|
|
|
|
|
$info["props"][] = $this->mkprop("getcontentlength", filesize($this->dms->contentDir.'/'.$fspath));
|
|
|
|
|
else
|
|
|
|
|
$info["props"][] = $this->mkprop("getcontentlength", 0);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if($keywords = $obj->getKeywords())
|
2013-02-14 11:10:53 +00:00
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", "keywords", $keywords);
|
2016-01-29 15:47:21 +00:00
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", "id", $obj->getID());
|
2013-02-14 11:10:53 +00:00
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", "version", $content->getVersion());
|
2022-11-29 09:44:19 +00:00
|
|
|
|
if($content->getComment())
|
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", "version-comment", $content->getComment());
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$status = $content->getStatus();
|
2013-02-14 11:10:53 +00:00
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", "status", $status['status']);
|
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", "status-comment", $status['comment']);
|
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", "status-date", $status['date']);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if($obj->getExpires())
|
2013-02-14 11:10:53 +00:00
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", "expires", date('c', $obj->getExpires()));
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
|
|
|
|
if($comment = $obj->getComment())
|
2013-02-14 11:10:53 +00:00
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", "comment", $comment);
|
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", "owner", $obj->getOwner()->getLogin());
|
2011-02-09 07:03:00 +00:00
|
|
|
|
|
2016-01-29 15:47:21 +00:00
|
|
|
|
$attributes = $obj->getAttributes();
|
|
|
|
|
if($attributes) {
|
|
|
|
|
foreach($attributes as $attribute) {
|
|
|
|
|
$attrdef = $attribute->getAttributeDefinition();
|
|
|
|
|
$valueset = $attrdef->getValueSetAsArray();
|
|
|
|
|
if($valueset && $attrdef->getMultipleValues()) {
|
|
|
|
|
$valuesetstr = $attrdef->getValueSet();
|
|
|
|
|
$delimiter = substr($valuesetstr, 0, 1);
|
2020-08-24 10:56:36 +00:00
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", 'attr_'.str_replace(array(' ', '|'), array('', ''), $attrdef->getName()), $delimiter.implode($delimiter, $attribute->getValueAsArray()));
|
2016-01-29 15:47:21 +00:00
|
|
|
|
} else
|
2020-08-24 10:56:36 +00:00
|
|
|
|
$info["props"][] = $this->mkprop("SeedDMS:", 'attr_'.str_replace(array(' ','|'), array('', '',''), $attrdef->getName()), $attribute->getValue());
|
2016-01-29 15:47:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return $info;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GET method handler
|
|
|
|
|
*
|
|
|
|
|
* @param array parameter passing array
|
|
|
|
|
* @return bool true on success
|
|
|
|
|
*/
|
|
|
|
|
function GET(&$options) /* {{{ */
|
|
|
|
|
{
|
|
|
|
|
$this->log_options('GET', $options);
|
|
|
|
|
|
|
|
|
|
// get folder or document from path
|
|
|
|
|
$obj = $this->reverseLookup($options["path"]);
|
|
|
|
|
|
|
|
|
|
// sanity check
|
|
|
|
|
if (!$obj) return false;
|
|
|
|
|
|
|
|
|
|
// is this a collection?
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if (get_class($obj) == $this->dms->getClassname('folder')) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return $this->GetDir($obj, $options);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$content = $obj->getLatestContent();
|
|
|
|
|
|
|
|
|
|
// detect resource type
|
|
|
|
|
$options['mimetype'] = $content->getMimeType();
|
|
|
|
|
|
|
|
|
|
// detect modification time
|
|
|
|
|
// see rfc2518, section 13.7
|
|
|
|
|
// some clients seem to treat this as a reverse rule
|
|
|
|
|
// requiering a Last-Modified header if the getlastmodified header was set
|
|
|
|
|
$options['mtime'] = $content->getDate();
|
|
|
|
|
|
|
|
|
|
$fspath = $this->dms->contentDir.'/'.$content->getPath();
|
2020-06-24 14:22:28 +00:00
|
|
|
|
if(!file_exists($fspath))
|
|
|
|
|
return false;
|
2011-02-09 07:03:00 +00:00
|
|
|
|
// detect resource size
|
|
|
|
|
$options['size'] = filesize($fspath);
|
|
|
|
|
|
|
|
|
|
// no need to check result here, it is handled by the base class
|
|
|
|
|
$options['stream'] = fopen($fspath, "r");
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GET method handler for directories
|
|
|
|
|
*
|
|
|
|
|
* This is a very simple mod_index lookalike.
|
|
|
|
|
* See RFC 2518, Section 8.4 on GET/HEAD for collections
|
|
|
|
|
*
|
|
|
|
|
* @param object folder object
|
|
|
|
|
* @return void function has to handle HTTP response itself
|
|
|
|
|
*/
|
|
|
|
|
function GetDir($folder, &$options) /* {{{ */
|
|
|
|
|
{
|
|
|
|
|
// fixed width directory column format
|
|
|
|
|
$format = "%15s %-19s %-s\n";
|
|
|
|
|
|
|
|
|
|
$subfolders = $folder->getSubFolders();
|
2013-02-14 11:10:53 +00:00
|
|
|
|
$subfolders = SeedDMS_Core_DMS::filterAccess($subfolders, $this->user, M_READ);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$documents = $folder->getDocuments();
|
2013-02-14 11:10:53 +00:00
|
|
|
|
$docs = SeedDMS_Core_DMS::filterAccess($documents, $this->user, M_READ);
|
2013-02-04 14:34:52 +00:00
|
|
|
|
if(!$this->user->isAdmin()) {
|
|
|
|
|
$documents = array();
|
|
|
|
|
foreach($docs as $document) {
|
|
|
|
|
$lc = $document->getLatestContent();
|
|
|
|
|
$status = $lc->getStatus();
|
|
|
|
|
if($status['status'] == S_RELEASED) {
|
|
|
|
|
$documents[] = $document;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$documents = $docs;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$objs = array_merge($subfolders, $documents);
|
|
|
|
|
|
|
|
|
|
echo "<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" /><title>Index of ".htmlspecialchars($options['path'])."</title></head>\n";
|
|
|
|
|
|
|
|
|
|
echo "<h1>Index of ".htmlspecialchars($options['path'])."</h1>\n";
|
|
|
|
|
|
|
|
|
|
echo "<pre>";
|
|
|
|
|
printf($format, "Size", "Last modified", "Filename");
|
|
|
|
|
echo "<hr>";
|
|
|
|
|
|
2012-10-19 11:41:55 +00:00
|
|
|
|
$parents = $folder->getPath();
|
|
|
|
|
$_fullpath = '/';
|
|
|
|
|
if(count($parents) > 1) {
|
|
|
|
|
$p = array_slice($parents, -2, 1);
|
|
|
|
|
$p = $p[0];
|
|
|
|
|
array_shift($parents);
|
|
|
|
|
$last = array_pop($parents);
|
|
|
|
|
foreach($parents as $parent)
|
|
|
|
|
$_fullpath .= $parent->getName().'/';
|
|
|
|
|
printf($format, 0, strftime("%Y-%m-%d %H:%M:%S", $p->getDate()), "<a href=\"".$_SERVER['SCRIPT_NAME'].htmlspecialchars($_fullpath)."\">..</a>");
|
|
|
|
|
$_fullpath .= $last->getName().'/';
|
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
foreach ($objs as $obj) {
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if(get_class($obj) == $this->dms->getClassname('folder')) {
|
2020-06-24 14:22:28 +00:00
|
|
|
|
$fullpath = $_fullpath.$obj->getName().'/';
|
|
|
|
|
$displayname = $obj->getName().'/';
|
2011-05-16 06:47:06 +00:00
|
|
|
|
$filesize = 0;
|
|
|
|
|
$mtime = $obj->getDate();
|
2022-06-08 14:05:39 +00:00
|
|
|
|
$mimetype = '';
|
2011-05-16 06:47:06 +00:00
|
|
|
|
} else {
|
|
|
|
|
$content = $obj->getLatestContent();
|
|
|
|
|
|
|
|
|
|
$mimetype = $content->getMimeType();
|
|
|
|
|
|
|
|
|
|
$mtime = $content->getDate();
|
|
|
|
|
|
|
|
|
|
$fspath = $this->dms->contentDir.'/'.$content->getPath();
|
2020-06-24 14:22:28 +00:00
|
|
|
|
if(file_exists($fspath))
|
|
|
|
|
$filesize = filesize($fspath);
|
|
|
|
|
else
|
|
|
|
|
$filesize = 0;
|
|
|
|
|
if($this->useorgfilename) {
|
|
|
|
|
/* Add the document id and version to the display name.
|
|
|
|
|
* I doesn't harm because for
|
|
|
|
|
* accessing the document the full path is used by the browser
|
|
|
|
|
*/
|
|
|
|
|
if($this->prefixorgfilename) {
|
|
|
|
|
$displayname = $obj->getID()."-".$content->getVersion()."-".$content->getOriginalFileName();
|
|
|
|
|
$fullpath = $_fullpath.$obj->getID()."-".$content->getVersion()."-".$content->getOriginalFileName();
|
|
|
|
|
} else {
|
|
|
|
|
$displayname = $content->getOriginalFileName();
|
|
|
|
|
$fullpath = $_fullpath.$content->getOriginalFileName();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$displayname = $obj->getName();
|
|
|
|
|
$fullpath = $_fullpath.$displayname;
|
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
|
|
|
|
printf($format,
|
2011-05-16 06:47:06 +00:00
|
|
|
|
number_format($filesize),
|
|
|
|
|
strftime("%Y-%m-%d %H:%M:%S", $mtime),
|
2022-06-08 14:05:39 +00:00
|
|
|
|
"<a href=\"".$_SERVER['SCRIPT_NAME'].htmlspecialchars($fullpath)."\"".($mimetype ? " title=\"".$mimetype."\"" : "").">".htmlspecialchars($displayname, ENT_QUOTES)."</a>");
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
echo "</pre>";
|
|
|
|
|
|
|
|
|
|
echo "</html>\n";
|
|
|
|
|
|
|
|
|
|
exit;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* PUT method handler
|
|
|
|
|
*
|
|
|
|
|
* @param array parameter passing array
|
|
|
|
|
* @return bool true on success
|
|
|
|
|
*/
|
|
|
|
|
function PUT(&$options) /* {{{ */
|
|
|
|
|
{
|
2022-11-29 09:44:19 +00:00
|
|
|
|
global $fulltextservice;
|
2018-03-22 14:12:53 +00:00
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$this->log_options('PUT', $options);
|
|
|
|
|
|
|
|
|
|
$path = $options["path"];
|
|
|
|
|
$parent = dirname($path);
|
|
|
|
|
$name = basename($path);
|
|
|
|
|
|
|
|
|
|
// get folder from path
|
|
|
|
|
if($parent == '/')
|
|
|
|
|
$parent = '';
|
|
|
|
|
$folder = $this->reverseLookup($parent.'/');
|
|
|
|
|
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if (!$folder || get_class($folder) != $this->dms->getClassname('folder')) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "409 Conflict";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if user is logged in */
|
|
|
|
|
if(!$this->user) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: access forbidden', PEAR_LOG_ERR);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$tmpFile = tempnam('/tmp', 'webdav');
|
|
|
|
|
$fp = fopen($tmpFile, 'w');
|
|
|
|
|
while(!feof($options["stream"])) {
|
|
|
|
|
$data = fread($options["stream"], 1000);
|
|
|
|
|
fwrite($fp, $data);
|
|
|
|
|
}
|
|
|
|
|
fclose($fp);
|
|
|
|
|
|
2022-11-15 15:07:06 +00:00
|
|
|
|
$finfo = new finfo(FILEINFO_MIME_TYPE);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$mimetype = $finfo->file($tmpFile);
|
|
|
|
|
|
2022-11-09 14:14:38 +00:00
|
|
|
|
$lastDotIndex = strrpos($name, ".");
|
|
|
|
|
if($lastDotIndex === false) $fileType = ".";
|
|
|
|
|
else $fileType = substr($name, $lastDotIndex);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
switch($mimetype) {
|
2022-11-09 14:14:38 +00:00
|
|
|
|
case 'application/pdf':
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$fileType = ".pdf";
|
|
|
|
|
break;
|
2022-11-09 14:14:38 +00:00
|
|
|
|
case 'text/plain':
|
|
|
|
|
if($fileType == '.md')
|
|
|
|
|
$mimetype = 'text/markdown';
|
|
|
|
|
break;
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: file is of type '.$mimetype, PEAR_LOG_INFO);
|
|
|
|
|
|
2013-02-08 14:56:26 +00:00
|
|
|
|
/* First check whether there is already a file with the same name */
|
2020-06-24 14:22:28 +00:00
|
|
|
|
if($this->useorgfilename) {
|
|
|
|
|
if($this->prefixorgfilename) {
|
|
|
|
|
$tmp = explode('-', $name, 3);
|
|
|
|
|
if(ctype_digit($tmp[0])) {
|
|
|
|
|
$document = $this->dms->getDocument((int) $tmp[0]);
|
|
|
|
|
} else {
|
|
|
|
|
$document = null;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$document = $this->dms->getDocumentByOriginalFilename($name, $folder);
|
|
|
|
|
}
|
|
|
|
|
} else
|
2017-08-28 11:46:16 +00:00
|
|
|
|
$document = $this->dms->getDocumentByName($name, $folder);
|
|
|
|
|
if($document) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
2019-08-22 05:47:04 +00:00
|
|
|
|
$this->logger->log('PUT: saving document id='.$document->getID(), PEAR_LOG_INFO);
|
2018-07-12 20:36:44 +00:00
|
|
|
|
if ($document->getAccessMode($this->user, 'updateDocument') < M_READWRITE) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: no access on document', PEAR_LOG_ERR);
|
2011-12-15 07:27:19 +00:00
|
|
|
|
unlink($tmpFile);
|
|
|
|
|
return "403 Forbidden";
|
2018-03-22 14:12:53 +00:00
|
|
|
|
} else {
|
2022-11-09 14:14:38 +00:00
|
|
|
|
/* Check if the new version is identical to the current version.
|
2013-02-08 14:56:26 +00:00
|
|
|
|
* In that case just update the modification date
|
|
|
|
|
*/
|
|
|
|
|
$lc = $document->getLatestContent();
|
2013-02-14 11:10:53 +00:00
|
|
|
|
if($lc->getChecksum() == SeedDMS_Core_File::checksum($tmpFile)) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: identical to latest version', PEAR_LOG_INFO);
|
2013-02-08 14:56:26 +00:00
|
|
|
|
$lc->setDate();
|
2014-11-27 12:42:00 +00:00
|
|
|
|
} else {
|
|
|
|
|
if($this->user->getID() == $lc->getUser()->getID() &&
|
|
|
|
|
$name == $lc->getOriginalFileName() &&
|
|
|
|
|
$fileType == $lc->getFileType() &&
|
2018-04-12 09:32:10 +00:00
|
|
|
|
$mimetype == $lc->getMimeType() &&
|
2022-11-29 09:44:19 +00:00
|
|
|
|
$this->settings->_enableWebdavReplaceDoc) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: replacing latest version', PEAR_LOG_INFO);
|
2014-11-27 12:42:00 +00:00
|
|
|
|
if(!$document->replaceContent($lc->getVersion(), $this->user, $tmpFile, $name, $fileType, $mimetype)) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: error replacing latest version', PEAR_LOG_ERR);
|
2014-11-27 12:42:00 +00:00
|
|
|
|
unlink($tmpFile);
|
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
2021-02-24 17:56:14 +00:00
|
|
|
|
/* set $content for notification */
|
|
|
|
|
$content = $lc;
|
2014-11-27 12:42:00 +00:00
|
|
|
|
} else {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: adding new version', PEAR_LOG_INFO);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$reviewers = array('i'=>[], 'g'=>[]);
|
|
|
|
|
$approvers = array('i'=>[], 'g'=>[]);
|
|
|
|
|
$workflow = null;
|
2022-11-29 09:44:19 +00:00
|
|
|
|
if($this->settings->_workflowMode == 'traditional' || $this->settings->_workflowMode == 'traditional_only_approval') {
|
|
|
|
|
if($this->settings->_workflowMode == 'traditional') {
|
2024-04-22 08:59:02 +00:00
|
|
|
|
$reviewers = getMandatoryReviewers($document->getFolder(), $document, $this->user);
|
2021-02-24 12:23:49 +00:00
|
|
|
|
}
|
2024-04-22 08:59:02 +00:00
|
|
|
|
$approvers = getMandatoryApprovers($document->getFolder(), $document, $this->user);
|
2022-11-29 09:44:19 +00:00
|
|
|
|
} elseif($this->settings->_workflowMode == 'advanced') {
|
2021-05-03 12:01:56 +00:00
|
|
|
|
if($workflows = $this->user->getMandatoryWorkflows()) {
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$workflow = array_shift($workflows);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-22 05:47:04 +00:00
|
|
|
|
$controller = Controller::factory('UpdateDocument');
|
|
|
|
|
$controller->setParam('dms', $this->dms);
|
|
|
|
|
$controller->setParam('user', $this->user);
|
|
|
|
|
$controller->setParam('documentsource', 'webdav');
|
|
|
|
|
$controller->setParam('folder', $document->getFolder());
|
|
|
|
|
$controller->setParam('document', $document);
|
2021-02-23 19:49:10 +00:00
|
|
|
|
$controller->setParam('fulltextservice', $fulltextservice);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
$controller->setParam('comment', '');
|
|
|
|
|
$controller->setParam('userfiletmp', $tmpFile);
|
|
|
|
|
$controller->setParam('userfilename', $name);
|
|
|
|
|
$controller->setParam('filetype', $fileType);
|
|
|
|
|
$controller->setParam('userfiletype', $mimetype);
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$controller->setParam('reviewers', $reviewers);
|
|
|
|
|
$controller->setParam('approvers', $approvers);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
$controller->setParam('attributes', array());
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$controller->setParam('workflow', $workflow);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
|
2022-11-06 15:08:57 +00:00
|
|
|
|
if(!$content = $controller()) {
|
2014-11-27 12:42:00 +00:00
|
|
|
|
unlink($tmpFile);
|
2023-05-11 14:58:08 +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;
|
|
|
|
|
}
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: error adding new version: '.$errmsg, PEAR_LOG_ERR);
|
|
|
|
|
return "409 Conflict ".$errmsg;
|
2014-11-27 12:42:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-08-22 05:47:04 +00:00
|
|
|
|
if($this->notifier) {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: Sending Notifications', PEAR_LOG_INFO);
|
2022-11-06 15:09:27 +00:00
|
|
|
|
$this->notifier->sendNewDocumentVersionMail($document, $this->user);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
}
|
2013-02-08 14:56:26 +00:00
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: adding new document', PEAR_LOG_INFO);
|
2018-07-12 20:36:44 +00:00
|
|
|
|
if ($folder->getAccessMode($this->user, 'addDocument') < M_READWRITE) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: no access on folder', PEAR_LOG_ERR);
|
2011-12-15 07:27:19 +00:00
|
|
|
|
unlink($tmpFile);
|
|
|
|
|
return "403 Forbidden";
|
2018-03-22 14:12:53 +00:00
|
|
|
|
}
|
2019-08-22 05:47:04 +00:00
|
|
|
|
|
|
|
|
|
/* Check if name already exists in the folder */
|
|
|
|
|
/*
|
2022-11-29 09:44:19 +00:00
|
|
|
|
if(!$this->settings->_enableDuplicateDocNames) {
|
2019-08-22 05:47:04 +00:00
|
|
|
|
if($folder->hasDocumentByName($name)) {
|
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$reviewers = array('i'=>[], 'g'=>[]);
|
|
|
|
|
$approvers = array('i'=>[], 'g'=>[]);
|
|
|
|
|
$workflow = null;
|
2022-11-29 09:44:19 +00:00
|
|
|
|
if($this->settings->_workflowMode == 'traditional' || $this->settings->_workflowMode == 'traditional_only_approval') {
|
|
|
|
|
if($this->settings->_workflowMode == 'traditional') {
|
2024-04-22 08:59:02 +00:00
|
|
|
|
$reviewers = getMandatoryReviewers($folder, null, $this->user);
|
2021-02-24 12:23:49 +00:00
|
|
|
|
}
|
2024-04-22 08:59:02 +00:00
|
|
|
|
$approvers = getMandatoryApprovers($folder, null, $this->user);
|
2022-11-29 09:44:19 +00:00
|
|
|
|
} elseif($this->settings->_workflowMode == 'advanced') {
|
2021-05-03 12:01:56 +00:00
|
|
|
|
if($workflows = $this->user->getMandatoryWorkflows()) {
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$workflow = array_shift($workflows);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-22 14:12:53 +00:00
|
|
|
|
$controller = Controller::factory('AddDocument');
|
|
|
|
|
$controller->setParam('dms', $this->dms);
|
|
|
|
|
$controller->setParam('user', $this->user);
|
|
|
|
|
$controller->setParam('documentsource', 'webdav');
|
|
|
|
|
$controller->setParam('folder', $folder);
|
2021-02-23 19:37:14 +00:00
|
|
|
|
$controller->setParam('fulltextservice', $fulltextservice);
|
2018-03-22 14:12:53 +00:00
|
|
|
|
$controller->setParam('name', $name);
|
|
|
|
|
$controller->setParam('comment', '');
|
|
|
|
|
$controller->setParam('expires', 0);
|
|
|
|
|
$controller->setParam('keywords', '');
|
|
|
|
|
$controller->setParam('categories', array());
|
|
|
|
|
$controller->setParam('owner', $this->user);
|
|
|
|
|
$controller->setParam('userfiletmp', $tmpFile);
|
|
|
|
|
$controller->setParam('userfilename', $name);
|
|
|
|
|
$controller->setParam('filetype', $fileType);
|
|
|
|
|
$controller->setParam('userfiletype', $mimetype);
|
|
|
|
|
$minmax = $folder->getDocumentsMinMax();
|
2022-11-29 09:44:19 +00:00
|
|
|
|
if($this->settings->_defaultDocPosition == 'start')
|
2018-03-22 14:12:53 +00:00
|
|
|
|
$controller->setParam('sequence', $minmax['min'] - 1);
|
|
|
|
|
else
|
|
|
|
|
$controller->setParam('sequence', $minmax['max'] + 1);
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$controller->setParam('reviewers', $reviewers);
|
|
|
|
|
$controller->setParam('approvers', $approvers);
|
2018-03-22 14:12:53 +00:00
|
|
|
|
$controller->setParam('reqversion', 0);
|
|
|
|
|
$controller->setParam('versioncomment', '');
|
|
|
|
|
$controller->setParam('attributes', array());
|
|
|
|
|
$controller->setParam('attributesversion', array());
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$controller->setParam('workflow', $workflow);
|
2018-03-22 14:12:53 +00:00
|
|
|
|
$controller->setParam('notificationgroups', array());
|
|
|
|
|
$controller->setParam('notificationusers', array());
|
2022-12-10 13:23:43 +00:00
|
|
|
|
$controller->setParam('initialdocumentstatus', $this->settings->_initialDocumentStatus);
|
2022-11-29 09:44:19 +00:00
|
|
|
|
$controller->setParam('maxsizeforfulltext', $this->settings->_maxSizeForFullText);
|
|
|
|
|
$controller->setParam('defaultaccessdocs', $this->settings->_defaultAccessDocs);
|
2022-11-06 15:08:57 +00:00
|
|
|
|
if(!$document = $controller()) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
unlink($tmpFile);
|
2023-05-11 14:58:08 +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;
|
|
|
|
|
}
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
2023-05-11 14:58:08 +00:00
|
|
|
|
$this->logger->log('PUT: error adding document: '.$errmsg, PEAR_LOG_ERR);
|
|
|
|
|
return "409 Conflict ".$errmsg;
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
2019-08-22 05:47:04 +00:00
|
|
|
|
if($this->notifier) {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('PUT: Sending Notifications', PEAR_LOG_INFO);
|
2022-11-06 15:09:27 +00:00
|
|
|
|
$this->notifier->sendNewDocumentMail($document, $this->user);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unlink($tmpFile);
|
|
|
|
|
return "201 Created";
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* MKCOL method handler
|
|
|
|
|
*
|
|
|
|
|
* @param array general parameter passing array
|
|
|
|
|
* @return bool true on success
|
|
|
|
|
*/
|
|
|
|
|
function MKCOL($options) /* {{{ */
|
2019-08-22 05:47:04 +00:00
|
|
|
|
{
|
2023-12-22 06:46:39 +00:00
|
|
|
|
global $fulltextservice;
|
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$this->log_options('MKCOL', $options);
|
|
|
|
|
|
|
|
|
|
$path = $options["path"];
|
|
|
|
|
$parent = dirname($path);
|
|
|
|
|
$name = basename($path);
|
|
|
|
|
|
|
|
|
|
// get folder from path
|
|
|
|
|
if($parent == '/')
|
|
|
|
|
$parent = '';
|
|
|
|
|
$folder = $this->reverseLookup($parent.'/');
|
|
|
|
|
|
|
|
|
|
/* Check if parent folder exists at all */
|
|
|
|
|
if (!$folder) {
|
|
|
|
|
return "409 Conflict";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if parent of new folder is a folder */
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if (get_class($folder) != $this->dms->getClassname('folder')) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('MKCOL: access forbidden', PEAR_LOG_ERR);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if parent folder already has folder with the same name */
|
|
|
|
|
if ($this->dms->getFolderByName($name, $folder) ) {
|
|
|
|
|
return "405 Method not allowed";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!empty($this->_SERVER["CONTENT_LENGTH"])) { // no body parsing yet
|
|
|
|
|
return "415 Unsupported media type";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if user is logged in */
|
|
|
|
|
if(!$this->user) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('MKCOL: access forbidden', PEAR_LOG_ERR);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-12 20:36:44 +00:00
|
|
|
|
if ($folder->getAccessMode($this->user, 'addFolder') < M_READWRITE) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('MKCOL: access forbidden', PEAR_LOG_ERR);
|
2011-12-15 07:27:19 +00:00
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-09 17:23:14 +00:00
|
|
|
|
$controller = Controller::factory('AddSubFolder');
|
|
|
|
|
$controller->setParam('dms', $this->dms);
|
|
|
|
|
$controller->setParam('user', $this->user);
|
2023-12-22 06:46:39 +00:00
|
|
|
|
$controller->setParam('fulltextservice', $fulltextservice);
|
2018-03-09 17:23:14 +00:00
|
|
|
|
$controller->setParam('folder', $folder);
|
|
|
|
|
$controller->setParam('name', $name);
|
|
|
|
|
$controller->setParam('comment', '');
|
|
|
|
|
$controller->setParam('sequence', 0);
|
|
|
|
|
$controller->setParam('attributes', array());
|
|
|
|
|
$controller->setParam('notificationgroups', array());
|
|
|
|
|
$controller->setParam('notificationusers', array());
|
2022-11-06 15:08:57 +00:00
|
|
|
|
if(!$subFolder = $controller()) {
|
2018-03-09 17:23:14 +00:00
|
|
|
|
// if (!$folder->addSubFolder($name, '', $this->user, 0)) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
return "409 Conflict ".$controller->getErrorMsg();
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-22 05:47:04 +00:00
|
|
|
|
if($this->notifier) {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('MKCOL: Sending Notifications', PEAR_LOG_INFO);
|
2022-11-06 15:09:27 +00:00
|
|
|
|
$this->notifier->sendNewFolderMail($subFolder, $this->user);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return ("201 Created");
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* DELETE method handler
|
|
|
|
|
*
|
|
|
|
|
* @param array general parameter passing array
|
|
|
|
|
* @return bool true on success
|
|
|
|
|
*/
|
|
|
|
|
function DELETE($options) /* {{{ */
|
|
|
|
|
{
|
2022-11-29 09:44:19 +00:00
|
|
|
|
global $fulltextservice;
|
2018-03-07 11:36:24 +00:00
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$this->log_options('DELETE', $options);
|
|
|
|
|
|
|
|
|
|
// get folder or document from path
|
|
|
|
|
$obj = $this->reverseLookup($options["path"]);
|
2012-07-02 06:53:42 +00:00
|
|
|
|
/* Make a second try if it is a directory with the leading '/' */
|
|
|
|
|
if(!$obj)
|
|
|
|
|
$obj = $this->reverseLookup($options["path"].'/');
|
2011-02-09 07:03:00 +00:00
|
|
|
|
|
|
|
|
|
// sanity check
|
|
|
|
|
if (!$obj) return "404 Not found";
|
|
|
|
|
|
|
|
|
|
// check for access rights
|
2018-07-12 20:36:44 +00:00
|
|
|
|
if($obj->getAccessMode($this->user, get_class($obj) == $this->dms->getClassname('folder') ? 'removeFolder' : 'removeDocument') < M_ALL) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('DELETE: access forbidden', PEAR_LOG_ERR);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if (get_class($obj) == $this->dms->getClassname('folder')) {
|
2012-12-13 21:21:35 +00:00
|
|
|
|
if($obj->hasDocuments() || $obj->hasSubFolders()) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('DELETE: cannot delete, folder has children', PEAR_LOG_ERR);
|
2012-12-13 21:21:35 +00:00
|
|
|
|
return "409 Conflict";
|
|
|
|
|
}
|
2019-08-22 05:47:04 +00:00
|
|
|
|
|
2018-03-09 17:23:14 +00:00
|
|
|
|
$controller = Controller::factory('RemoveFolder');
|
|
|
|
|
$controller->setParam('dms', $this->dms);
|
|
|
|
|
$controller->setParam('user', $this->user);
|
|
|
|
|
$controller->setParam('folder', $obj);
|
2021-02-23 19:49:10 +00:00
|
|
|
|
$controller->setParam('fulltextservice', $fulltextservice);
|
2022-11-06 15:09:27 +00:00
|
|
|
|
if(!$controller()) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
return "409 Conflict ".$controller->getErrorMsg();
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
2019-08-22 05:47:04 +00:00
|
|
|
|
|
|
|
|
|
if($this->notifier) {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('DELETE: Sending Notifications', PEAR_LOG_INFO);
|
2022-11-06 15:09:27 +00:00
|
|
|
|
$this->notifier->sendDeleteFolderMail($obj, $this->user);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
} else {
|
2018-03-07 11:36:24 +00:00
|
|
|
|
$controller = Controller::factory('RemoveDocument');
|
2018-03-09 17:23:14 +00:00
|
|
|
|
$controller->setParam('dms', $this->dms);
|
|
|
|
|
$controller->setParam('user', $this->user);
|
2018-03-07 11:36:24 +00:00
|
|
|
|
$controller->setParam('document', $obj);
|
2021-02-23 19:49:10 +00:00
|
|
|
|
$controller->setParam('fulltextservice', $fulltextservice);
|
2022-11-06 15:09:27 +00:00
|
|
|
|
if(!$controller()) {
|
2018-03-22 14:15:13 +00:00
|
|
|
|
return "409 Conflict ".$controller->getErrorMsg();
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
2019-08-22 05:47:04 +00:00
|
|
|
|
|
|
|
|
|
if($this->notifier){
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('DELETE: Sending Notifications', PEAR_LOG_INFO);
|
2022-11-06 15:09:27 +00:00
|
|
|
|
/* $obj still has the data from the just deleted document,
|
|
|
|
|
* which is just enough to send the email.
|
|
|
|
|
*/
|
|
|
|
|
$this->notifier->sendDeleteDocumentMail($obj, $this->user);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return "204 No Content";
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* MOVE method handler
|
|
|
|
|
*
|
|
|
|
|
* @param array general parameter passing array
|
|
|
|
|
* @return bool true on success
|
|
|
|
|
*/
|
|
|
|
|
function MOVE($options) /* {{{ */
|
|
|
|
|
{
|
|
|
|
|
$this->log_options('MOVE', $options);
|
|
|
|
|
|
|
|
|
|
// no copying to different WebDAV Servers yet
|
|
|
|
|
if (isset($options["dest_url"])) {
|
|
|
|
|
return "502 bad gateway";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// get folder or document to move
|
|
|
|
|
$objsource = $this->reverseLookup($options["path"]);
|
|
|
|
|
/* Make a second try if it is directory with the leading '/' */
|
|
|
|
|
if(!$objsource)
|
|
|
|
|
$objsource = $this->reverseLookup($options["path"].'/');
|
|
|
|
|
if (!$objsource)
|
|
|
|
|
return "404 Not found";
|
|
|
|
|
|
|
|
|
|
// get dest folder or document
|
|
|
|
|
$objdest = $this->reverseLookup($options["dest"]);
|
|
|
|
|
|
|
|
|
|
$newdocname = '';
|
2020-01-13 08:32:22 +00:00
|
|
|
|
/* if the destіnation could not be found, then a folder/document shall
|
|
|
|
|
* be renamed. In that case the source object is moved into the ѕame
|
|
|
|
|
* or different folder under a new name.
|
|
|
|
|
* $objdest will store the new destination folder afterwards
|
|
|
|
|
*/
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if(!$objdest) {
|
|
|
|
|
/* check if at least the dest directory exists */
|
|
|
|
|
$dirname = dirname($options['dest']);
|
|
|
|
|
if($dirname != '/')
|
|
|
|
|
$dirname .= '/';
|
|
|
|
|
$newdocname = basename($options['dest']);
|
|
|
|
|
$objdest = $this->reverseLookup($dirname);
|
|
|
|
|
if(!$objdest)
|
|
|
|
|
return "412 precondition failed";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Moving a document requires write access on the source and
|
|
|
|
|
* destination object
|
|
|
|
|
*/
|
|
|
|
|
if (($objsource->getAccessMode($this->user) < M_READWRITE) || ($objdest->getAccessMode($this->user) < M_READWRITE)) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('MOVE: access forbidden', PEAR_LOG_ERR);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if(get_class($objdest) == $this->dms->getClassname('document')) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
/* If destination object is a document it must be overwritten */
|
|
|
|
|
if (!$options["overwrite"]) {
|
|
|
|
|
return "412 precondition failed";
|
|
|
|
|
}
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if(get_class($objsource) == $this->dms->getClassname('folder')) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "400 Bad request";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* get the latest content of the source object */
|
|
|
|
|
$content = $objsource->getLatestContent();
|
|
|
|
|
$fspath = $this->dms->contentDir.'/'.$content->getPath();
|
|
|
|
|
|
|
|
|
|
/* save the content as a new version in the destination document */
|
2019-08-22 05:47:04 +00:00
|
|
|
|
if(!$objdest->addContent('', $this->user, $fspath, $content->getOriginalFileName(), $content->getFileType(), $content->getMimeType(), array(), array(), 0)) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
unlink($tmpFile);
|
|
|
|
|
return "409 Conflict";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* change the name of the destination object */
|
2019-08-22 05:47:04 +00:00
|
|
|
|
// $objdest->setName($objsource->getName());
|
2011-02-09 07:03:00 +00:00
|
|
|
|
|
|
|
|
|
/* delete the source object */
|
|
|
|
|
$objsource->remove();
|
|
|
|
|
|
|
|
|
|
return "204 No Content";
|
2018-03-07 11:36:24 +00:00
|
|
|
|
} elseif(get_class($objdest) == $this->dms->getClassname('folder')) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
/* Set the new Folder of the source object */
|
2019-08-22 05:47:04 +00:00
|
|
|
|
if(get_class($objsource) == $this->dms->getClassname('document')) {
|
|
|
|
|
/* Check if name already exists in the folder */
|
2022-11-29 09:44:19 +00:00
|
|
|
|
if(!$this->settings->_enableDuplicateDocNames) {
|
2020-01-13 08:32:22 +00:00
|
|
|
|
if($newdocname) {
|
|
|
|
|
if($objdest->hasDocumentByName($newdocname)) {
|
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if($objdest->hasDocumentByName($objsource->getName())) {
|
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
2019-08-22 05:47:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$oldFolder = $objsource->getFolder();
|
|
|
|
|
if($objsource->setFolder($objdest)) {
|
|
|
|
|
if($this->notifier) {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('MOVE: Sending Notifications', PEAR_LOG_INFO);
|
2022-11-06 15:09:27 +00:00
|
|
|
|
$this->notifier->sendMovedDocumentMail($objsource, $this->user, $oldFolder);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return "500 Internal server error";
|
|
|
|
|
}
|
|
|
|
|
} elseif(get_class($objsource) == $this->dms->getClassname('folder')) {
|
|
|
|
|
/* Check if name already exists in the folder */
|
2022-11-29 09:44:19 +00:00
|
|
|
|
if(!$this->settings->_enableDuplicateSubFolderNames) {
|
2020-01-13 08:32:22 +00:00
|
|
|
|
if($newdocname) {
|
|
|
|
|
if($objdest->hasSubFolderByName($newdocname)) {
|
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if($objdest->hasSubFolderByName($objsource->getName())) {
|
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
2019-08-22 05:47:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$oldFolder = $objsource->getParent();
|
|
|
|
|
if($objsource->setParent($objdest)) {
|
|
|
|
|
if($this->notifier) {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('MOVE: Sending Notifications', PEAR_LOG_INFO);
|
2022-11-06 15:09:27 +00:00
|
|
|
|
$this->notifier->sendMovedFolderMail($objsource, $this->user, $oldFolder);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return "500 Internal server error";
|
|
|
|
|
}
|
|
|
|
|
} else
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "500 Internal server error";
|
|
|
|
|
if($newdocname)
|
|
|
|
|
$objsource->setName($newdocname);
|
|
|
|
|
return "204 No Content";
|
|
|
|
|
}
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* COPY method handler
|
|
|
|
|
*
|
|
|
|
|
* @param array general parameter passing array
|
|
|
|
|
* @return bool true on success
|
|
|
|
|
*/
|
2019-08-22 05:47:04 +00:00
|
|
|
|
function COPY($options) /* {{{ */
|
2011-02-09 07:03:00 +00:00
|
|
|
|
{
|
2022-11-29 09:44:19 +00:00
|
|
|
|
global $fulltextservice;
|
2018-03-07 11:36:24 +00:00
|
|
|
|
|
2019-08-22 05:47:04 +00:00
|
|
|
|
$this->log_options('COPY', $options);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
|
|
|
|
|
// TODO Property updates still broken (Litmus should detect this?)
|
|
|
|
|
|
|
|
|
|
if (!empty($this->_SERVER["CONTENT_LENGTH"])) { // no body parsing yet
|
|
|
|
|
return "415 Unsupported media type";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// no copying to different WebDAV Servers yet
|
|
|
|
|
if (isset($options["dest_url"])) {
|
|
|
|
|
return "502 bad gateway";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// get folder or document to move
|
|
|
|
|
$objsource = $this->reverseLookup($options["path"]);
|
|
|
|
|
/* Make a second try if it is directory with the leading '/' */
|
|
|
|
|
if(!$objsource)
|
|
|
|
|
$objsource = $this->reverseLookup($options["path"].'/');
|
|
|
|
|
if (!$objsource)
|
|
|
|
|
return "404 Not found";
|
|
|
|
|
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if (get_class($objsource) == $this->dms->getClassname('folder') && ($options["depth"] != "infinity")) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
// RFC 2518 Section 9.2, last paragraph
|
|
|
|
|
return "400 Bad request";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// get dest folder or document
|
|
|
|
|
$objdest = $this->reverseLookup($options["dest"]);
|
|
|
|
|
|
2019-08-22 05:47:04 +00:00
|
|
|
|
// If the destination doesn't exists, then check if the parent folder exists
|
|
|
|
|
// and set $newdocname, which is later used to create a new document
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$newdocname = '';
|
|
|
|
|
if(!$objdest) {
|
|
|
|
|
/* check if at least the dest directory exists */
|
|
|
|
|
$dirname = dirname($options['dest']);
|
|
|
|
|
if($dirname != '/')
|
|
|
|
|
$dirname .= '/';
|
|
|
|
|
$newdocname = basename($options['dest']);
|
|
|
|
|
$objdest = $this->reverseLookup($dirname);
|
|
|
|
|
if(!$objdest)
|
|
|
|
|
return "412 precondition failed";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Copying a document requires read access on the source and write
|
|
|
|
|
* access on the destination object
|
|
|
|
|
*/
|
|
|
|
|
if (($objsource->getAccessMode($this->user) < M_READ) || ($objdest->getAccessMode($this->user) < M_READWRITE)) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('COPY: access forbidden', PEAR_LOG_ERR);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-22 05:47:04 +00:00
|
|
|
|
/* If destination object is a document the source document will create a new version */
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if(get_class($objdest) == $this->dms->getClassname('document')) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if (!$options["overwrite"]) {
|
|
|
|
|
return "412 precondition failed";
|
|
|
|
|
}
|
|
|
|
|
/* Copying a folder into a document makes no sense */
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if(get_class($objsource) == $this->dms->getClassname('folder')) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "400 Bad request";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* get the latest content of the source object */
|
|
|
|
|
$content = $objsource->getLatestContent();
|
|
|
|
|
$fspath = $this->dms->contentDir.'/'.$content->getPath();
|
|
|
|
|
|
2019-08-22 05:47:04 +00:00
|
|
|
|
/* If the checksum of source and destination are equal, then do not copy */
|
|
|
|
|
if($content->getChecksum() == $objdest->getLatestContent()->getChecksum()) {
|
|
|
|
|
return "204 No Content";
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
/* save the content as a new version in the destination document */
|
2019-08-22 05:47:04 +00:00
|
|
|
|
if(!$objdest->addContent('', $this->user, $fspath, $content->getOriginalFileName(), $content->getFileType(), $content->getMimeType(), array(), array(), 0)) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
unlink($tmpFile);
|
|
|
|
|
return "409 Conflict";
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-22 05:47:04 +00:00
|
|
|
|
/* Since 5.1.13 do not overwrite the name anymore
|
|
|
|
|
$objdest->setName($objsource->getName()); */
|
2011-02-09 07:03:00 +00:00
|
|
|
|
|
|
|
|
|
return "204 No Content";
|
2018-03-07 11:36:24 +00:00
|
|
|
|
} elseif(get_class($objdest) == $this->dms->getClassname('folder')) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if($this->logger)
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$this->logger->log('COPY: copy \''.$objsource->getName().'\' to folder '.$objdest->getName().'', PEAR_LOG_INFO);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
|
|
|
|
|
/* Currently no support for copying folders */
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if(get_class($objsource) == $this->dms->getClassname('folder')) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('COPY: source is a folder '.$objsource->getName().'', PEAR_LOG_INFO);
|
|
|
|
|
|
|
|
|
|
return "400 Bad request";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!$newdocname)
|
|
|
|
|
$newdocname = $objsource->getName();
|
|
|
|
|
|
2019-08-22 05:47:04 +00:00
|
|
|
|
/* Check if name already exists in the folder */
|
|
|
|
|
/*
|
2022-11-29 09:44:19 +00:00
|
|
|
|
if(!$this->settings->_enableDuplicateDocNames) {
|
2019-08-22 05:47:04 +00:00
|
|
|
|
if($objdest->hasDocumentByName($newdocname)) {
|
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$reviewers = array('i'=>[], 'g'=>[]);
|
|
|
|
|
$approvers = array('i'=>[], 'g'=>[]);
|
|
|
|
|
$workflow = null;
|
2022-11-29 09:44:19 +00:00
|
|
|
|
if($this->settings->_workflowMode == 'traditional' || $this->settings->_workflowMode == 'traditional_only_approval') {
|
|
|
|
|
if($this->settings->_workflowMode == 'traditional') {
|
2024-04-22 08:59:02 +00:00
|
|
|
|
$reviewers = getMandatoryReviewers($objdest, null, $this->user);
|
2021-02-24 12:23:49 +00:00
|
|
|
|
}
|
2024-04-22 08:59:02 +00:00
|
|
|
|
$approvers = getMandatoryApprovers($objdest, null, $this->user);
|
2022-11-29 09:44:19 +00:00
|
|
|
|
} elseif($this->settings->_workflowMode == 'advanced') {
|
2021-05-03 12:01:56 +00:00
|
|
|
|
if($workflows = $this->user->getMandatoryWorkflows()) {
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$workflow = array_shift($workflows);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
/* get the latest content of the source object */
|
|
|
|
|
$content = $objsource->getLatestContent();
|
|
|
|
|
$fspath = $this->dms->contentDir.'/'.$content->getPath();
|
|
|
|
|
|
2018-03-07 11:36:24 +00:00
|
|
|
|
$controller = Controller::factory('AddDocument');
|
2018-03-12 17:34:17 +00:00
|
|
|
|
$controller->setParam('dms', $this->dms);
|
|
|
|
|
$controller->setParam('user', $this->user);
|
2018-03-07 11:36:24 +00:00
|
|
|
|
$controller->setParam('documentsource', 'webdav');
|
|
|
|
|
$controller->setParam('folder', $objdest);
|
2021-02-23 19:49:10 +00:00
|
|
|
|
$controller->setParam('fulltextservice', $fulltextservice);
|
2018-03-07 11:36:24 +00:00
|
|
|
|
$controller->setParam('name', $newdocname);
|
|
|
|
|
$controller->setParam('comment', '');
|
|
|
|
|
$controller->setParam('expires', 0);
|
|
|
|
|
$controller->setParam('keywords', '');
|
|
|
|
|
$controller->setParam('categories', array());
|
|
|
|
|
$controller->setParam('owner', $this->user);
|
|
|
|
|
$controller->setParam('userfiletmp', $fspath);
|
|
|
|
|
$controller->setParam('userfilename', $content->getOriginalFileName());
|
|
|
|
|
$controller->setParam('filetype', $content->getFileType());
|
|
|
|
|
$controller->setParam('userfiletype', $content->getMimeType());
|
|
|
|
|
$minmax = $objdest->getDocumentsMinMax();
|
2022-11-29 09:44:19 +00:00
|
|
|
|
if($this->settings->_defaultDocPosition == 'start')
|
2018-03-07 11:36:24 +00:00
|
|
|
|
$controller->setParam('sequence', $minmax['min'] - 1);
|
|
|
|
|
else
|
|
|
|
|
$controller->setParam('sequence', $minmax['max'] + 1);
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$controller->setParam('reviewers', $reviewers);
|
|
|
|
|
$controller->setParam('approvers', $approvers);
|
2018-03-07 11:36:24 +00:00
|
|
|
|
$controller->setParam('reqversion', 0);
|
|
|
|
|
$controller->setParam('versioncomment', '');
|
|
|
|
|
$controller->setParam('attributes', array());
|
|
|
|
|
$controller->setParam('attributesversion', array());
|
2021-02-24 12:23:49 +00:00
|
|
|
|
$controller->setParam('workflow', $workflow);
|
2018-03-07 11:36:24 +00:00
|
|
|
|
$controller->setParam('notificationgroups', array());
|
|
|
|
|
$controller->setParam('notificationusers', array());
|
2022-11-29 09:44:19 +00:00
|
|
|
|
$controller->setParam('maxsizeforfulltext', $this->settings->_maxSizeForFullText);
|
|
|
|
|
$controller->setParam('defaultaccessdocs', $this->settings->_defaultAccessDocs);
|
2022-11-06 15:08:57 +00:00
|
|
|
|
if(!$document = $controller()) {
|
2023-05-11 14:58:08 +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;
|
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if($this->logger)
|
2023-05-11 14:58:08 +00:00
|
|
|
|
$this->logger->log('COPY: error copying object: '.$errmsg, PEAR_LOG_ERR);
|
|
|
|
|
return "409 Conflict ".$errmsg;
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
2019-08-22 05:47:04 +00:00
|
|
|
|
|
|
|
|
|
if($this->notifier) {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('COPY: Sending Notifications', PEAR_LOG_INFO);
|
2022-11-06 15:09:27 +00:00
|
|
|
|
$this->notifier->sendNewDocumentMail($document, $this->user);
|
2019-08-22 05:47:04 +00:00
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "201 Created";
|
|
|
|
|
}
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* PROPPATCH method handler
|
|
|
|
|
*
|
|
|
|
|
* @param array general parameter passing array
|
|
|
|
|
* @return bool true on success
|
|
|
|
|
*/
|
|
|
|
|
function PROPPATCH(&$options) /* {{{ */
|
|
|
|
|
{
|
|
|
|
|
$this->log_options('PROPPATCH', $options);
|
|
|
|
|
|
|
|
|
|
// get folder or document from path
|
|
|
|
|
$obj = $this->reverseLookup($options["path"]);
|
|
|
|
|
|
|
|
|
|
// sanity check
|
|
|
|
|
if (!$obj) {
|
|
|
|
|
$obj = $this->reverseLookup($options["path"].'/');
|
|
|
|
|
if(!$obj)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-15 07:27:19 +00:00
|
|
|
|
if ($obj->getAccessMode($this->user) < M_READWRITE) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 07:03:00 +00:00
|
|
|
|
foreach ($options["props"] as $key => $prop) {
|
|
|
|
|
if ($prop["ns"] == "DAV:") {
|
|
|
|
|
$options["props"][$key]['status'] = "403 Forbidden";
|
|
|
|
|
} else {
|
2016-01-29 15:47:21 +00:00
|
|
|
|
$this->logger->log('PROPPATCH: set '.$prop["ns"].''.$prop["val"].' to '.$prop["val"], PEAR_LOG_INFO);
|
2013-02-14 11:10:53 +00:00
|
|
|
|
if($prop["ns"] == "SeedDMS:") {
|
2016-02-03 13:47:50 +00:00
|
|
|
|
if(in_array($prop['name'], array('id', 'version', 'status', 'status-comment', 'status-date'))) {
|
|
|
|
|
$options["props"][$key]['status'] = "403 Forbidden";
|
|
|
|
|
} else {
|
|
|
|
|
if (isset($prop["val"]))
|
|
|
|
|
$val = $prop["val"];
|
|
|
|
|
else
|
|
|
|
|
$val = '';
|
|
|
|
|
switch($prop["name"]) {
|
|
|
|
|
case "comment":
|
|
|
|
|
$obj->setComment($val);
|
|
|
|
|
break;
|
2020-08-24 10:56:36 +00:00
|
|
|
|
case "expires":
|
|
|
|
|
if($obj->isType("document")) {
|
|
|
|
|
if($val) {
|
|
|
|
|
$ts = strtotime($val);
|
|
|
|
|
if($ts !== false) {
|
|
|
|
|
if(!$obj->setExpires($ts))
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
$options["props"][$key]['status'] = "400 Could not parse date";
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$obj->setExpires(0);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$options["props"][$key]['status'] = "405 Expiration date cannot be set on folders";
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2016-02-03 13:47:50 +00:00
|
|
|
|
default:
|
|
|
|
|
if($attrdef = $this->dms->getAttributeDefinitionByName($prop["name"])) {
|
|
|
|
|
$valueset = $attrdef->getValueSetAsArray();
|
|
|
|
|
switch($attrdef->getType()) {
|
|
|
|
|
case SeedDMS_Core_AttributeDefinition::type_string:
|
2016-01-29 15:47:21 +00:00
|
|
|
|
$obj->setAttributeValue($attrdef, $val);
|
2016-02-03 13:47:50 +00:00
|
|
|
|
break;
|
|
|
|
|
case SeedDMS_Core_AttributeDefinition::type_int:
|
2016-01-29 15:47:21 +00:00
|
|
|
|
$obj->setAttributeValue($attrdef, (int) $val);
|
2016-02-03 13:47:50 +00:00
|
|
|
|
break;
|
|
|
|
|
case SeedDMS_Core_AttributeDefinition::type_float:
|
2016-01-29 15:47:21 +00:00
|
|
|
|
$obj->setAttributeValue($attrdef, (float) $val);
|
2016-02-03 13:47:50 +00:00
|
|
|
|
break;
|
|
|
|
|
case SeedDMS_Core_AttributeDefinition::type_boolean:
|
|
|
|
|
$obj->setAttributeValue($attrdef, $val == 1 ? true : false);
|
|
|
|
|
break;
|
2016-01-29 15:47:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-02-09 07:03:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-24 10:56:36 +00:00
|
|
|
|
return true;
|
2011-02-09 07:03:00 +00:00
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* LOCK method handler
|
|
|
|
|
*
|
|
|
|
|
* @param array general parameter passing array
|
|
|
|
|
* @return bool true on success
|
|
|
|
|
*/
|
|
|
|
|
function LOCK(&$options) /* {{{ */
|
|
|
|
|
{
|
|
|
|
|
$this->log_options('LOCK', $options);
|
|
|
|
|
|
|
|
|
|
// get object to lock
|
|
|
|
|
$obj = $this->reverseLookup($options["path"]);
|
|
|
|
|
|
|
|
|
|
if(!$obj)
|
|
|
|
|
return "200 OK";
|
|
|
|
|
|
|
|
|
|
// TODO recursive locks on directories not supported yet
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if (get_class($obj) == $this->dms->getClassname('folder') && !empty($options["depth"])) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "409 Conflict";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($obj->getAccessMode($this->user) < M_READWRITE) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('LOCK: access forbidden', PEAR_LOG_ERR);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$options["timeout"] = 0;//time()+300; // 5min. hardcoded
|
|
|
|
|
|
|
|
|
|
if(!$obj->setLocked($this->user)) {
|
|
|
|
|
return "409 Conflict";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$options['owner'] = $this->user->getLogin();
|
|
|
|
|
$options['scope'] = "exclusive";
|
|
|
|
|
$options['type'] = "write";
|
|
|
|
|
|
|
|
|
|
return "200 OK";
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* UNLOCK method handler
|
|
|
|
|
*
|
|
|
|
|
* @param array general parameter passing array
|
|
|
|
|
* @return bool true on success
|
|
|
|
|
*/
|
|
|
|
|
function UNLOCK(&$options) /* {{{ */
|
|
|
|
|
{
|
|
|
|
|
$this->log_options('UNLOCK', $options);
|
|
|
|
|
|
|
|
|
|
// get object to unlock
|
|
|
|
|
$obj = $this->reverseLookup($options["path"]);
|
|
|
|
|
|
|
|
|
|
if(!$obj)
|
|
|
|
|
return "204 No Content";
|
|
|
|
|
|
|
|
|
|
// TODO recursive locks on directories not supported yet
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if (get_class($obj) == $this->dms->getClassname('folder') && !empty($options["depth"])) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "409 Conflict";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($obj->getAccessMode($this->user) < M_READWRITE) {
|
2018-03-22 14:12:53 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('UNLOCK: access forbidden', PEAR_LOG_ERR);
|
2011-02-09 07:03:00 +00:00
|
|
|
|
return "403 Forbidden";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!$obj->setLocked(false)) {
|
|
|
|
|
return "409 Conflict";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return "204 No Content";
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* checkLock() helper
|
|
|
|
|
*
|
|
|
|
|
* @param string resource path to check for locks
|
|
|
|
|
* @return bool true on success
|
|
|
|
|
*/
|
|
|
|
|
function checkLock($path) /* {{{ */
|
|
|
|
|
{
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('checkLock: path='.$path.'', PEAR_LOG_INFO);
|
|
|
|
|
|
|
|
|
|
// get object to check for lock
|
|
|
|
|
$obj = $this->reverseLookup($path);
|
|
|
|
|
|
|
|
|
|
// check for folder returns no object
|
|
|
|
|
if(!$obj) {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('checkLock: object not found', PEAR_LOG_INFO);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Folders cannot be locked
|
2018-03-07 11:36:24 +00:00
|
|
|
|
if(get_class($obj) == $this->dms->getClassname('folder')) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('checkLock: object is a folder', PEAR_LOG_INFO);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-26 06:49:19 +00:00
|
|
|
|
if($obj->isLocked() && $this->user->getLogin() != $obj->getLockingUser()->getLogin()) {
|
2011-02-09 07:03:00 +00:00
|
|
|
|
$lockuser = $obj->getLockingUser();
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('checkLock: object is locked by '.$lockuser->getLogin(), PEAR_LOG_INFO);
|
|
|
|
|
return array(
|
|
|
|
|
"type" => "write",
|
|
|
|
|
"scope" => "exclusive",
|
|
|
|
|
"depth" => 0,
|
|
|
|
|
"owner" => $lockuser->getLogin(),
|
|
|
|
|
"token" => 'kk', // must return something to prevent php warning in Server.php:1865
|
|
|
|
|
"created" => '',
|
|
|
|
|
"modified" => '',
|
|
|
|
|
"expires" => ''
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
if($this->logger)
|
|
|
|
|
$this->logger->log('checkLock: object is not locked', PEAR_LOG_INFO);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* vim: ts=2 sw=2 noexpandtab
|
|
|
|
|
*/
|
|
|
|
|
?>
|