Skip to content

Commit a4d3efa

Browse files
Merge pull request #85 from stackkit/bugfix/token-aud
Fix bug making it possible to task handler under specific circumstances
2 parents ef865a7 + 45e8167 commit a4d3efa

3 files changed

+3
-2
lines changed

src/CloudTasksQueue.php

+1
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ protected function pushToCloudTasks($queue, $payload, $delay = 0)
163163

164164
$token = new OidcToken;
165165
$token->setServiceAccountEmail($this->config['service_account_email']);
166+
$token->setAudience(hash_hmac('sha256', $this->getHandler(), config('app.key')));
166167
$httpRequest->setOidcToken($token);
167168

168169
if ($availableAt > time()) {

src/OpenIdVerificatorConcrete.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function verify(?string $token, array $config): void
1818
(new AccessToken())->verify(
1919
$token,
2020
[
21-
'audience' => app('queue')->getHandler(),
21+
'audience' => hash_hmac('sha256', app('queue')->getHandler(), config('app.key')),
2222
'throwException' => true,
2323
]
2424
);

src/OpenIdVerificatorFake.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function verify(?string $token, array $config): void
1717
(new AccessToken())->verify(
1818
$token,
1919
[
20-
'audience' => app('queue')->getHandler(),
20+
'audience' => hash_hmac('sha256', app('queue')->getHandler(), config('app.key')),
2121
'throwException' => true,
2222
'certsLocation' => __DIR__ . '/../tests/Support/self-signed-public-key-as-jwk.json',
2323
]

0 commit comments

Comments
 (0)