????

Your IP : 216.73.216.79


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

<?php

namespace SimplyBook\Http\Entities;

use SimplyBook\Support\Helpers\Event;

/**
 * ServiceProvider entity class for managing services in the SimplyBook API.
 * This entity has dynamic attributes that can be set and retrieved, and it
 * provides methods for CRUD operations on services.
 *
 * @property int $id
 * @property string $name
 * @property string $email
 * @property string $phone
 * @property int $qty
 * @property bool $is_visible
 */
class ServiceProvider extends AbstractEntity
{
    /**
     * @inheritDoc
     */
    protected array $fillable = [
        'id',
        'name',
        'email',
        'phone',
        'qty',
        'is_visible',
    ];

    /**
     * @inheritDoc
     */
    protected array $required = [
        'name',
        'qty',
        'is_visible',
    ];

    /**
     * @inheritDoc
     */
    public function getName(): string
    {
        return $this->name ?: __('Service Provider', 'simplybook');
    }

    /**
     * @inheritDoc
     */
    public function getEndpoint(): string
    {
        return 'admin/providers';
    }

    /**
     * @inheritDoc
     */
    public function getInternalEndpoint(): string
    {
        return 'providers';
    }

    /**
     * @inheritDoc
     */
    public function getKnownErrors(): array
    {
        return [
            'phone' => [
                'invalid' => __('Phone format invalid. Please enter a valid phone number with country code (e.g., +31 123 456 789)', 'simplybook'),
                'not contain letters' => __('Phone format invalid. Please enter a valid phone number without using letters.', 'simplybook'),
            ],
            'email' => [
                'not a valid hostname' => __('The email address is invalid. Please verify your input and try again.', 'simplybook'),
                'hostname but cannot match' => __('The email address is invalid. Please verify your input and try again.', 'simplybook'),
                'local network name' => __('The email address is invalid. Please verify your input and try again.', 'simplybook'),
                'only once per day' => __('The email address can only be changed once per day.', 'simplybook'),
            ],
        ];
    }

    /**
     * Ensure the provider ID is a non-negative integer
     * @param mixed $value
     */
    public function setIdAttribute($value): int
    {
        $id = intval($value);
        return max(1, $id); // Ensure non-negative
    }

    /**
     * Sanitize the provider name as a text field.
     * @param mixed $value
     */
    protected function setNameAttribute($value): string
    {
        return sanitize_text_field($value);
    }

    /**
     * Ensure the visibility status is a boolean.
     * @param mixed $value
     */
    protected function setIsVisibleAttribute($value): bool
    {
        return filter_var($value, FILTER_VALIDATE_BOOLEAN);
    }

    /**
     * Sanitize the provider email as a valid email address.
     * @param mixed $value
     */
    protected function setEmailAttribute($value): string
    {
        return sanitize_email($value);
    }

    /**
     * Sanitize the provider phone number as a text field.
     * This is a simple sanitization, you might want to use a more complex
     * validation depending on your requirements.
     * @param mixed $value
     */
    protected function setPhoneAttribute($value): string
    {
        return sanitize_text_field($value);
    }

    /**
     * Ensure the provider quantity is a non-negative integer. SimplyBook.me
     * requires a positive quantity, so we ensure it's at least 1.
     * @param mixed $value
     */
    protected function setQtyAttribute($value): int
    {
        $qty = intval($value);
        return max(1, $qty); // Ensure non-negative
    }

    /**
     * Get all providers from the SimplyBook API.
     */
    public function all(): array
    {
        try {
            $response = $this->client->get($this->getEndpoint());
        } catch (\Throwable $e) {
            return [];
        }

        $providers = ($response['data'] ?? []);
        if (empty($providers)) {
            Event::dispatch(Event::EMPTY_PROVIDERS);
            return [];
        }

        Event::dispatch(Event::HAS_PROVIDERS, [
            'count' => count($providers),
        ]);

        return $providers;
    }
}