typo3_client->request('GET', $url); } /** * Clear the cache of the given organization's website * @throws TransportExceptionInterface */ public function clearSiteCache(int $organizationId): ResponseInterface { return $this->sendCommand('/otadmin/site/clear-cache', ['organization-id' => $organizationId]); } /** * Create a new Typo3 website for the given organization * @throws TransportExceptionInterface */ public function createSite(int $organizationId): ResponseInterface { return $this->sendCommand('/otadmin/site/create', ['organization-id' => $organizationId]); } /** * Update the given organization's website with the Opentalent DB data * @throws TransportExceptionInterface */ public function updateSite(int $organizationId): ResponseInterface { return $this->sendCommand('/otadmin/site/update', ['organization-id' => $organizationId]); } /** * Mark the given organization's website as deleted. This can be reverted with 'undeleteSite' * @throws TransportExceptionInterface */ public function deleteSite(int $organizationId): ResponseInterface { return $this->sendCommand('/otadmin/site/delete', ['organization-id' => $organizationId]); } /** * Restore a website that has been deleted with 'deleteSite' * @throws TransportExceptionInterface */ public function undeleteSite(int $organizationId): ResponseInterface { return $this->sendCommand('/otadmin/site/undelete', ['organization-id' => $organizationId]); } /** * Set a custom domain for the given website * @throws TransportExceptionInterface */ public function setSiteDomain(int $organizationId, string $newDomain, bool $addRedirection=false): ResponseInterface { $params = ['organization-id' => $organizationId, 'domain' => $newDomain]; if ($addRedirection) { $params['redirect'] = 1; } return $this->sendCommand('/otadmin/site/set-domain', $params); } /** * Reset the permissions of the BE users of the given organization's website * @throws TransportExceptionInterface */ public function resetSitePerms(int $organizationId): ResponseInterface { return $this->sendCommand('/otadmin/site/reset-perms', ['organization-id' => $organizationId]); } /** * Returns the given organization's website status * @throws TransportExceptionInterface */ public function getSiteStatus(int $organizationId): ResponseInterface { return $this->sendCommand('/otadmin/site/status', ['organization-id' => $organizationId]); } /** * Returns the given organization's website status * @throws TransportExceptionInterface */ public function addRedirection(string $fromDomain, string $toDomain): ResponseInterface { return $this->sendCommand( '/otadmin/redirect/add', ['from-domain' => $fromDomain, 'to-domain' => $toDomain] ); } }