????

Your IP : 216.73.217.84


Current Path : /home/arabianr/public_html/wp-content/plugins/simplybook/app/Http/Endpoints/
Upload File :
Current File : /home/arabianr/public_html/wp-content/plugins/simplybook/app/Http/Endpoints/DomainEndpoint.php

<?php

namespace SimplyBook\Http\Endpoints;

use SimplyBook\Http\ApiClient;
use SimplyBook\Traits\LegacySave;
use SimplyBook\Traits\LegacyLoad;
use SimplyBook\Traits\HasRestAccess;
use SimplyBook\Traits\HasAllowlistControl;
use SimplyBook\Interfaces\SingleEndpointInterface;

class DomainEndpoint implements SingleEndpointInterface
{
    use LegacySave;
    use LegacyLoad;
    use HasRestAccess;
    use HasAllowlistControl;

    public const ROUTE = 'get_domain';

    private ApiClient $client;

    public function __construct(ApiClient $client)
    {
        $this->client = $client;
    }

    /**
     * Only enable this endpoint if the user has access to the admin area
     */
    public function enabled(): bool
    {
        return $this->adminAccessAllowed();
    }

    /**
     * @inheritDoc
     */
    public function registerRoute(): string
    {
        return self::ROUTE;
    }

    /**
     * @inheritDoc
     */
    public function registerArguments(): array
    {
        return [
            'methods' => \WP_REST_Server::READABLE,
            'callback' => [$this, 'callback'],
        ];
    }

    /**
     * Return the company login domain in the WP_REST_Response.
     */
    public function callback(\WP_REST_Request $request): \WP_REST_Response
    {
        $domain = $this->get_domain();
        $companyLoginPath = $this->client->get_company_login();

        return $this->sendHttpResponse([
            'domain' => "https://$companyLoginPath.secure.$domain/",
        ]);
    }
}