Passed
Pull Request — master (#1410)
by
unknown
42:28 queued 07:25
created

DeviceCodeGrant::validateDeviceCode()   A

Complexity

Conditions 6
Paths 6

Size

Total Lines 31
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 6.1666

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 6
eloc 15
nc 6
nop 2
dl 0
loc 31
ccs 10
cts 12
cp 0.8333
crap 6.1666
rs 9.2222
c 1
b 0
f 0
1
<?php
2
3
/**
4
 * OAuth 2.0 Device Code grant.
5
 *
6
 * @author      Andrew Millington <[email protected]>
7
 * @copyright   Copyright (c) Alex Bilbie
8
 * @license     http://mit-license.org/
9
 *
10
 * @link        https://github.com/thephpleague/oauth2-server
11
 */
12
13
declare(strict_types=1);
14
15
namespace League\OAuth2\Server\Grant;
16
17
use DateInterval;
18
use DateTimeImmutable;
19
use Error;
20
use Exception;
21
use League\OAuth2\Server\Entities\ClientEntityInterface;
22
use League\OAuth2\Server\Entities\DeviceCodeEntityInterface;
23
use League\OAuth2\Server\Entities\ScopeEntityInterface;
24
use League\OAuth2\Server\Exception\OAuthServerException;
25
use League\OAuth2\Server\Exception\UniqueTokenIdentifierConstraintViolationException;
26
use League\OAuth2\Server\Repositories\DeviceCodeRepositoryInterface;
27
use League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface;
28
use League\OAuth2\Server\RequestEvent;
29
use League\OAuth2\Server\ResponseTypes\DeviceCodeResponse;
30
use League\OAuth2\Server\ResponseTypes\ResponseTypeInterface;
31
use Psr\Http\Message\ServerRequestInterface;
32
use TypeError;
33
34
use function is_null;
35
use function random_int;
36
use function strlen;
37
use function time;
38
39
/**
40
 * Device Code grant class.
41
 */
42
class DeviceCodeGrant extends AbstractGrant
43
{
44
    protected DeviceCodeRepositoryInterface $deviceCodeRepository;
45
    private bool $includeVerificationUriComplete = false;
46
    private bool $intervalVisibility = false;
47
    private string $verificationUri;
48
49 17
    public function __construct(
50
        DeviceCodeRepositoryInterface $deviceCodeRepository,
51
        RefreshTokenRepositoryInterface $refreshTokenRepository,
52
        private DateInterval $deviceCodeTTL,
53
        string $verificationUri,
54
        private readonly int $defaultInterval = 5
55
    ) {
56 17
        $this->setDeviceCodeRepository($deviceCodeRepository);
57 17
        $this->setRefreshTokenRepository($refreshTokenRepository);
58
59 17
        $this->refreshTokenTTL = new DateInterval('P1M');
60
61 17
        $this->setVerificationUri($verificationUri);
62
    }
63
64
    /**
65
     * {@inheritdoc}
66
     */
67 2
    public function canRespondToDeviceAuthorizationRequest(ServerRequestInterface $request): bool
68
    {
69 2
        return true;
70
    }
71
72
    /**
73
     * {@inheritdoc}
74
     */
75 7
    public function respondToDeviceAuthorizationRequest(ServerRequestInterface $request): DeviceCodeResponse
76
    {
77 7
        $clientId = $this->getRequestParameter(
78 7
            'client_id',
79 7
            $request,
80 7
            $this->getServerParameter('PHP_AUTH_USER', $request)
81 7
        );
82
83 7
        if ($clientId === null) {
84 2
            throw OAuthServerException::invalidRequest('client_id');
85
        }
86
87 5
        $client = $this->getClientEntityOrFail($clientId, $request);
88
89 4
        $scopes = $this->validateScopes($this->getRequestParameter('scope', $request, $this->defaultScope));
90
91 4
        $deviceCodeEntity = $this->issueDeviceCode(
92 4
            $this->deviceCodeTTL,
93 4
            $client,
94 4
            $this->verificationUri,
95 4
            $scopes
96 4
        );
97
98 4
        $response = new DeviceCodeResponse();
99
100 4
        if ($this->includeVerificationUriComplete === true) {
101 1
            $response->includeVerificationUriComplete();
102
        }
103
104 4
        if ($this->intervalVisibility === true) {
105
            $response->includeInterval();
106 4
        }
107
108
        $response->setDeviceCodeEntity($deviceCodeEntity);
109
110
        return $response;
111
    }
112 3
113
    /**
114 3
     * {@inheritdoc}
115
     */
116 3
    public function completeDeviceAuthorizationRequest(string $deviceCode, string $userId, bool $userApproved): void
117
    {
118
        $deviceCode = $this->deviceCodeRepository->getDeviceCodeEntityByDeviceCode($deviceCode);
119
120 3
        if ($deviceCode instanceof DeviceCodeEntityInterface === false) {
121
            throw OAuthServerException::invalidRequest('device_code', 'Device code does not exist');
122
        }
123
124 3
        if ($userId === '') {
125 3
            throw OAuthServerException::invalidRequest('user_id', 'User ID is required');
126
        }
127 3
128
        $deviceCode->setUserIdentifier($userId);
129
        $deviceCode->setUserApproved($userApproved);
130
131
        $this->deviceCodeRepository->persistDeviceCode($deviceCode);
132
    }
133 7
134
    /**
135
     * {@inheritdoc}
136
     */
137
    public function respondToAccessTokenRequest(
138
        ServerRequestInterface $request,
139 7
        ResponseTypeInterface $responseType,
140 6
        DateInterval $accessTokenTTL
141 6
    ): ResponseTypeInterface {
142
        // Validate request
143 3
        $client = $this->validateClient($request);
144 3
        $scopes = $this->validateScopes($this->getRequestParameter('scope', $request, $this->defaultScope));
145
        $deviceCodeEntity = $this->validateDeviceCode($request, $client);
146
147 3
        // If device code has no user associated, respond with pending or slow down
148 1
        if (is_null($deviceCodeEntity->getUserIdentifier())) {
149
            $shouldSlowDown = false;
150
151 2
            if ($this->deviceCodePolledTooSoon($deviceCodeEntity) === true) {
152 1
                $deviceCodeEntity->setInterval($deviceCodeEntity->getInterval() + 5);
153
154
                $shouldSlowDown = true;
155
            }
156 1
157
            $deviceCodeEntity->setLastPolledAt(new DateTimeImmutable());
158
            $this->deviceCodeRepository->persistDeviceCode($deviceCodeEntity);
159 1
160 1
            if ($shouldSlowDown) {
161 1
                throw OAuthServerException::slowDown($deviceCodeEntity->getInterval());
162
            }
163
164 1
            throw OAuthServerException::authorizationPending($deviceCodeEntity->getInterval());
165
        }
166 1
167 1
        if ($deviceCodeEntity->getUserApproved() === false) {
168 1
            throw OAuthServerException::accessDenied();
169
        }
170
171 1
        // Finalize the requested scopes
172
        $finalizedScopes = $this->scopeRepository->finalizeScopes($scopes, $this->getIdentifier(), $client, $deviceCodeEntity->getUserIdentifier());
173 1
174
        // Issue and persist new access token
175
        $accessToken = $this->issueAccessToken($accessTokenTTL, $client, $deviceCodeEntity->getUserIdentifier(), $finalizedScopes);
176
        $this->getEmitter()->emit(new RequestEvent(RequestEvent::ACCESS_TOKEN_ISSUED, $request));
177
        $responseType->setAccessToken($accessToken);
178
179 6
        // Issue and persist new refresh token if given
180
        $refreshToken = $this->issueRefreshToken($accessToken);
181 6
182
        if ($refreshToken !== null) {
183 6
            $this->getEmitter()->emit(new RequestEvent(RequestEvent::REFRESH_TOKEN_ISSUED, $request));
184 1
            $responseType->setRefreshToken($refreshToken);
185
        }
186
187 5
        $this->deviceCodeRepository->revokeDeviceCode($deviceCodeEntity->getIdentifier());
188 5
189 5
        return $responseType;
190
    }
191 5
192
    /**
193
     * @throws OAuthServerException
194
     */
195
    protected function validateDeviceCode(ServerRequestInterface $request, ClientEntityInterface $client): DeviceCodeEntityInterface
196
    {
197 5
        $deviceCode = $this->getRequestParameter('device_code', $request);
198 1
199
        if (is_null($deviceCode)) {
200
            throw OAuthServerException::invalidRequest('device_code');
201 4
        }
202
203
        $deviceCodeEntity = $this->deviceCodeRepository->getDeviceCodeEntityByDeviceCode(
204
            $deviceCode
205 4
        );
206
207
        if ($deviceCodeEntity instanceof DeviceCodeEntityInterface === false) {
208
            $this->getEmitter()->emit(new RequestEvent(RequestEvent::USER_AUTHENTICATION_FAILED, $request));
209 4
210 1
            throw OAuthServerException::invalidGrant();
211
        }
212
213 3
        if (time() > $deviceCodeEntity->getExpiryDateTime()->getTimestamp()) {
214
            throw OAuthServerException::expiredToken('device_code');
215
        }
216 4
217
        if ($this->deviceCodeRepository->isDeviceCodeRevoked($deviceCode) === true) {
218 4
            throw OAuthServerException::invalidRequest('device_code', 'Device code has been revoked');
219
        }
220
221
        if ($deviceCodeEntity->getClient()->getIdentifier() !== $client->getIdentifier()) {
222
            throw OAuthServerException::invalidRequest('device_code', 'Device code was not issued to this client');
223
        }
224 17
225
        return $deviceCodeEntity;
226 17
    }
227
228
    private function deviceCodePolledTooSoon(DeviceCodeEntityInterface $deviceCodeEntity): bool
229
    {
230
        $lastPoll = $deviceCodeEntity->getLastPolledAt();
231
232 8
        return $lastPoll !== null && $lastPoll->getTimestamp() + $deviceCodeEntity->getInterval() > time();
233
    }
234 8
235
    /**
236
     * Set the verification uri
237 17
     */
238
    public function setVerificationUri(string $verificationUri): void
239 17
    {
240
        $this->verificationUri = $verificationUri;
241
    }
242
243
    /**
244
     * {@inheritdoc}
245
     */
246
    public function getIdentifier(): string
247
    {
248
        return 'urn:ietf:params:oauth:grant-type:device_code';
249
    }
250 4
251
    private function setDeviceCodeRepository(DeviceCodeRepositoryInterface $deviceCodeRepository): void
252
    {
253
        $this->deviceCodeRepository = $deviceCodeRepository;
254
    }
255
256 4
    /**
257
     * Issue a device code.
258 4
     *
259 4
     * @param ScopeEntityInterface[] $scopes
260 4
     *
261 4
     * @throws OAuthServerException
262
     * @throws UniqueTokenIdentifierConstraintViolationException
263 4
     */
264 1
    protected function issueDeviceCode(
265
        DateInterval $deviceCodeTTL,
266
        ClientEntityInterface $client,
267 4
        string $verificationUri,
268 4
        array $scopes = [],
269
    ): DeviceCodeEntityInterface {
270
        $maxGenerationAttempts = self::MAX_RANDOM_TOKEN_GENERATION_ATTEMPTS;
271 4
272 4
        $deviceCode = $this->deviceCodeRepository->getNewDeviceCode();
273 4
        $deviceCode->setExpiryDateTime((new DateTimeImmutable())->add($deviceCodeTTL));
274
        $deviceCode->setClient($client);
275
        $deviceCode->setVerificationUri($verificationUri);
276 4
        $deviceCode->setInterval($this->defaultInterval);
277
278 4
        foreach ($scopes as $scope) {
279
            $deviceCode->addScope($scope);
280
        }
281
282
        while ($maxGenerationAttempts-- > 0) {
283
            $deviceCode->setIdentifier($this->generateUniqueIdentifier());
284
            $deviceCode->setUserCode($this->generateUserCode());
285
286
            try {
287
                $this->deviceCodeRepository->persistDeviceCode($deviceCode);
288
289
                return $deviceCode;
290
            } catch (UniqueTokenIdentifierConstraintViolationException $e) {
291
                if ($maxGenerationAttempts === 0) {
292
                    throw $e;
293
                }
294
            }
295 4
        }
296
297
        // This should never be hit. It is here to work around a PHPStan false error
298 4
        return $deviceCode;
299 4
    }
300
301 4
    /**
302 4
     * Generate a new user code.
303
     *
304
     * @throws OAuthServerException
305 4
     */
306
    protected function generateUserCode(int $length = 8): string
307
    {
308
        try {
309
            $userCode = '';
310
            $userCodeCharacters = 'BCDFGHJKLMNPQRSTVWXZ';
311
312
            while (strlen($userCode) < $length) {
313
                $userCode .= $userCodeCharacters[random_int(0, 19)];
314
            }
315
316 1
            return $userCode;
317
            // @codeCoverageIgnoreStart
318 1
        } catch (TypeError | Error $e) {
319
            throw OAuthServerException::serverError('An unexpected error has occurred', $e);
320
        } catch (Exception $e) {
321 4
            // If you get this message, the CSPRNG failed hard.
322
            throw OAuthServerException::serverError('Could not generate a random string', $e);
323 4
        }
324
        // @codeCoverageIgnoreEnd
325
    }
326 1
327
    public function setIntervalVisibility(bool $intervalVisibility): void
328 1
    {
329
        $this->intervalVisibility = $intervalVisibility;
330
    }
331
332
    public function getIntervalVisibility(): bool
333
    {
334
        return $this->intervalVisibility;
335
    }
336
337
    public function setIncludeVerificationUriComplete(bool $includeVerificationUriComplete): void
338
    {
339
        $this->includeVerificationUriComplete = $includeVerificationUriComplete;
340
    }
341
}
342