Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/vendor/hubspot/api-client/lib/Http/
Upload File :
Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/vendor/hubspot/api-client/lib/Http/Auth.php

<?php

namespace HubSpot\Http;

use HubSpot\Config;

class Auth
{
    public static function chooseAuth(array $options, Config $config): array
    {
        $auth = [
            'type' => null,
            'value' => null,
        ];

        if (array_key_exists('authType', $options)) {
            if ('none' !== $options['authType'] && array_key_exists($options['authType'], static::getAuthTypes())) {
                $method = static::getAuthTypes()[$options['authType']];
                if (!empty($config->{$method}())) {
                    $auth['type'] = $options['authType'];
                    $auth['value'] = $config->{$method}();
                }
            }
        } else {
            foreach (static::getAuthTypes() as $type => $method) {
                if (!empty($config->{$method}())) {
                    $auth['type'] = $type;
                    $auth['value'] = $config->{$method}();

                    break;
                }
            }
        }

        return $auth;
    }

    public static function getAuthTypes(): array
    {
        return [
            'accessToken' => 'getAccessToken',
            'developerApiKey' => 'getDeveloperApiKey',
            'hapikey' => 'getApiKey',
        ];
    }
}