141 lines
4.5 KiB
PHP
141 lines
4.5 KiB
PHP
<?php
|
|
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014-2023 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
|
|
* Website: https://www.espocrm.com
|
|
*
|
|
* EspoCRM is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* EspoCRM is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of this program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
|
************************************************************************/
|
|
|
|
namespace Espo\Modules\Crm\Business\Event;
|
|
|
|
use RuntimeException;
|
|
|
|
class Ics
|
|
{
|
|
public const STATUS_CONFIRMED = 'CONFIRMED';
|
|
public const STATUS_TENTATIVE = 'TENTATIVE';
|
|
public const STATUS_CANCELLED = 'CANCELLED';
|
|
|
|
public const METHOD_REQUEST = 'REQUEST';
|
|
public const METHOD_CANCEL = 'CANCEL';
|
|
|
|
/** @var self::METHOD_* string */
|
|
private string $method;
|
|
private ?string $output = null;
|
|
private string $prodid;
|
|
private ?int $startDate = null;
|
|
private ?int $endDate = null;
|
|
private ?string $summary = null;
|
|
private ?string $address = null;
|
|
private ?string $email = null;
|
|
private ?string $who = null;
|
|
private ?string $description = null;
|
|
private ?string $uid = null;
|
|
/** @var self::STATUS_* string */
|
|
private string $status;
|
|
|
|
/**
|
|
* @param array<string, string|int|null> $attributes
|
|
* @throws RuntimeException
|
|
*/
|
|
public function __construct(string $prodid, array $attributes = [])
|
|
{
|
|
if ($prodid === '') {
|
|
throw new RuntimeException('PRODID is required');
|
|
}
|
|
|
|
$this->status = self::STATUS_CONFIRMED;
|
|
$this->method = self::METHOD_REQUEST;
|
|
$this->prodid = $prodid;
|
|
|
|
foreach ($attributes as $key => $value) {
|
|
if (!property_exists($this, $key)) {
|
|
throw new RuntimeException("Bad attribute '{$key}'.");
|
|
}
|
|
|
|
$this->$key = $value;
|
|
}
|
|
}
|
|
|
|
public function get(): string
|
|
{
|
|
if ($this->output === null) {
|
|
$this->generate();
|
|
}
|
|
|
|
/** @var string */
|
|
return $this->output;
|
|
}
|
|
|
|
private function generate(): void
|
|
{
|
|
$this->output =
|
|
"BEGIN:VCALENDAR\r\n".
|
|
"VERSION:2.0\r\n".
|
|
"PRODID:-" . $this->prodid . "\r\n".
|
|
"METHOD:" . $this->method . "\r\n".
|
|
"BEGIN:VEVENT\r\n".
|
|
"DTSTART:" . $this->formatTimestamp($this->startDate) . "\r\n".
|
|
"DTEND:" . $this->formatTimestamp($this->endDate) . "\r\n".
|
|
"SUMMARY:" . $this->escapeString($this->summary) . "\r\n".
|
|
"LOCATION:" . $this->escapeString($this->address) . "\r\n".
|
|
"ORGANIZER;CN=" . $this->escapeString($this->who) . ":MAILTO:" . $this->escapeString($this->email) . "\r\n".
|
|
"DESCRIPTION:" . $this->escapeString($this->formatMultiline($this->description)) . "\r\n".
|
|
"UID:" . $this->uid . "\r\n".
|
|
"SEQUENCE:0\r\n".
|
|
"DTSTAMP:" . $this->formatTimestamp(time()) . "\r\n".
|
|
"STATUS:" . $this->status . "\r\n" .
|
|
"END:VEVENT\r\n".
|
|
"END:VCALENDAR";
|
|
}
|
|
|
|
private function formatTimestamp(?int $timestamp): string
|
|
{
|
|
if (!$timestamp) {
|
|
$timestamp = time();
|
|
}
|
|
|
|
return date('Ymd\THis\Z', $timestamp);
|
|
}
|
|
|
|
private function escapeString(?string $string): string
|
|
{
|
|
if (!$string) {
|
|
return '';
|
|
}
|
|
|
|
/** @var string */
|
|
return preg_replace('/([\,;])/', '\\\$1', $string);
|
|
}
|
|
|
|
private function formatMultiline(?string $string): string
|
|
{
|
|
if (!$string) {
|
|
return '';
|
|
}
|
|
|
|
return str_replace(["\r\n", "\n"], "\\r\\n", $string);
|
|
}
|
|
}
|