12 require_once(
'AwlQuery.php');
35 private $target_collection_id;
40 private $target_resource_id;
50 private $dav_owner_id;
60 private $grantor_collection_privileges;
69 $this->dav_name =
null;
70 $this->target_collection_id =
null;
71 $this->target_resource_id =
null;
73 $this->expired =
true;
74 $this->dav_owner_id =
null;
75 $this->ticket_id = $ticket_id;
76 $this->privileges = 0;
77 $this->grantor_collection_privileges = 0;
80 'SELECT access_ticket.*, collection.dav_name, (access_ticket.expires < current_timestamp) AS expired,
81 path_privs(access_ticket.dav_owner_id,collection.dav_name,:scan_depth) AS grantor_collection_privileges
82 FROM access_ticket JOIN collection ON (target_collection_id = collection_id)
83 WHERE ticket_id = :ticket_id::text',
84 array(
':ticket_id' => $ticket_id,
':scan_depth' => $c->permission_scan_depth)
86 if ( $qry->Exec(
'DAVTicket',__LINE__,__FILE__) && $qry->rows() == 1 && $t = $qry->Fetch() ) {
87 if ( ! $t->expired ) {
88 foreach( $t AS $k => $v ) {
91 $this->expired =
false;
92 $this->privileges = bindec($this->privileges);
93 $this->grantor_collection_privileges = bindec($this->grantor_collection_privileges);
94 dbg_error_log(
'DAVTicket',
'Found a current ticket for "%s"', implode(
', ',bits_to_privilege($this->privileges())) );
97 dbg_error_log(
'DAVTicket',
'Found an expired ticket: %s - %s', $ticket_id, $t->expires );
100 if ( isset($this->target_resource_id) ) {
101 $qry =
new AwlQuery(
'SELECT dav_name FROM caldav_data WHERE dav_id = :dav_id', array(
':dav_id' => $this->target_resource_id ) );
102 if ( $qry->Exec(
'DAVTicket',__LINE__,__FILE__) && $qry->rows() == 1 && $r = $qry->Fetch() ) {
103 $this->dav_name = $r->dav_name;
109 function dav_name() {
110 return $this->dav_name;
115 return $this->ticket_id;
119 function privileges() {
120 return ($this->privileges & $this->grantor_collection_privileges);
124 function MatchesPath( $test_path ) {
125 $length = strlen($this->dav_name);
126 return (substr($test_path, 0, $length) == $this->dav_name);
129 function MatchesResource( $test_resource_id ) {
130 return ($test_resource_id == $this->target_collection_id || $test_resource_id == $this->target_resource_id);