Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/ilovecveti.ru/bitrix/modules/calendar/lib/sync/icloud/ |
Upload File : |
<?php namespace Bitrix\Calendar\Sync\Icloud; use Bitrix\Calendar\Sync\Connection\Connection; use Bitrix\Calendar\Sync\Connection\Server; use Bitrix\Calendar\Sync\Managers\ServiceBase; abstract class AbstractManager extends ServiceBase { protected int $userId; protected ?ApiService $apiService = null; /** * @param Connection $connection * @param int $userId * * @throws \Bitrix\Main\ArgumentNullException */ public function __construct(Connection $connection, int $userId) { parent::__construct($connection); $this->userId = $userId; $this->apiService = $this->prepareApiService($connection); } /** * @param Connection $connection * * @return ApiService * @throws \Bitrix\Main\ArgumentNullException */ protected function prepareApiService(Connection $connection): ApiService { $server = $this->prepareServerData($connection->getServer()); return new ApiService($server, $this->userId); } /** * @return string */ protected function initServiceName(): string { return Helper::ACCOUNT_TYPE; } /** * @param Server $server * * @return array */ protected function prepareServerData(Server $server): array { return [ 'SERVER_SCHEME' => $server->getScheme(), 'SERVER_HOST' => $server->getHost(), 'SERVER_PORT' => $server->getPort(), 'SERVER_USERNAME' => $server->getUserName(), 'SERVER_PASSWORD' => $server->getPassword(), ]; } }