JwtServiceAccountFactory   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 45
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
dl 0
loc 45
c 0
b 0
f 0
wmc 3
lcom 1
cbo 3
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A build() 0 15 1
A getHash() 0 4 1
1
<?php
2
3
namespace Audiens\DoubleclickClient\authentication;
4
5
use Audiens\DoubleclickClient\entity\ServiceAccount;
6
use Lcobucci\JWT\Builder;
7
use Lcobucci\JWT\Signer\Rsa\Sha256;
8
use Lcobucci\JWT\Token;
9
10
class JwtServiceAccountFactory implements JwtFactoryInterface
11
{
12
13
    public const SCOPE = 'https://ddp.googleapis.com/api/ddp/';
14
15
    /** @var ServiceAccount */
16
    protected $serviceAccount;
17
18
    public function __construct(ServiceAccount $serviceAccount)
19
    {
20
        $this->serviceAccount = $serviceAccount;
21
    }
22
23
    /**
24
     * iss      The email address of the service account.
25
     * scope    A space-delimited list of the permissions that the application requests.
26
     * aud      A descriptor of the intended target of the assertion. When making an access token request this value is
27
     * sub      the user to impersonate as there should be a domain wide auth
28
     * always   https://www.googleapis.com/oauth2/v4/token. exp    The expiration time of the assertion, specified as
29
     * seconds  since 00:00:00 UTC, January 1, 1970. This value has a maximum of 1 hour after the issued time. iat
30
     * The time the assertion was issued, specified as seconds since 00:00:00 UTC, January 1, 1970.
31
     *
32
     * @return \Lcobucci\JWT\Token
33
     */
34
    public function build(): Token
35
    {
36
        return (new Builder())
0 ignored issues
show
Deprecated Code introduced by
The method Lcobucci\JWT\Builder::setIssuer() has been deprecated with message: This method will be removed on v4

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
Deprecated Code introduced by
The method Lcobucci\JWT\Builder::setAudience() has been deprecated with message: This method will be removed on v4

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
Deprecated Code introduced by
The method Lcobucci\JWT\Builder::setSubject() has been deprecated with message: This method will be removed on v4

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
37
            ->setIssuer($this->serviceAccount->getClientEmail())// iss claim
38
            ->setAudience('https://www.googleapis.com/oauth2/v4/token')// aud claim
39
            ->setSubject($this->serviceAccount->getSubject())// sub claim
40
            ->setIssuedAt(time())// iat claim
41
            ->setExpiration(time() + 3600)// exp claim
42
            ->set('scope', self::SCOPE)// custom claim
43
            ->sign(
44
                new Sha256(),
45
                $this->serviceAccount->getPrivateKey()
46
            )
47
            ->getToken(); // Retrieves the generated token
48
    }
49
50
    public function getHash(): string
51
    {
52
        return sha1($this->serviceAccount->getClientEmail().$this->serviceAccount->getSubject());
53
    }
54
}
55