2012-10-09 09:46:24 +00:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Implementation of access restricitions
|
|
|
|
|
*
|
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
|
* @package SeedDMS
|
2012-10-09 09:46:24 +00:00
|
|
|
|
* @license GPL 2
|
|
|
|
|
* @version @version@
|
|
|
|
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
|
* @copyright Copyright (C) 2010-2012 Uwe Steinmann
|
|
|
|
|
* @version Release: @package_version@
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class to check certain access restrictions
|
|
|
|
|
*
|
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
|
* @package SeedDMS
|
2012-10-09 09:46:24 +00:00
|
|
|
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
|
* @copyright Copyright (C) 2010-2012 Uwe Steinmann
|
|
|
|
|
* @version Release: @package_version@
|
|
|
|
|
*/
|
2013-02-14 11:10:53 +00:00
|
|
|
|
class SeedDMS_AccessOperation {
|
2012-10-09 09:46:24 +00:00
|
|
|
|
/**
|
|
|
|
|
* @var object $obj object being accessed
|
|
|
|
|
* @access protected
|
|
|
|
|
*/
|
|
|
|
|
private $obj;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var object $user user requesting the access
|
|
|
|
|
* @access protected
|
|
|
|
|
*/
|
|
|
|
|
private $user;
|
|
|
|
|
|
|
|
|
|
/**
|
2013-02-14 11:10:53 +00:00
|
|
|
|
* @var object $settings SeedDMS Settings
|
2012-10-09 09:46:24 +00:00
|
|
|
|
* @access protected
|
|
|
|
|
*/
|
|
|
|
|
private $settings;
|
|
|
|
|
|
|
|
|
|
function __construct($obj, $user, $settings) { /* {{{ */
|
|
|
|
|
$this->obj = $obj;
|
|
|
|
|
$this->user = $user;
|
|
|
|
|
$this->settings = $settings;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if removal of version is allowed
|
|
|
|
|
*
|
|
|
|
|
* This check can only be done for documents. Removal of versions is
|
|
|
|
|
* only allowed if this is turned on in the settings and there are
|
|
|
|
|
* at least 2 versions avaiable. Everybody with write access on the
|
|
|
|
|
* document may delete versions. The admin may even delete a version
|
|
|
|
|
* even if is disallowed in the settings.
|
|
|
|
|
*/
|
|
|
|
|
function mayRemoveVersion() { /* {{{ */
|
2013-02-14 11:10:53 +00:00
|
|
|
|
if(get_class($this->obj) == 'SeedDMS_Core_Document') {
|
2012-10-09 09:46:24 +00:00
|
|
|
|
$versions = $this->obj->getContent();
|
|
|
|
|
if ((($this->settings->_enableVersionDeletion && ($this->obj->getAccessMode($this->user) == M_ALL)) || $this->user->isAdmin() ) && (count($versions) > 1)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if document status may be overwritten
|
|
|
|
|
*
|
|
|
|
|
* This check can only be done for documents. Overwriting the document
|
|
|
|
|
* status is
|
|
|
|
|
* only allowed if this is turned on in the settings and the current
|
|
|
|
|
* status is either 'releaѕed' or 'obsoleted'.
|
|
|
|
|
* The admin may even modify the status
|
|
|
|
|
* even if is disallowed in the settings.
|
|
|
|
|
*/
|
|
|
|
|
function mayOverwriteStatus() { /* {{{ */
|
2013-02-14 11:10:53 +00:00
|
|
|
|
if(get_class($this->obj) == 'SeedDMS_Core_Document') {
|
2012-10-09 09:46:24 +00:00
|
|
|
|
$latestContent = $this->obj->getLatestContent();
|
|
|
|
|
$status = $latestContent->getStatus();
|
|
|
|
|
if ((($this->settings->_enableVersionModification && ($this->obj->getAccessMode($this->user) == M_ALL)) || $this->user->isAdmin()) && ($status["status"]==S_RELEASED || $status["status"]==S_OBSOLETE )) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if reviewers/approvers may be edited
|
|
|
|
|
*
|
|
|
|
|
* This check can only be done for documents. Overwriting the document
|
|
|
|
|
* reviewers/approvers is only allowed if version modification is turned on
|
|
|
|
|
* in the settings and the document is in 'draft review' status. The
|
2013-01-24 08:33:03 +00:00
|
|
|
|
* admin may even set reviewers/approvers if is disallowed in the
|
2012-10-09 09:46:24 +00:00
|
|
|
|
* settings.
|
|
|
|
|
*/
|
|
|
|
|
function maySetReviewersApprovers() { /* {{{ */
|
2013-02-14 11:10:53 +00:00
|
|
|
|
if(get_class($this->obj) == 'SeedDMS_Core_Document') {
|
2012-10-09 09:46:24 +00:00
|
|
|
|
$latestContent = $this->obj->getLatestContent();
|
|
|
|
|
$status = $latestContent->getStatus();
|
2015-03-18 10:33:15 +00:00
|
|
|
|
if ((($this->settings->_enableVersionModification && ($this->obj->getAccessMode($this->user) == M_ALL)) || $this->user->isAdmin()) && ($status["status"]==S_DRAFT_REV || $status["status"]==S_DRAFT_APP && $this->settings->_workflowMode == 'traditional_only_approval')) {
|
2012-10-09 09:46:24 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
2013-01-24 08:33:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* Check if workflow may be edited
|
|
|
|
|
*
|
|
|
|
|
* This check can only be done for documents. Overwriting the document
|
|
|
|
|
* workflow is only allowed if version modification is turned on
|
|
|
|
|
* in the settings and the document is in it's initial status. The
|
|
|
|
|
* admin may even set the workflow if is disallowed in the
|
|
|
|
|
* settings.
|
|
|
|
|
*/
|
|
|
|
|
function maySetWorkflow() { /* {{{ */
|
2013-02-14 11:10:53 +00:00
|
|
|
|
if(get_class($this->obj) == 'SeedDMS_Core_Document') {
|
2013-01-24 08:33:03 +00:00
|
|
|
|
$latestContent = $this->obj->getLatestContent();
|
|
|
|
|
$workflow = $latestContent->getWorkflow();
|
|
|
|
|
if ((($this->settings->_enableVersionModification && ($this->obj->getAccessMode($this->user) == M_ALL)) || $this->user->isAdmin()) && (!$workflow || ($workflow->getInitState()->getID() == $latestContent->getWorkflowState()->getID()))) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
2012-10-09 09:46:24 +00:00
|
|
|
|
/**
|
|
|
|
|
* Check if expiration date may be set
|
|
|
|
|
*
|
|
|
|
|
* This check can only be done for documents. Setting the documents
|
2013-04-30 15:23:24 +00:00
|
|
|
|
* expiration date is only allowed if the document has not been obsoleted.
|
2012-10-09 09:46:24 +00:00
|
|
|
|
*/
|
|
|
|
|
function maySetExpires() { /* {{{ */
|
2013-02-14 11:10:53 +00:00
|
|
|
|
if(get_class($this->obj) == 'SeedDMS_Core_Document') {
|
2012-10-09 09:46:24 +00:00
|
|
|
|
$latestContent = $this->obj->getLatestContent();
|
|
|
|
|
$status = $latestContent->getStatus();
|
2013-04-30 15:23:24 +00:00
|
|
|
|
if ((($this->obj->getAccessMode($this->user) == M_ALL) || $this->user->isAdmin()) && ($status["status"]!=S_OBSOLETE)) {
|
2012-10-09 09:46:24 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if comment may be edited
|
|
|
|
|
*
|
|
|
|
|
* This check can only be done for documents. Setting the documents
|
|
|
|
|
* comment date is only allowed if version modification is turned on in
|
|
|
|
|
* the settings and the document has not been obsoleted.
|
|
|
|
|
* The admin may set the comment even if is
|
|
|
|
|
* disallowed in the settings.
|
|
|
|
|
*/
|
|
|
|
|
function mayEditComment() { /* {{{ */
|
2013-02-14 11:10:53 +00:00
|
|
|
|
if(get_class($this->obj) == 'SeedDMS_Core_Document') {
|
2014-06-03 15:50:58 +00:00
|
|
|
|
if($this->obj->isLocked()) {
|
|
|
|
|
$lockingUser = $this->obj->getLockingUser();
|
|
|
|
|
if (($lockingUser->getID() != $this->user->getID()) && ($this->obj->getAccessMode($this->user) != M_ALL)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-10-09 09:46:24 +00:00
|
|
|
|
$latestContent = $this->obj->getLatestContent();
|
|
|
|
|
$status = $latestContent->getStatus();
|
|
|
|
|
if ((($this->settings->_enableVersionModification && ($this->obj->getAccessMode($this->user) >= M_READWRITE)) || $this->user->isAdmin()) && ($status["status"]!=S_OBSOLETE)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if attributes may be edited
|
|
|
|
|
*
|
|
|
|
|
* Setting the object attributes
|
|
|
|
|
* is only allowed if version modification is turned on in
|
|
|
|
|
* the settings and the document has not been obsoleted.
|
|
|
|
|
* The admin may set the comment even if is
|
|
|
|
|
* disallowed in the settings.
|
|
|
|
|
*/
|
|
|
|
|
function mayEditAttributes() { /* {{{ */
|
2013-02-14 11:10:53 +00:00
|
|
|
|
if(get_class($this->obj) == 'SeedDMS_Core_Document') {
|
2012-10-09 09:46:24 +00:00
|
|
|
|
$latestContent = $this->obj->getLatestContent();
|
|
|
|
|
$status = $latestContent->getStatus();
|
2013-01-24 08:33:03 +00:00
|
|
|
|
$workflow = $latestContent->getWorkflow();
|
|
|
|
|
if ((($this->settings->_enableVersionModification && ($this->obj->getAccessMode($this->user) >= M_READWRITE)) || $this->user->isAdmin()) && ($status["status"]==S_DRAFT_REV || ($workflow && $workflow->getInitState()->getID() == $latestContent->getWorkflowState()->getID()))) {
|
2012-10-09 09:46:24 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
2012-10-23 09:17:07 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if document content may be reviewed
|
|
|
|
|
*
|
|
|
|
|
* Reviewing a document content is only allowed if the document was not
|
|
|
|
|
* obsoleted. There are other requirements which are not taken into
|
|
|
|
|
* account here.
|
|
|
|
|
*/
|
|
|
|
|
function mayReview() { /* {{{ */
|
2013-02-14 11:10:53 +00:00
|
|
|
|
if(get_class($this->obj) == 'SeedDMS_Core_Document') {
|
2012-10-23 09:17:07 +00:00
|
|
|
|
$latestContent = $this->obj->getLatestContent();
|
|
|
|
|
$status = $latestContent->getStatus();
|
|
|
|
|
if ($status["status"]!=S_OBSOLETE) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if document content may be approved
|
|
|
|
|
*
|
|
|
|
|
* Approving a document content is only allowed if the document was not
|
|
|
|
|
* obsoleted. There are other requirements which are not taken into
|
|
|
|
|
* account here.
|
|
|
|
|
*/
|
|
|
|
|
function mayApprove() { /* {{{ */
|
2013-02-14 11:10:53 +00:00
|
|
|
|
if(get_class($this->obj) == 'SeedDMS_Core_Document') {
|
2012-10-23 09:17:07 +00:00
|
|
|
|
$latestContent = $this->obj->getLatestContent();
|
|
|
|
|
$status = $latestContent->getStatus();
|
|
|
|
|
if ($status["status"]!=S_OBSOLETE) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
2012-10-09 09:46:24 +00:00
|
|
|
|
}
|
|
|
|
|
?>
|