3 declare(strict_types=1);
38 $select_query =
"SELECT SELECT EXISTS(SELECT 1 FROM $this->lock_table WHERE token = " .
39 $this->db->quote($token,
'text') .
") AS count";
40 $select_result = $this->db->query($select_query);
41 $select_result->numRows();
42 $row = $this->db->fetchAssoc($select_result);
51 $query =
"SELECT obj_id, ilias_owner, dav_owner, expires, depth, type, scope FROM $this->lock_table" 52 .
" WHERE token = " . $this->db->quote($token,
'text')
53 .
" AND expires > " . $this->db->quote(time(),
'integer');
55 $select_result = $this->db->query(
$query);
56 $row = $this->db->fetchAssoc($select_result);
62 (
int) $row[
'ilias_owner'],
64 (
int) $row[
'expires'],
76 $query =
"SELECT token, ilias_owner, dav_owner, expires, depth, type, scope FROM $this->lock_table WHERE obj_id = " 77 . $this->db->quote($obj_id,
'integer')
78 .
" AND expires > " . $this->db->quote(time(),
'integer');
79 $select_result = $this->db->query(
$query);
80 $row = $this->db->fetchAssoc($select_result);
86 (
int) $row[
'ilias_owner'],
88 (
int) $row[
'expires'],
100 $this->db->insert($this->lock_table, array(
101 'token' => array(
'text', $ilias_lock->
getToken()),
102 'obj_id' => array(
'integer', $ilias_lock->
getObjId()),
103 'ilias_owner' => array(
'integer', $ilias_lock->
getIliasOwner()),
104 'dav_owner' => array(
'text', $ilias_lock->
getDavOwner()),
105 'expires' => array(
'integer', $ilias_lock->
getExpires()),
106 'depth' => array(
'integer', $ilias_lock->
getDepth()),
107 'type' => array(
'text', $ilias_lock->
getType()),
108 'scope' => array(
'integer', $ilias_lock->
getScope())
114 return $this->db->manipulate(
"DELETE FROM $this->lock_table WHERE token = " . $this->db->quote($token,
"integer"));
119 return $this->db->manipulate(
"DELETE FROM $this->lock_table WHERE expires < " . $this->db->quote(time(),
'integer'));
124 return $this->db->update(
126 [
"obj_id" => [
"integer", $new_obj_id]],
127 [
"obj_id" => [
"integer", $old_obj_id]]
checkIfLockExistsInDB(string $token)
purgeExpiredLocksFromDB()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getLockObjectWithObjIdFromDB(int $obj_id)
getLockObjectWithTokenFromDB(string $token)
updateLocks(int $old_obj_id, int $new_obj_id)
removeLockWithTokenFromDB(string $token)
__construct(ilDBInterface $db)
saveLockToDB(ilWebDAVLockObject $ilias_lock)