43 $this->
user = $DIC->user();
53 public function getLocks($uri, $returnChildLocks)
55 $sabre_locks = array();
59 $ref_id = $this->uri_path_resolver->getRefIdForWebDAVPath($uri);
61 $obj_id = $this->repo_helper->getObjectIdFromRefId($ref_id);
64 if ($lock_on_obj !=
false) {
65 $sabre_locks[] = $lock_on_obj->getAsSabreDavLock($uri);
69 if ($returnChildLocks) {
89 foreach ($this->repo_helper->getChildrenOfRefId($ref_id) as $child_ref) {
91 $child_obj_id = $this->repo_helper->getObjectIdFromRefId($child_ref);
92 if ($this->obj_dav_helper->isDAVableObject($child_obj_id,
false)) {
94 $title = $this->repo_helper->getObjectTitleFromObjId($child_obj_id,
true);
96 if ($child_ilias_locks !=
false) {
97 foreach ($child_ilias_locks as $lock) {
98 $sabre_locks[] = $lock->getAsSabreDavLock($uri .
'/' . $title);
103 $sabre_locks = $this->
getLocksRecursive($sabre_locks, $child_ref, $uri . $title .
'/');
116 $ilias_lock = $this->db_manager->getLockObjectWithTokenFromDB($lockInfo->token);
118 if ($ilias_lock && $ilias_lock->getIliasOwner() == $this->
user->getId()) {
119 $this->db_manager->removeLockWithTokenFromDB($lockInfo->token);
121 throw new Exception\Forbidden();
131 public function lock($uri,
Sabre\DAV\Locks\LockInfo $lock_info)
134 $ref_id = $this->uri_path_resolver->getRefIdForWebDAVPath($uri);
136 if ($ref_id > 0 && $this->repo_helper->checkAccess(
'write', $ref_id)) {
137 $obj_id = $this->repo_helper->getObjectIdFromRefId($ref_id);
139 $this->db_manager->saveLockToDB($ilias_lock);
141 throw new Exception\Forbidden();
144 if ($e->getCode() == -1) {
162 return $this->db_manager->getLockObjectWithObjIdFromDB($obj_id);
getLocksRecursive($sabre_locks, $ref_id, $uri)
Iterates recursive through the ilias tree to search for locked objects.
unlock($uri, Sabre\DAV\Locks\LockInfo $lockInfo)
Class ilWebDAVRepositoryHelper.
getLocks($uri, $returnChildLocks)
This function returns all locks and child locks as SabreDAV lock objects It is needed for sabreDAV to...
lock($uri, Sabre\DAV\Locks\LockInfo $lock_info)
Function for the sabreDAV interface.
Class ilWebDAVObjDAVHelper.
__construct($db_manager=null, ilWebDAVRepositoryHelper $repo_helper=null)
Constructor with dependency injection.
Class ilWebDAVLockBackend.
getLocksOnObjectId(int $obj_id)
Returns lock on given object.
static createFromSabreLock(Sabre\DAV\Locks\LockInfo $lock_info, $obj_id)
Creates an ILIAS lock object from a sabreDAV lock object.
Class ilWebDAVUriPathResolver.