198 lines
5.7 KiB
PHP
198 lines
5.7 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\DAV\Backend\CalDAV;
|
|
|
|
use Illuminate\Support\Arr;
|
|
use App\Models\Contact\Task;
|
|
use App\Services\Task\DestroyTask;
|
|
use Illuminate\Support\Facades\Log;
|
|
use App\Services\VCalendar\ExportTask;
|
|
use App\Services\VCalendar\ImportTask;
|
|
use Sabre\CalDAV\Plugin as CalDAVPlugin;
|
|
use Sabre\CalDAV\Xml\Property\ScheduleCalendarTransp;
|
|
use Sabre\CalDAV\Xml\Property\SupportedCalendarComponentSet;
|
|
|
|
class CalDAVTasks extends AbstractCalDAVBackend
|
|
{
|
|
/**
|
|
* Returns the uri for this backend.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function backendUri()
|
|
{
|
|
return 'tasks';
|
|
}
|
|
|
|
public function getDescription()
|
|
{
|
|
return parent::getDescription()
|
|
+ [
|
|
'{DAV:}displayname' => 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 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' => '"'.md5($calendardata).'"',
|
|
'lastmodified' => $obj->updated_at->timestamp,
|
|
];
|
|
} catch (\Exception $e) {
|
|
Log::debug(__CLASS__.' prepareData: '.(string) $e, [$e, 'calendardata' => $calendardata]);
|
|
}
|
|
}
|
|
|
|
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::debug(__CLASS__.' updateOrCreateCalendarObject: '.(string) $e, [$e, 'calendarId' => $calendarId, 'objectUri' => $objectUri, 'calendarData' => $calendarData]);
|
|
}
|
|
|
|
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::debug(__CLASS__.' deleteCalendarObject: '.(string) $e, [$e, 'objectUri' => $objectUri]);
|
|
}
|
|
}
|
|
}
|
|
}
|