disableFreeBusy === null) { $this->disableFreeBusy = ($this->config->getAppValue('dav', 'disableFreeBusy', 'no') === 'yes'); } $commonAcl = [ [ 'privilege' => '{DAV:}read', 'principal' => $this->getOwner(), 'protected' => true, ], [ 'privilege' => '{DAV:}read', 'principal' => $this->getOwner() . '/calendar-proxy-read', 'protected' => true, ], [ 'privilege' => '{DAV:}read', 'principal' => $this->getOwner() . '/calendar-proxy-write', 'protected' => true, ], ]; // schedule-send is an aggregate privilege for: // - schedule-send-invite // - schedule-send-reply // - schedule-send-freebusy // // If FreeBusy is disabled, we have to remove the latter privilege if ($this->disableFreeBusy) { return array_merge($commonAcl, [ [ 'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send-invite', 'principal' => $this->getOwner(), 'protected' => true, ], [ 'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send-invite', 'principal' => $this->getOwner() . '/calendar-proxy-write', 'protected' => true, ], [ 'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send-reply', 'principal' => $this->getOwner(), 'protected' => true, ], [ 'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send-reply', 'principal' => $this->getOwner() . '/calendar-proxy-write', 'protected' => true, ], ]); } return array_merge($commonAcl, [ [ 'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send', 'principal' => $this->getOwner(), 'protected' => true, ], [ 'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send', 'principal' => $this->getOwner() . '/calendar-proxy-write', 'protected' => true, ], ]); } }