trans('app.dav_tasks'), '{'.CalDAVPlugin::NS_CALDAV.'}calendar-description' => trans('app.dav_tasks_description', ['name' => $this->user->name]), '{'.CalDAVPlugin::NS_CALDAV.'}calendar-timezone' => $this->user->timezone, '{'.CalDAVPlugin::NS_CALDAV.'}supported-calendar-component-set' => new SupportedCalendarComponentSet(['VTODO']), '{'.CalDAVPlugin::NS_CALDAV.'}schedule-calendar-transp' => new ScheduleCalendarTransp(ScheduleCalendarTransp::TRANSPARENT), ]; } /** * Returns the collection of all tasks. * * @param mixed|null $collectionId * @return \Illuminate\Support\Collection */ public function getObjects($collectionId) { return $this->user->account ->tasks() ->get(); } /** * Returns the collection of deleted tasks. * * @param string|null $collectionId * @return \Illuminate\Support\Collection */ public function getDeletedObjects($collectionId) { return collect(); } /** * Returns the contact for the specific uuid. * * @param mixed|null $collectionId * @param string $uuid * @return mixed */ public function getObjectUuid($collectionId, $uuid) { return Task::where([ 'account_id' => $this->user->account_id, 'uuid' => $uuid, ])->first(); } /** * Extension for Calendar objects. * * @return string */ public function getExtension() { return '.ics'; } /** * Datas for this task. * * @param mixed $obj * @return array */ public function prepareData($obj) { $calendardata = null; if ($obj instanceof Task) { try { $calendardata = $this->refreshObject($obj); return [ 'id' => $obj->id, 'uri' => $this->encodeUri($obj), 'calendardata' => $calendardata, 'etag' => '"'.sha1($calendardata).'"', 'lastmodified' => $obj->updated_at->timestamp, ]; } catch (\Exception $e) { Log::error(__CLASS__.' '.__FUNCTION__.': '.$e->getMessage(), [ 'calendardata' => $calendardata, $e, ]); } } return []; } /** * Get the new exported version of the object. * * @param mixed $obj task * @return string */ protected function refreshObject($obj): string { $vcal = app(ExportTask::class) ->execute([ 'account_id' => $this->user->account_id, 'task_id' => $obj->id, ]); return $vcal->serialize(); } /** * Updates an existing calendarobject, based on it's uri. * * The object uri is only the basename, or filename and not a full path. * * It is possible return an etag from this function, which will be used in * the response to this PUT request. Note that the ETag must be surrounded * by double-quotes. * * However, you should only really return this ETag if you don't mangle the * calendar-data. If the result of a subsequent GET to this object is not * the exact same as this request body, you should omit the ETag. * * @param string $objectUri * @param string $calendarData * @return string|null */ public function updateOrCreateCalendarObject($calendarId, $objectUri, $calendarData): ?string { $task_id = null; if ($objectUri) { $task = $this->getObject($this->backendUri(), $objectUri); if ($task) { $task_id = $task->id; } } try { $result = app(ImportTask::class) ->execute([ 'account_id' => $this->user->account_id, 'task_id' => $task_id, 'entry' => $calendarData, ]); if (! Arr::has($result, 'error')) { $task = Task::where('account_id', $this->user->account_id) ->find($result['task_id']); $calendar = $this->prepareData($task); return $calendar['etag']; } } catch (\Exception $e) { Log::error(__CLASS__.' '.__FUNCTION__.': '.$e->getMessage(), [ 'calendarId' => $calendarId, 'objectUri' => $objectUri, 'calendarData' => $calendarData, $e, ]); } return null; } /** * Deletes an existing calendar object. * * The object uri is only the basename, or filename and not a full path. * * @param string $objectUri * @return void */ public function deleteCalendarObject($objectUri) { $task = $this->getObject($this->backendUri(), $objectUri); if ($task) { try { app(DestroyTask::class) ->execute([ 'account_id' => $this->user->account_id, 'task_id' => $task->id, ]); } catch (\Exception $e) { Log::error(__CLASS__.' '.__FUNCTION__.': '.$e->getMessage(), [ 'objectUri' => $objectUri, $e, ]); } } } }