@@ -16,10 +16,10 @@ discard block |
||
16 | 16 | * {@inheritdoc} |
17 | 17 | */ |
18 | 18 | public function deleteItem($key) { |
19 | - if(isset($this->items[$key])) { |
|
19 | + if (isset($this->items[$key])) { |
|
20 | 20 | unset($this->items[$key]); |
21 | 21 | } |
22 | - if(isset($this->deferredItems[$key])) { |
|
22 | + if (isset($this->deferredItems[$key])) { |
|
23 | 23 | unset($this->deferredItems[$key]); |
24 | 24 | } |
25 | 25 | return true; |
@@ -29,8 +29,8 @@ discard block |
||
29 | 29 | * {@inheritdoc} |
30 | 30 | */ |
31 | 31 | public function deleteItems(array $keys) { |
32 | - foreach($keys as $key) { |
|
33 | - if(!$this->deleteItem($key)) { |
|
32 | + foreach ($keys as $key) { |
|
33 | + if (!$this->deleteItem($key)) { |
|
34 | 34 | return false; |
35 | 35 | } |
36 | 36 | } |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * {@inheritdoc} |
60 | 60 | */ |
61 | 61 | public function commit() { |
62 | - foreach($this->deferredItems as $key => $item) { |
|
62 | + foreach ($this->deferredItems as $key => $item) { |
|
63 | 63 | $this->items[$key] = $item; |
64 | 64 | unset($this->deferredItems[$key]); |
65 | 65 | } |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | * {@inheritdoc} |
78 | 78 | */ |
79 | 79 | public function getItem($key) { |
80 | - if(!$this->hasItem($key)) { |
|
80 | + if (!$this->hasItem($key)) { |
|
81 | 81 | return new MemoryCacheItem($key); |
82 | 82 | } |
83 | 83 | return $this->items[$key]; |
@@ -88,8 +88,8 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function getItems(array $keys = array()) { |
90 | 90 | $items = []; |
91 | - foreach($keys as $key) { |
|
92 | - if($this->hasItem($key)) { |
|
91 | + foreach ($keys as $key) { |
|
92 | + if ($this->hasItem($key)) { |
|
93 | 93 | $items[$key] = $this->getItem($key); |
94 | 94 | } |
95 | 95 | } |
@@ -53,7 +53,7 @@ |
||
53 | 53 | * {@inheritdoc} |
54 | 54 | */ |
55 | 55 | public function get() { |
56 | - if(!$this->isHit()) { |
|
56 | + if (!$this->isHit()) { |
|
57 | 57 | throw new ExpiredCacheException('Cache item is expired'); |
58 | 58 | } |
59 | 59 | return $this->value; |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | $item = $pool->getItem($key); |
31 | 31 | |
32 | 32 | // In this case, the pool returned a new CacheItem |
33 | - if($item->get() === null) { |
|
33 | + if ($item->get() === null) { |
|
34 | 34 | $item->expiresAfter($ttl); |
35 | 35 | } |
36 | 36 | return $item; |
@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | * @return Psr\Cache\CacheItemPoolInterface |
43 | 43 | */ |
44 | 44 | public function getItemPool($driver) { |
45 | - if(!isset($this->pools[$driver])) { |
|
46 | - $poolClass = 'PhpAbac\\Cache\\Pool\\' . ucfirst($driver) . 'CacheItemPool'; |
|
45 | + if (!isset($this->pools[$driver])) { |
|
46 | + $poolClass = 'PhpAbac\\Cache\\Pool\\'.ucfirst($driver).'CacheItemPool'; |
|
47 | 47 | $this->pools[$driver] = new $poolClass(); |
48 | 48 | } |
49 | 49 | return $this->pools[$driver]; |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | */ |
77 | 77 | public function retrieveAttribute(AbstractAttribute $attribute, $user, $object = null) |
78 | 78 | { |
79 | - switch($attribute->getType()) { |
|
79 | + switch ($attribute->getType()) { |
|
80 | 80 | case 'user': |
81 | 81 | return $this->retrieveClassicAttribute($attribute, $user); |
82 | 82 | case 'resource': |
@@ -95,9 +95,9 @@ discard block |
||
95 | 95 | { |
96 | 96 | $propertyPath = explode('.', $attribute->getProperty()); |
97 | 97 | $propertyValue = $object; |
98 | - foreach($propertyPath as $property) { |
|
98 | + foreach ($propertyPath as $property) { |
|
99 | 99 | $getter = 'get'.ucfirst($property); |
100 | - if(!method_exists($propertyValue, $getter)) { |
|
100 | + if (!method_exists($propertyValue, $getter)) { |
|
101 | 101 | throw new \InvalidArgumentException('There is no getter for the "'.$attribute->getProperty().'" attribute for object "'.get_class($propertyValue).'"'); |
102 | 102 | } |
103 | 103 | $propertyValue = $propertyValue->{$getter}(); |
@@ -34,12 +34,12 @@ |
||
34 | 34 | * @param array $configurationFiles |
35 | 35 | */ |
36 | 36 | public function parseConfigurationFile($configurationFiles) { |
37 | - foreach($configurationFiles as $configurationFile) { |
|
37 | + foreach ($configurationFiles as $configurationFile) { |
|
38 | 38 | $config = $this->loaders[$this->format]->load($configurationFile); |
39 | - if(isset($config['attributes'])) { |
|
39 | + if (isset($config['attributes'])) { |
|
40 | 40 | $this->attributes = array_merge($this->attributes, $config['attributes']); |
41 | 41 | } |
42 | - if(isset($config['rules'])) { |
|
42 | + if (isset($config['rules'])) { |
|
43 | 43 | $this->rules = array_merge($this->rules, $config['rules']); |
44 | 44 | } |
45 | 45 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $user1Vehicle = $abac->enforce('vehicle-homologation', $users[0], $vehicles[0], [ |
35 | 35 | 'dynamic_attributes' => ['proprietaire' => 1] |
36 | 36 | ]); |
37 | - if($user1Vehicle === true) { |
|
37 | + if ($user1Vehicle === true) { |
|
38 | 38 | echo("GRANTED : The vehicle 1 is able to be approved for the user 1\n"); |
39 | 39 | } else { |
40 | 40 | echo("FAIL : The system didn't grant access\n"); |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | $user3Vehicle = $abac->enforce('vehicle-homologation', $users[2], $vehicles[1], [ |
43 | 43 | 'dynamic_attributes' => ['proprietaire' => 3] |
44 | 44 | ]); |
45 | - if(!$user3Vehicle !== true) { |
|
45 | + if (!$user3Vehicle !== true) { |
|
46 | 46 | echo("DENIED : The vehicle 2 is not approved for the user 3 because its last technical review is too old\n"); |
47 | 47 | } else { |
48 | 48 | echo("FAIL : The system didn't deny access\n"); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | $user4Vehicle = $abac->enforce('vehicle-homologation', $users[3], $vehicles[3], [ |
51 | 51 | 'dynamic_attributes' => ['proprietaire' => 4] |
52 | 52 | ]); |
53 | - if($user4Vehicle !== true) { |
|
53 | + if ($user4Vehicle !== true) { |
|
54 | 54 | echo("DENIED : The vehicle 4 is not able to be approved for the user 4 because he has no driving license\n"); |
55 | 55 | } else { |
56 | 56 | echo("FAIL : The system didn't deny access\n"); |
@@ -58,19 +58,19 @@ discard block |
||
58 | 58 | $user5Vehicle = $abac->enforce('vehicle-homologation', $users[3], $vehicles[3], [ |
59 | 59 | 'dynamic_attributes' => ['proprietaire' => 1] |
60 | 60 | ]); |
61 | - if($user5Vehicle !== true) { |
|
61 | + if ($user5Vehicle !== true) { |
|
62 | 62 | echo("DENIED : The vehicle 4 is not able to be approved for the user 2 because he doesn't own the vehicle\n"); |
63 | 63 | } else { |
64 | 64 | echo("FAIL : The system didn't deny access\n"); |
65 | 65 | } |
66 | 66 | $userTravel1 = $abac->enforce('travel-to-usa', $users[0]); |
67 | - if($userTravel1 !== true) { |
|
67 | + if ($userTravel1 !== true) { |
|
68 | 68 | echo("DENIED: The user 1 is not allowed to travel to the USA because he doesn't have an US visa\n"); |
69 | 69 | } else { |
70 | 70 | echo('FAIL: The system didn\'t deny access'); |
71 | 71 | } |
72 | 72 | $userTravel2 = $abac->enforce('travel-to-usa', $users[1]); |
73 | - if($userTravel2 === true) { |
|
73 | + if ($userTravel2 === true) { |
|
74 | 74 | echo("GRANTED: The user 2 is allowed to travel to the USA\n"); |
75 | 75 | } else { |
76 | 76 | echo('FAIL: The system didn\'t deny access'); |
@@ -121,7 +121,7 @@ |
||
121 | 121 | * @return \PhpAbac\Model\PolicyRuleAttribute |
122 | 122 | */ |
123 | 123 | public function removeExtraData($key) { |
124 | - if(isset($this->extraData[$key])) { |
|
124 | + if (isset($this->extraData[$key])) { |
|
125 | 125 | unset($this->extraData[$key]); |
126 | 126 | } |
127 | 127 | return $this; |
@@ -101,7 +101,7 @@ |
||
101 | 101 | * @return \PhpAbac\Example\User |
102 | 102 | */ |
103 | 103 | public function removeVisa(Visa $visa) { |
104 | - if(isset($this->visas[$visa->getId()])) { |
|
104 | + if (isset($this->visas[$visa->getId()])) { |
|
105 | 105 | unset($this->visas[$visa->getId()]); |
106 | 106 | } |
107 | 107 | return $this; |
@@ -31,15 +31,15 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public function getRule($ruleName, $user, $resource) |
33 | 33 | { |
34 | - if(!isset($this->rules[$ruleName])) { |
|
35 | - throw new \InvalidArgumentException('The given rule "' . $ruleName . '" is not configured'); |
|
34 | + if (!isset($this->rules[$ruleName])) { |
|
35 | + throw new \InvalidArgumentException('The given rule "'.$ruleName.'" is not configured'); |
|
36 | 36 | } |
37 | 37 | $rule = |
38 | 38 | (new PolicyRule()) |
39 | 39 | ->setName($ruleName) |
40 | 40 | ; |
41 | 41 | // For each policy rule attribute, the data is formatted |
42 | - foreach($this->processRuleAttributes($this->rules[$ruleName]['attributes'], $user, $resource) as $pra) { |
|
42 | + foreach ($this->processRuleAttributes($this->rules[$ruleName]['attributes'], $user, $resource) as $pra) { |
|
43 | 43 | $rule->addPolicyRuleAttribute($pra); |
44 | 44 | } |
45 | 45 | return $rule; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | * @param object $resource |
54 | 54 | */ |
55 | 55 | public function processRuleAttributes($attributes, $user, $resource) { |
56 | - foreach($attributes as $attributeName => $attribute) { |
|
56 | + foreach ($attributes as $attributeName => $attribute) { |
|
57 | 57 | $pra = (new PolicyRuleAttribute()) |
58 | 58 | ->setAttribute($this->attributeManager->getAttribute($attributeName)) |
59 | 59 | ->setComparison($attribute['comparison']) |
@@ -63,8 +63,8 @@ discard block |
||
63 | 63 | $this->processRuleAttributeComparisonType($pra, $user, $resource); |
64 | 64 | // In the case the user configured more keys than the basic ones |
65 | 65 | // it will be stored as extra data |
66 | - foreach($attribute as $key => $value) { |
|
67 | - if(!in_array($key, ['comparison', 'comparison_type', 'value'])) { |
|
66 | + foreach ($attribute as $key => $value) { |
|
67 | + if (!in_array($key, ['comparison', 'comparison_type', 'value'])) { |
|
68 | 68 | $pra->addExtraData($key, $value); |
69 | 69 | } |
70 | 70 | } |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | * @param object $resource |
82 | 82 | */ |
83 | 83 | public function processRuleAttributeComparisonType(PolicyRuleAttribute $pra, $user, $resource) { |
84 | - switch($pra->getComparisonType()) { |
|
84 | + switch ($pra->getComparisonType()) { |
|
85 | 85 | case 'user': $pra->setExtraData(['user' => $user]); break; |
86 | 86 | case 'object': $pra->setExtraData(['resource' => $resource]); break; |
87 | 87 | } |