mirror of
https://github.com/elyby/accounts.git
synced 2024-11-26 16:52:02 +05:30
5fc97fdd7a
Reworked webhooks notifications constructors
31 lines
809 B
PHP
31 lines
809 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace common\notifications;
|
|
|
|
use common\models\OauthSession;
|
|
use Webmozart\Assert\Assert;
|
|
|
|
final class OAuthSessionRevokedNotification implements NotificationInterface {
|
|
|
|
private OauthSession $oauthSession;
|
|
|
|
public function __construct(OauthSession $oauthSession) {
|
|
Assert::notNull($oauthSession->revoked_at, 'OAuth session must be revoked');
|
|
$this->oauthSession = $oauthSession;
|
|
}
|
|
|
|
public static function getType(): string {
|
|
return 'oauth2.session_revoked';
|
|
}
|
|
|
|
public function getPayloads(): array {
|
|
return [
|
|
'accountId' => $this->oauthSession->account_id,
|
|
'clientId' => $this->oauthSession->client_id,
|
|
'revoked' => date('c', $this->oauthSession->revoked_at),
|
|
];
|
|
}
|
|
|
|
}
|