@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | use chillerlan\OAuth\MagicAPI\EndpointMap; |
13 | 13 | |
14 | -class SpotifyEndpoints extends EndpointMap{ |
|
14 | +class SpotifyEndpoints extends EndpointMap { |
|
15 | 15 | |
16 | 16 | protected string $API_BASE = '/v1'; |
17 | 17 |
@@ -124,7 +124,7 @@ |
||
124 | 124 | protected array $authHeaders = ['Accept' => 'application/vnd.vimeo.*+json;version='.self::API_VERSION]; |
125 | 125 | protected array $apiHeaders = ['Accept' => 'application/vnd.vimeo.*+json;version='.self::API_VERSION]; |
126 | 126 | |
127 | - protected array $defaultScopes = [ |
|
127 | + protected array $defaultScopes = [ |
|
128 | 128 | self::SCOPE_PRIVATE, |
129 | 129 | self::SCOPE_INTERACT, |
130 | 130 | ]; |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | use chillerlan\OAuth\MagicAPI\EndpointMap; |
13 | 13 | |
14 | -class OpenCachingEndpoints extends EndpointMap{ |
|
14 | +class OpenCachingEndpoints extends EndpointMap { |
|
15 | 15 | |
16 | 16 | protected string $API_BASE = '/services'; |
17 | 17 |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | use chillerlan\OAuth\MagicAPI\EndpointMap; |
13 | 13 | |
14 | -class LastFMEndpoints extends EndpointMap{ |
|
14 | +class LastFMEndpoints extends EndpointMap { |
|
15 | 15 | |
16 | 16 | /** |
17 | 17 | * Tag an album using a list of user supplied tags. |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | use chillerlan\OAuth\MagicAPI\EndpointMap; |
13 | 13 | |
14 | -class SoundCloudEndpoints extends EndpointMap{ |
|
14 | +class SoundCloudEndpoints extends EndpointMap { |
|
15 | 15 | |
16 | 16 | /** |
17 | 17 | * Returns the authenticated user’s information. |
@@ -92,13 +92,13 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public function refreshAccessToken(AccessToken $token = null):AccessToken{ |
94 | 94 | |
95 | - if($token === null){ |
|
95 | + if ($token === null) { |
|
96 | 96 | $token = $this->storage->getAccessToken($this->serviceName); |
97 | 97 | } |
98 | 98 | |
99 | 99 | $refreshToken = $token->refreshToken; |
100 | 100 | |
101 | - if(empty($refreshToken)){ |
|
101 | + if (empty($refreshToken)) { |
|
102 | 102 | throw new ProviderException( |
103 | 103 | sprintf('no refresh token available, token expired [%s]', date('Y-m-d h:i:s A', $token->expires)) |
104 | 104 | ); |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | |
121 | 121 | $newToken = $this->parseTokenResponse($this->http->sendRequest($request)); |
122 | 122 | |
123 | - if(empty($newToken->refreshToken)){ |
|
123 | + if (empty($newToken->refreshToken)) { |
|
124 | 124 | $newToken->refreshToken = $refreshToken; |
125 | 125 | } |
126 | 126 | |
@@ -143,15 +143,15 @@ discard block |
||
143 | 143 | $method = strtoupper($method ?? ''); |
144 | 144 | $token = $this->storage->getAccessToken($this->serviceName); |
145 | 145 | |
146 | - if($token->isExpired()){ |
|
146 | + if ($token->isExpired()) { |
|
147 | 147 | $this->refreshAccessToken($token); |
148 | 148 | } |
149 | 149 | |
150 | - if(!isset($params['fmt'])){ |
|
150 | + if (!isset($params['fmt'])) { |
|
151 | 151 | $params['fmt'] = 'json'; |
152 | 152 | } |
153 | 153 | |
154 | - if(in_array($method, ['POST', 'PUT', 'DELETE']) && !isset($params['client'])){ |
|
154 | + if (in_array($method, ['POST', 'PUT', 'DELETE']) && !isset($params['client'])) { |
|
155 | 155 | $params['client'] = $this->options->user_agent; // @codeCoverageIgnore |
156 | 156 | } |
157 | 157 |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | /** |
27 | 27 | * @method \Psr\Http\Message\ResponseInterface me() |
28 | 28 | */ |
29 | -class Deezer extends OAuth2Provider implements CSRFToken{ |
|
29 | +class Deezer extends OAuth2Provider implements CSRFToken { |
|
30 | 30 | |
31 | 31 | public const SCOPE_BASIC = 'basic_access'; |
32 | 32 | public const SCOPE_EMAIL = 'email'; |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | public function getAuthURL(array $params = null, array $scopes = null):UriInterface{ |
60 | 60 | $params = $params ?? []; |
61 | 61 | |
62 | - if(isset($params['client_secret'])){ |
|
62 | + if (isset($params['client_secret'])) { |
|
63 | 63 | unset($params['client_secret']); |
64 | 64 | } |
65 | 65 | |
@@ -107,11 +107,11 @@ discard block |
||
107 | 107 | protected function parseTokenResponse(ResponseInterface $response):AccessToken{ |
108 | 108 | $data = $this->parseQuery(decompress_content($response)); |
109 | 109 | |
110 | - if(isset($data['error_reason'])){ |
|
110 | + if (isset($data['error_reason'])) { |
|
111 | 111 | throw new ProviderException('error retrieving access token: "'.$data['error_reason'].'"'); |
112 | 112 | } |
113 | 113 | |
114 | - if(!isset($data['access_token'])){ |
|
114 | + if (!isset($data['access_token'])) { |
|
115 | 115 | throw new ProviderException('token missing'); |
116 | 116 | } |
117 | 117 |
@@ -62,15 +62,15 @@ discard block |
||
62 | 62 | protected function getRequestTarget(string $uri):string{ |
63 | 63 | $parsedURL = parseUrl($uri); |
64 | 64 | |
65 | - if(!isset($parsedURL['path'])){ |
|
65 | + if (!isset($parsedURL['path'])) { |
|
66 | 66 | throw new ProviderException('invalid path'); // @codeCoverageIgnore |
67 | 67 | } |
68 | 68 | |
69 | 69 | // for some reason we were given a host name |
70 | - if(isset($parsedURL['host'])){ |
|
70 | + if (isset($parsedURL['host'])) { |
|
71 | 71 | |
72 | 72 | // back out if it doesn't match |
73 | - if(strpos($parsedURL['host'], '.api.npr.org') === false){ |
|
73 | + if (strpos($parsedURL['host'], '.api.npr.org') === false) { |
|
74 | 74 | throw new ProviderException('given host does not match provider host'); // @codeCoverageIgnore |
75 | 75 | } |
76 | 76 | |
@@ -88,14 +88,14 @@ discard block |
||
88 | 88 | public function sendRequest(RequestInterface $request):ResponseInterface{ |
89 | 89 | |
90 | 90 | // get authorization only if we request the provider API |
91 | - if(strpos((string)$request->getUri(), '.api.npr.org') !== false){ |
|
91 | + if (strpos((string)$request->getUri(), '.api.npr.org') !== false) { |
|
92 | 92 | $token = $this->storage->getAccessToken($this->serviceName); |
93 | 93 | |
94 | 94 | // attempt to refresh an expired token |
95 | - if( |
|
95 | + if ( |
|
96 | 96 | $this->options->tokenAutoRefresh |
97 | 97 | && ($token->isExpired() || $token->expires === $token::EOL_UNKNOWN) |
98 | - ){ |
|
98 | + ) { |
|
99 | 99 | $token = $this->refreshAccessToken($token); // @codeCoverageIgnore |
100 | 100 | } |
101 | 101 |
@@ -120,7 +120,7 @@ |
||
120 | 120 | public function setInstance(string $instance):Mastodon{ |
121 | 121 | $instance = parseUrl($instance); |
122 | 122 | |
123 | - if(!isset($instance['scheme']) || !isset($instance['host'])){ |
|
123 | + if (!isset($instance['scheme']) || !isset($instance['host'])) { |
|
124 | 124 | throw new OAuthException('invalid instance URL'); |
125 | 125 | } |
126 | 126 |