ryanwinchester/hubspot-php

View on GitHub
src/Utils/OAuth2.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SevenShores\Hubspot\Utils;

class OAuth2
{
    public const AUTHORIZE_URL = 'https://app.hubspot.com/oauth/authorize';

    /**
     * Initiate an Integration with OAuth 2.0.
     *
     * @param string $clientId            the Client ID of your app
     * @param string $redirectURI         The URL that you want the visitor redirected to after granting access to your app. For security reasons, this URL must use https.
     * @param array  $scopesArray         a set of scopes that your app will need access to
     * @param array  $optionalScopesArray a set of optional scopes that your app will need access to
     */
    public static function getAuthUrl(string $clientId, string $redirectURI, array $scopesArray = [], array $optionalScopesArray = []): string
    {
        $queryParams = [
            'client_id' => $clientId,
            'redirect_uri' => $redirectURI,
        ];

        if (!empty($scopesArray)) {
            $queryParams['scope'] = implode(' ', $scopesArray);
        }

        if (!empty($optionalScopesArray)) {
            $queryParams['optional_scope'] = implode(' ', $optionalScopesArray);
        }

        return self::AUTHORIZE_URL.'?'.http_build_query($queryParams, '', '&', PHP_QUERY_RFC3986);
    }
}