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 {
|
2015-08-07 11:11:50 +00:00
|
|
|
|
/**
|
|
|
|
|
* @var object $dms reference to dms
|
|
|
|
|
* @access protected
|
|
|
|
|
*/
|
2015-08-07 11:16:30 +00:00
|
|
|
|
private $dms;
|
2015-08-07 11:11:50 +00:00
|
|
|
|
|
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;
|
|
|
|
|
|
2023-10-13 11:33:14 +00:00
|
|
|
|
/**
|
|
|
|
|
* @var array $legacy_access list of objects with access
|
|
|
|
|
* @access protected
|
|
|
|
|
*/
|
|
|
|
|
private $legacy_access;
|
|
|
|
|
|
2015-08-07 11:11:50 +00:00
|
|
|
|
function __construct($dms, $obj, $user, $settings) { /* {{{ */
|
|
|
|
|
$this->dms = $dms;
|
2012-10-09 09:46:24 +00:00
|
|
|
|
$this->obj = $obj;
|
|
|
|
|
$this->user = $user;
|
|
|
|
|
$this->settings = $settings;
|
2023-10-13 11:33:14 +00:00
|
|
|
|
$this->legacy_access['guest'] = array(
|
|
|
|
|
'Calendar',
|
2024-05-02 16:12:10 +00:00
|
|
|
|
'Download',
|
2023-10-13 11:33:14 +00:00
|
|
|
|
'ErrorDlg',
|
|
|
|
|
'Help',
|
|
|
|
|
'Login',
|
|
|
|
|
'Search',
|
|
|
|
|
'ViewDocument',
|
|
|
|
|
'ViewFolder',
|
2024-05-02 16:12:10 +00:00
|
|
|
|
'ViewOnline',
|
2023-10-13 11:33:14 +00:00
|
|
|
|
);
|
|
|
|
|
$this->legacy_access['user'] = array(
|
|
|
|
|
'AddDocument',
|
|
|
|
|
'AddDocumentLink',
|
|
|
|
|
'AddEvent',
|
|
|
|
|
'AddFile',
|
|
|
|
|
'AddSubFolder',
|
|
|
|
|
'AddToTransmittal',
|
|
|
|
|
'ApprovalSummary',
|
|
|
|
|
'ApproveDocument',
|
|
|
|
|
'Calendar',
|
|
|
|
|
'CategoryChooser',
|
|
|
|
|
'ChangePassword',
|
|
|
|
|
'CheckInDocument',
|
|
|
|
|
'Clipboard',
|
|
|
|
|
'Dashboard',
|
|
|
|
|
'DocumentAccess',
|
|
|
|
|
'DocumentChooser',
|
|
|
|
|
'DocumentNotify',
|
|
|
|
|
'DocumentVersionDetail',
|
2024-05-02 16:12:10 +00:00
|
|
|
|
'Download',
|
2023-10-13 11:33:14 +00:00
|
|
|
|
'DropFolderChooser',
|
|
|
|
|
'EditAttributes',
|
|
|
|
|
'EditComment',
|
|
|
|
|
'EditDocumentFile',
|
|
|
|
|
'EditDocument',
|
|
|
|
|
'EditEvent',
|
|
|
|
|
'EditFolder',
|
|
|
|
|
'EditOnline',
|
|
|
|
|
'EditUserData',
|
|
|
|
|
'ErrorDlg',
|
|
|
|
|
'FolderAccess',
|
|
|
|
|
'FolderChooser',
|
|
|
|
|
'FolderNotify',
|
|
|
|
|
'ForcePasswordChange',
|
|
|
|
|
'GroupView',
|
|
|
|
|
'Help',
|
|
|
|
|
'KeywordChooser',
|
|
|
|
|
'Login',
|
|
|
|
|
'ManageNotify',
|
|
|
|
|
'MoveDocument',
|
|
|
|
|
'MoveFolder',
|
|
|
|
|
'MyAccount',
|
|
|
|
|
'MyDocuments',
|
|
|
|
|
'OpensearchDesc',
|
|
|
|
|
'OverrideContentStatus',
|
|
|
|
|
'PasswordForgotten',
|
|
|
|
|
'PasswordSend',
|
|
|
|
|
'ReceiptDocument',
|
|
|
|
|
'ReceiptSummary',
|
|
|
|
|
'RemoveDocumentFile',
|
|
|
|
|
'RemoveDocument',
|
|
|
|
|
'RemoveEvent',
|
|
|
|
|
'RemoveFolderFiles',
|
|
|
|
|
'RemoveFolder',
|
|
|
|
|
'RemoveTransmittal',
|
|
|
|
|
'RemoveVersion',
|
|
|
|
|
'RemoveWorkflowFromDocument',
|
|
|
|
|
'ReturnFromSubWorkflow',
|
|
|
|
|
'ReviewDocument',
|
|
|
|
|
'ReviewSummary',
|
|
|
|
|
'ReviseDocument',
|
|
|
|
|
'RevisionSummary',
|
|
|
|
|
'RewindWorkflow',
|
|
|
|
|
'RunSubWorkflow',
|
|
|
|
|
'Search',
|
|
|
|
|
'Session',
|
|
|
|
|
'SetExpires',
|
|
|
|
|
'SetRecipients',
|
|
|
|
|
'SetReviewersApprovers',
|
|
|
|
|
'SetRevisors',
|
|
|
|
|
'SetWorkflow',
|
|
|
|
|
'SubstituteUser',
|
|
|
|
|
'Tasks',
|
|
|
|
|
'TransmittalMgr',
|
|
|
|
|
'TriggerWorkflow',
|
|
|
|
|
'UpdateDocument',
|
|
|
|
|
'UserDefaultKeywords',
|
|
|
|
|
'UserImage',
|
|
|
|
|
'UsrView',
|
|
|
|
|
'ViewDocument',
|
|
|
|
|
'ViewEvent',
|
|
|
|
|
'ViewFolder',
|
2024-05-02 16:12:10 +00:00
|
|
|
|
'ViewOnline',
|
2023-10-13 11:33:14 +00:00
|
|
|
|
'WorkflowGraph',
|
|
|
|
|
'WorkflowSummary');
|
2012-10-09 09:46:24 +00:00
|
|
|
|
} /* }}} */
|
|
|
|
|
|
2016-03-09 06:44:12 +00:00
|
|
|
|
/**
|
|
|
|
|
* Check if editing 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.
|
|
|
|
|
*/
|
2017-08-02 04:46:44 +00:00
|
|
|
|
function mayEditVersion($vno=0) { /* {{{ */
|
2019-08-08 07:05:40 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2017-08-02 04:46:44 +00:00
|
|
|
|
if($vno)
|
|
|
|
|
$version = $this->obj->getContentByVersion($vno);
|
|
|
|
|
else
|
|
|
|
|
$version = $this->obj->getLatestContent();
|
2020-05-28 05:59:57 +00:00
|
|
|
|
if (!isset($this->settings->_editOnlineFileTypes) || !is_array($this->settings->_editOnlineFileTypes) || (!in_array(strtolower($version->getFileType()), $this->settings->_editOnlineFileTypes) && !in_array(strtolower($version->getMimeType()), $this->settings->_editOnlineFileTypes)))
|
2016-03-09 06:44:12 +00:00
|
|
|
|
return false;
|
|
|
|
|
if ($this->obj->getAccessMode($this->user) == M_ALL || $this->user->isAdmin()) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
2012-10-09 09:46:24 +00:00
|
|
|
|
/**
|
|
|
|
|
* 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() { /* {{{ */
|
2019-08-08 07:05:40 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2012-10-09 09:46:24 +00:00
|
|
|
|
$versions = $this->obj->getContent();
|
2023-10-13 11:33:14 +00:00
|
|
|
|
if ((($this->settings->_enableVersionDeletion && ($this->obj->getAccessMode($this->user, 'removeVersion') == M_ALL)) || $this->user->isAdmin() ) && (count($versions) > 1)) {
|
2012-10-09 09:46:24 +00:00
|
|
|
|
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() { /* {{{ */
|
2019-08-08 07:05:40 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2021-06-25 07:02:39 +00:00
|
|
|
|
if($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;
|
|
|
|
|
}
|
2012-10-09 09:46:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
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
|
2017-08-02 08:53:50 +00:00
|
|
|
|
* in the settings and the document has not been reviewed/approved by any
|
|
|
|
|
* user/group already.
|
|
|
|
|
* The admin may even set reviewers/approvers if is disallowed in the
|
2012-10-09 09:46:24 +00:00
|
|
|
|
* settings.
|
|
|
|
|
*/
|
|
|
|
|
function maySetReviewersApprovers() { /* {{{ */
|
2019-08-08 07:05:40 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2021-06-25 07:02:39 +00:00
|
|
|
|
if($latestContent = $this->obj->getLatestContent()) {
|
|
|
|
|
$status = $latestContent->getStatus();
|
|
|
|
|
$reviewstatus = $latestContent->getReviewStatus();
|
|
|
|
|
$hasreview = false;
|
|
|
|
|
foreach($reviewstatus as $r) {
|
|
|
|
|
if($r['status'] == 1 || $r['status'] == -1)
|
|
|
|
|
$hasreview = true;
|
|
|
|
|
}
|
|
|
|
|
$approvalstatus = $latestContent->getApprovalStatus();
|
|
|
|
|
$hasapproval = false;
|
|
|
|
|
foreach($approvalstatus as $r) {
|
|
|
|
|
if($r['status'] == 1 || $r['status'] == -1)
|
|
|
|
|
$hasapproval = true;
|
|
|
|
|
}
|
|
|
|
|
if ((($this->settings->_enableVersionModification && ($this->obj->getAccessMode($this->user) == M_ALL)) || $this->user->isAdmin()) && (($status["status"]==S_DRAFT_REV && !$hasreview) || ($status["status"]==S_DRAFT_APP && !$hasreview && !$hasapproval))) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2012-10-09 09:46:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
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() { /* {{{ */
|
2019-08-08 07:05:40 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2021-06-25 07:02:39 +00:00
|
|
|
|
if($latestContent = $this->obj->getLatestContent()) {
|
|
|
|
|
$workflow = $latestContent->getWorkflow();
|
|
|
|
|
$workflowstate = $latestContent->getWorkflowState();
|
|
|
|
|
if ((($this->settings->_enableVersionModification && ($this->obj->getAccessMode($this->user) == M_ALL)) || $this->user->isAdmin()) && (!$workflow || ($workflowstate && ($workflow->getInitState()->getID() == $workflowstate->getID())))) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-01-24 08:33:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
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() { /* {{{ */
|
2019-08-08 07:05:40 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2021-06-25 07:02:39 +00:00
|
|
|
|
if($latestContent = $this->obj->getLatestContent()) {
|
|
|
|
|
$status = $latestContent->getStatus();
|
|
|
|
|
if ((($this->obj->getAccessMode($this->user) == M_ALL) || $this->user->isAdmin()) && ($status["status"]!=S_OBSOLETE)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2012-10-09 09:46:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
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
|
2021-06-25 06:54:05 +00:00
|
|
|
|
* the settings and the document has not been obsoleted or expired.
|
2012-10-09 09:46:24 +00:00
|
|
|
|
* The admin may set the comment even if is
|
|
|
|
|
* disallowed in the settings.
|
|
|
|
|
*/
|
|
|
|
|
function mayEditComment() { /* {{{ */
|
2019-08-08 07:05:40 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2021-06-25 06:54:05 +00:00
|
|
|
|
if($this->obj->getAccessMode($this->user) < M_READWRITE)
|
|
|
|
|
return false;
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-06-25 07:02:39 +00:00
|
|
|
|
if($latestContent = $this->obj->getLatestContent()) {
|
|
|
|
|
$status = $latestContent->getStatus();
|
|
|
|
|
if (($this->settings->_enableVersionModification || $this->user->isAdmin()) && !in_array($status["status"], array(S_OBSOLETE, S_EXPIRED))) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2012-10-09 09:46:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if attributes may be edited
|
|
|
|
|
*
|
|
|
|
|
* Setting the object attributes
|
|
|
|
|
* is only allowed if version modification is turned on in
|
2021-06-25 06:54:05 +00:00
|
|
|
|
* the settings or the document is still in an approval/review
|
|
|
|
|
* or intial workflow step.
|
2012-10-09 09:46:24 +00:00
|
|
|
|
*/
|
|
|
|
|
function mayEditAttributes() { /* {{{ */
|
2019-08-08 07:05:40 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2021-06-25 07:02:39 +00:00
|
|
|
|
if($latestContent = $this->obj->getLatestContent()) {
|
|
|
|
|
$status = $latestContent->getStatus();
|
|
|
|
|
$workflow = $latestContent->getWorkflow();
|
|
|
|
|
$workflowstate = $latestContent->getWorkflowState();
|
|
|
|
|
if($this->obj->getAccessMode($this->user) < M_READWRITE)
|
|
|
|
|
return false;
|
|
|
|
|
if ($this->settings->_enableVersionModification || in_array($status["status"], array(S_DRAFT_REV, S_DRAFT_APP)) || ($workflow && $workflowstate && $workflow->getInitState()->getID() == $workflowstate->getID())) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2012-10-09 09:46:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
2012-10-23 09:17:07 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if document content may be reviewed
|
|
|
|
|
*
|
2018-01-08 09:49:36 +00:00
|
|
|
|
* Reviewing a document content is only allowed if the document is in
|
|
|
|
|
* review. There are other requirements which are not taken into
|
2012-10-23 09:17:07 +00:00
|
|
|
|
* account here.
|
|
|
|
|
*/
|
|
|
|
|
function mayReview() { /* {{{ */
|
2019-08-08 07:05:40 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2021-06-25 07:02:39 +00:00
|
|
|
|
if($latestContent = $this->obj->getLatestContent()) {
|
|
|
|
|
$status = $latestContent->getStatus();
|
|
|
|
|
if ($status["status"]==S_DRAFT_REV) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2012-10-23 09:17:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
2017-01-16 11:59:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* Check if a review maybe edited
|
|
|
|
|
*
|
|
|
|
|
* A review may only be updated by the user who originaly addedd the
|
|
|
|
|
* review and if it is allowed in the settings
|
|
|
|
|
*/
|
|
|
|
|
function mayUpdateReview($updateUser) { /* {{{ */
|
2019-09-06 12:54:11 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2017-01-16 11:59:41 +00:00
|
|
|
|
if($this->settings->_enableUpdateRevApp && ($updateUser == $this->user) && !$this->obj->hasExpired()) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
2012-10-23 09:17:07 +00:00
|
|
|
|
/**
|
|
|
|
|
* Check if document content may be approved
|
|
|
|
|
*
|
2018-01-08 09:49:36 +00:00
|
|
|
|
* Approving a document content is only allowed if the document is either
|
|
|
|
|
* in approval status or released. In the second case the approval can be
|
|
|
|
|
* edited.
|
2015-06-15 06:53:39 +00:00
|
|
|
|
* There are other requirements which are not taken into
|
2012-10-23 09:17:07 +00:00
|
|
|
|
* account here.
|
|
|
|
|
*/
|
|
|
|
|
function mayApprove() { /* {{{ */
|
2019-08-08 07:05:40 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2021-06-25 07:02:39 +00:00
|
|
|
|
if($latestContent = $this->obj->getLatestContent()) {
|
|
|
|
|
$status = $latestContent->getStatus();
|
|
|
|
|
if ($status["status"]==S_DRAFT_APP) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2012-10-23 09:17:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
2017-01-16 11:59:41 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if a approval maybe edited
|
|
|
|
|
*
|
|
|
|
|
* An approval may only be updated by the user who originaly addedd the
|
|
|
|
|
* approval and if it is allowed in the settings
|
|
|
|
|
*/
|
|
|
|
|
function mayUpdateApproval($updateUser) { /* {{{ */
|
2019-09-06 12:54:11 +00:00
|
|
|
|
if($this->obj->isType('document')) {
|
2017-01-16 11:59:41 +00:00
|
|
|
|
if($this->settings->_enableUpdateRevApp && ($updateUser == $this->user) && !$this->obj->hasExpired()) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
2021-04-18 11:01:11 +00:00
|
|
|
|
|
2023-10-13 11:33:14 +00:00
|
|
|
|
public function allowLegacyAccess($access, $role) { /* {{{ */
|
|
|
|
|
if($role == 'user' || $role == 'guest') {
|
|
|
|
|
$this->legacy_access[$role][] = $access;
|
|
|
|
|
}
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
2021-04-18 11:01:11 +00:00
|
|
|
|
protected function check_view_legacy_access($view, $get=array()) { /* {{{ */
|
|
|
|
|
if($this->user->isAdmin())
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
if(is_string($view)) {
|
|
|
|
|
$scripts = array($view);
|
|
|
|
|
} elseif(is_array($view)) {
|
|
|
|
|
$scripts = $view;
|
|
|
|
|
} elseif(is_subclass_of($view, 'SeedDMS_View_Common')) {
|
|
|
|
|
$scripts = array($view->getParam('class'));
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if($this->user->isGuest()) {
|
2023-10-13 11:33:14 +00:00
|
|
|
|
$user_allowed = $this->legacy_access['guest'];
|
2021-04-18 11:01:11 +00:00
|
|
|
|
} else {
|
2023-10-13 11:33:14 +00:00
|
|
|
|
$user_allowed = $this->legacy_access['user'];
|
2021-04-18 11:01:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(array_intersect($scripts, $user_allowed))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check for access permission on view
|
|
|
|
|
*
|
|
|
|
|
* This function will always return true because it was added to smooth
|
|
|
|
|
* migration from 5.1.x to 6.0.x
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $view Instanz of view, name of view or array of view names
|
|
|
|
|
* @param string $get query parameters possible containing the element 'action'
|
|
|
|
|
* @return boolean true if access is allowed, false if access is disallowed
|
|
|
|
|
* no specific access right is set, otherwise false
|
|
|
|
|
*/
|
|
|
|
|
function check_view_access($view, $get=array()) { /* {{{ */
|
|
|
|
|
return $this->check_view_legacy_access($view, $get);
|
|
|
|
|
} /* }}} */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check for access permission on controller
|
|
|
|
|
*
|
|
|
|
|
* This function will always return true because it was added to smooth
|
|
|
|
|
* migration from 5.1.x to 6.0.x
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $controller Instanz of controller, name of controller or array of controller names
|
|
|
|
|
* @param string $get query parameters
|
|
|
|
|
* @return boolean true if access is allowed otherwise false
|
|
|
|
|
*/
|
|
|
|
|
function check_controller_access($controller, $get=array()) { /* {{{ */
|
|
|
|
|
return true;
|
|
|
|
|
} /* }}} */
|
2012-10-09 09:46:24 +00:00
|
|
|
|
}
|