@@ -105,9 +105,8 @@ discard block |
||
105 | 105 | * @var array |
106 | 106 | * @see jwt/impl/JWTClaimSet.php constructor |
107 | 107 | */ |
108 | - public static $registered_claim_set = array |
|
109 | - ( |
|
110 | - self::Issuer , |
|
108 | + public static $registered_claim_set = array( |
|
109 | + self::Issuer, |
|
111 | 110 | self::Subject, |
112 | 111 | self::Audience, |
113 | 112 | self::IssuedAt, |
@@ -119,8 +118,7 @@ discard block |
||
119 | 118 | /** |
120 | 119 | * @var array |
121 | 120 | */ |
122 | - public static $registered_claim_set_types = array |
|
123 | - ( |
|
121 | + public static $registered_claim_set_types = array( |
|
124 | 122 | self::Issuer => JsonTypes::StringOrURI, |
125 | 123 | self::Audience => JsonTypes::StringOrURI, |
126 | 124 | self::Subject => JsonTypes::StringOrURI, |
@@ -91,9 +91,8 @@ discard block |
||
91 | 91 | */ |
92 | 92 | public function take() |
93 | 93 | { |
94 | - $payload = ($this->header->getType()->getString() === 'JWT') ? $this->claim_set : ''; |
|
95 | - return array |
|
96 | - ( |
|
94 | + $payload = ($this->header->getType()->getString() === 'JWT') ? $this->claim_set : ''; |
|
95 | + return array( |
|
97 | 96 | $this->header, |
98 | 97 | $payload, |
99 | 98 | $this->signature |
@@ -108,9 +107,9 @@ discard block |
||
108 | 107 | { |
109 | 108 | $now = new \DateTime(); |
110 | 109 | $exp = $this->getClaimSet()->getExpirationTime()->getDateTime(); |
111 | - if($exp < $now) return true; |
|
110 | + if ($exp < $now) return true; |
|
112 | 111 | $iat = $this->getClaimSet()->getIssuedAt()->getDateTime(); |
113 | - if($iat > $now) return true; |
|
112 | + if ($iat > $now) return true; |
|
114 | 113 | $diff = $now->getTimestamp() - $iat->getTimestamp(); |
115 | 114 | return $diff > $tolerance; |
116 | 115 | } |
@@ -108,9 +108,13 @@ |
||
108 | 108 | { |
109 | 109 | $now = new \DateTime(); |
110 | 110 | $exp = $this->getClaimSet()->getExpirationTime()->getDateTime(); |
111 | - if($exp < $now) return true; |
|
111 | + if($exp < $now) { |
|
112 | + return true; |
|
113 | + } |
|
112 | 114 | $iat = $this->getClaimSet()->getIssuedAt()->getDateTime(); |
113 | - if($iat > $now) return true; |
|
115 | + if($iat > $now) { |
|
116 | + return true; |
|
117 | + } |
|
114 | 118 | $diff = $now->getTimestamp() - $iat->getTimestamp(); |
115 | 119 | return $diff > $tolerance; |
116 | 120 | } |
@@ -50,8 +50,9 @@ |
||
50 | 50 | |
51 | 51 | $e_parts = explode(IBasicJWT::SegmentSeparator, $input); |
52 | 52 | |
53 | - if(count($e_parts) < 2) |
|
54 | - throw new InvalidJWTException(sprintf('%s has only 2 or less encoded parts!')); |
|
53 | + if(count($e_parts) < 2) { |
|
54 | + throw new InvalidJWTException(sprintf('%s has only 2 or less encoded parts!')); |
|
55 | + } |
|
55 | 56 | $e_header = $e_parts[0]; |
56 | 57 | $e_payload = $e_parts[1]; |
57 | 58 | $e_signature = count($e_parts)>2 ? $e_parts[2] : ''; |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @param IJWTSnapshot $jwt_snapshot |
32 | 32 | * @return string |
33 | 33 | */ |
34 | - static public function serialize(IJWTSnapshot $jwt_snapshot){ |
|
34 | + static public function serialize(IJWTSnapshot $jwt_snapshot) { |
|
35 | 35 | list($header, $payload, $signature) = $jwt_snapshot->take(); |
36 | 36 | |
37 | 37 | $e_header = JOSEHeaderSerializer::serialize($header); |
@@ -46,18 +46,18 @@ discard block |
||
46 | 46 | * @return array |
47 | 47 | * @throws InvalidJWTException |
48 | 48 | */ |
49 | - static public function deserialize($input){ |
|
49 | + static public function deserialize($input) { |
|
50 | 50 | |
51 | 51 | $e_parts = explode(IBasicJWT::SegmentSeparator, $input); |
52 | 52 | |
53 | - if(count($e_parts) < 2) |
|
53 | + if (count($e_parts) < 2) |
|
54 | 54 | throw new InvalidJWTException(sprintf('%s has only 2 or less encoded parts!')); |
55 | 55 | $e_header = $e_parts[0]; |
56 | 56 | $e_payload = $e_parts[1]; |
57 | - $e_signature = count($e_parts)>2 ? $e_parts[2] : ''; |
|
57 | + $e_signature = count($e_parts) > 2 ? $e_parts[2] : ''; |
|
58 | 58 | $header = JOSEHeaderSerializer::deserialize($e_header); |
59 | 59 | $payload = ($header->getType()->getString() === 'JWT') ? JWTClaimSetSerializer::deserialize($e_payload) : JWTRawSerializer::deserialize($e_payload); |
60 | - $signature = !empty($e_signature) ? JWTRawSerializer::deserialize($e_signature): ''; |
|
60 | + $signature = !empty($e_signature) ? JWTRawSerializer::deserialize($e_signature) : ''; |
|
61 | 61 | return array($header, $payload, $signature); |
62 | 62 | } |
63 | 63 | } |
64 | 64 | \ No newline at end of file |
@@ -40,8 +40,7 @@ discard block |
||
40 | 40 | * @param JsonValue $id |
41 | 41 | * @param NumericDate $nbf |
42 | 42 | */ |
43 | - public function __construct |
|
44 | - ( |
|
43 | + public function __construct( |
|
45 | 44 | StringOrURI $issuer = null, |
46 | 45 | StringOrURI $subject = null, |
47 | 46 | StringOrURI $audience = null, |
@@ -135,7 +134,7 @@ discard block |
||
135 | 134 | public function getClaims() |
136 | 135 | { |
137 | 136 | $claims = array(); |
138 | - foreach($this->set as $k => $v) |
|
137 | + foreach ($this->set as $k => $v) |
|
139 | 138 | { |
140 | 139 | array_push($claims, new JWTClaim($k, $v)); |
141 | 140 | } |
@@ -260,7 +259,6 @@ discard block |
||
260 | 259 | public function getClaimByName($claim_name) |
261 | 260 | { |
262 | 261 | return isset($this->set[$claim_name]) ? |
263 | - $this->set[$claim_name] : |
|
264 | - null; |
|
262 | + $this->set[$claim_name] : null; |
|
265 | 263 | } |
266 | 264 | } |
267 | 265 | \ No newline at end of file |
@@ -123,8 +123,9 @@ |
||
123 | 123 | */ |
124 | 124 | public function addClaim(JWTClaim $claim) |
125 | 125 | { |
126 | - if (isset($this->set[$claim->getName()])) |
|
127 | - throw new ClaimAlreadyExistsException($claim->getName()); |
|
126 | + if (isset($this->set[$claim->getName()])) { |
|
127 | + throw new ClaimAlreadyExistsException($claim->getName()); |
|
128 | + } |
|
128 | 129 | |
129 | 130 | $this->set[$claim->getName()] = $claim->getValue(); |
130 | 131 | } |
@@ -33,8 +33,7 @@ discard block |
||
33 | 33 | * @param JsonValue|null $kid |
34 | 34 | * @param StringOrURI|null $cty |
35 | 35 | */ |
36 | - public function __construct |
|
37 | - ( |
|
36 | + public function __construct( |
|
38 | 37 | StringOrURI $alg, |
39 | 38 | StringOrURI $type = null, |
40 | 39 | JsonValue $kid = null, |
@@ -96,7 +95,7 @@ discard block |
||
96 | 95 | public function getHeaderByName($name) |
97 | 96 | { |
98 | 97 | $value = $this[$name]; |
99 | - if(is_null($value)) return null; |
|
98 | + if (is_null($value)) return null; |
|
100 | 99 | return new JOSEHeaderParam($name, $value); |
101 | 100 | } |
102 | 101 | } |
103 | 102 | \ No newline at end of file |
@@ -96,7 +96,9 @@ |
||
96 | 96 | public function getHeaderByName($name) |
97 | 97 | { |
98 | 98 | $value = $this[$name]; |
99 | - if(is_null($value)) return null; |
|
99 | + if(is_null($value)) { |
|
100 | + return null; |
|
101 | + } |
|
100 | 102 | return new JOSEHeaderParam($name, $value); |
101 | 103 | } |
102 | 104 | } |
103 | 105 | \ No newline at end of file |
@@ -37,10 +37,8 @@ discard block |
||
37 | 37 | protected function __construct(IJWTClaimSet $claim_set) |
38 | 38 | { |
39 | 39 | |
40 | - parent::__construct |
|
41 | - ( |
|
42 | - new JOSEHeader |
|
43 | - ( |
|
40 | + parent::__construct( |
|
41 | + new JOSEHeader( |
|
44 | 42 | new StringOrURI('none'), |
45 | 43 | new StringOrURI('JWT') |
46 | 44 | ), |
@@ -75,7 +73,7 @@ discard block |
||
75 | 73 | { |
76 | 74 | list($header, $payload, $signature) = JWTSerializer::deserialize($compact_serialization); |
77 | 75 | |
78 | - if(!($payload instanceof IJWTClaimSet)) |
|
76 | + if (!($payload instanceof IJWTClaimSet)) |
|
79 | 77 | throw new \RuntimeException('Invalid payload type!'); |
80 | 78 | |
81 | 79 | $jwt = new UnsecuredJWT($payload); |
@@ -75,8 +75,9 @@ |
||
75 | 75 | { |
76 | 76 | list($header, $payload, $signature) = JWTSerializer::deserialize($compact_serialization); |
77 | 77 | |
78 | - if(!($payload instanceof IJWTClaimSet)) |
|
79 | - throw new \RuntimeException('Invalid payload type!'); |
|
78 | + if(!($payload instanceof IJWTClaimSet)) { |
|
79 | + throw new \RuntimeException('Invalid payload type!'); |
|
80 | + } |
|
80 | 81 | |
81 | 82 | $jwt = new UnsecuredJWT($payload); |
82 | 83 | $jwt->header = $header; |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * @param string $raw_input |
22 | 22 | * @return string |
23 | 23 | */ |
24 | - public static function serialize($raw_input){ |
|
24 | + public static function serialize($raw_input) { |
|
25 | 25 | $base64 = new Base64UrlRepresentation(); |
26 | 26 | return $base64->encode($raw_input); |
27 | 27 | } |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * @param string $input |
31 | 31 | * @return string |
32 | 32 | */ |
33 | - public static function deserialize($input){ |
|
33 | + public static function deserialize($input) { |
|
34 | 34 | $base64 = new Base64UrlRepresentation(); |
35 | 35 | return $base64->decode($input); |
36 | 36 | } |
@@ -32,14 +32,14 @@ discard block |
||
32 | 32 | * @param array $raw_claims |
33 | 33 | * @return IJWTClaimSet |
34 | 34 | */ |
35 | - public static function build(array $raw_claims){ |
|
35 | + public static function build(array $raw_claims) { |
|
36 | 36 | |
37 | 37 | $args = array(); |
38 | 38 | |
39 | - foreach(RegisteredJWTClaimNames::$registered_claim_set as $claim_name){ |
|
39 | + foreach (RegisteredJWTClaimNames::$registered_claim_set as $claim_name) { |
|
40 | 40 | $value = isset($raw_claims[$claim_name]) ? $raw_claims[$claim_name] : null; |
41 | 41 | $type = RegisteredJWTClaimNames::$registered_claim_set_types[$claim_name]; |
42 | - if(!is_null($value)) |
|
42 | + if (!is_null($value)) |
|
43 | 43 | { |
44 | 44 | $class = new ReflectionClass($type); |
45 | 45 | $value = $class->newInstanceArgs(array($value)); |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | // unregistered claims |
56 | 56 | |
57 | - foreach($raw_claims as $k => $v){ |
|
57 | + foreach ($raw_claims as $k => $v) { |
|
58 | 58 | $claim_set->addClaim(new JWTClaim($k, new JsonValue($v))); |
59 | 59 | } |
60 | 60 |
@@ -43,7 +43,9 @@ |
||
43 | 43 | $type = @RegisteredJOSEHeaderNames::$registered_basic_headers_set_types[$header_name]; |
44 | 44 | if(!is_null($value)) |
45 | 45 | { |
46 | - if(is_null($type)) continue; |
|
46 | + if(is_null($type)) { |
|
47 | + continue; |
|
48 | + } |
|
47 | 49 | $class = new \ReflectionClass($type); |
48 | 50 | $value = $class->newInstanceArgs(array($value)); |
49 | 51 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | */ |
22 | 22 | class JOSEHeaderFactory { |
23 | 23 | |
24 | - static protected function getProductClass(){ |
|
24 | + static protected function getProductClass() { |
|
25 | 25 | return '\jwt\impl\JOSEHeader'; |
26 | 26 | } |
27 | 27 | |
@@ -35,12 +35,12 @@ discard block |
||
35 | 35 | |
36 | 36 | $args = []; |
37 | 37 | |
38 | - foreach(RegisteredJOSEHeaderNames::$registered_basic_headers_set as $header_name){ |
|
38 | + foreach (RegisteredJOSEHeaderNames::$registered_basic_headers_set as $header_name) { |
|
39 | 39 | $value = isset($raw_headers[$header_name]) ? $raw_headers[$header_name] : null; |
40 | 40 | $type = @RegisteredJOSEHeaderNames::$registered_basic_headers_set_types[$header_name]; |
41 | - if(!is_null($value)) |
|
41 | + if (!is_null($value)) |
|
42 | 42 | { |
43 | - if(is_null($type)) continue; |
|
43 | + if (is_null($type)) continue; |
|
44 | 44 | $class = new \ReflectionClass($type); |
45 | 45 | $value = $class->newInstanceArgs(array($value)); |
46 | 46 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | // unregistered headers |
56 | 56 | |
57 | - foreach($raw_headers as $k => $v){ |
|
57 | + foreach ($raw_headers as $k => $v) { |
|
58 | 58 | $basic_header->addHeader(new JOSEHeaderParam($k, new JsonValue($v))); |
59 | 59 | } |
60 | 60 |