ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
sspmod_core_Auth_Process_ScopeAttribute Class Reference
+ Inheritance diagram for sspmod_core_Auth_Process_ScopeAttribute:
+ Collaboration diagram for sspmod_core_Auth_Process_ScopeAttribute:

Public Member Functions

 __construct ($config, $reserved)
 Initialize this filter, parse configuration. More...
 
 process (&$request)
 Apply this filter to the request. More...
 
- Public Member Functions inherited from SimpleSAML_Auth_ProcessingFilter
 __construct (&$config, $reserved)
 Constructor for a processing filter. More...
 
 process (&$request)
 Process a request. More...
 

Private Attributes

 $scopeAttribute
 
 $sourceAttribute
 
 $targetAttribute
 
 $onlyIfEmpty = false
 

Additional Inherited Members

- Data Fields inherited from SimpleSAML_Auth_ProcessingFilter
 $priority = 50
 Priority of this filter. More...
 

Detailed Description

Definition at line 8 of file ScopeAttribute.php.

Constructor & Destructor Documentation

◆ __construct()

sspmod_core_Auth_Process_ScopeAttribute::__construct (   $config,
  $reserved 
)

Initialize this filter, parse configuration.

Parameters
array$configConfiguration information about this filter.
mixed$reservedFor future use.

Definition at line 47 of file ScopeAttribute.php.

48 {
49 parent::__construct($config, $reserved);
50 assert(is_array($config));
51
53
54 $this->scopeAttribute = $config->getString('scopeAttribute');
55 $this->sourceAttribute = $config->getString('sourceAttribute');
56 $this->targetAttribute = $config->getString('targetAttribute');
57 $this->onlyIfEmpty = $config->getBoolean('onlyIfEmpty', false);
58 }
static loadFromArray($config, $location='[ARRAY]', $instance=null)
Loads a configuration from the given array.
$config
Definition: bootstrap.php:15

References $config, and SimpleSAML_Configuration\loadFromArray().

+ Here is the call graph for this function:

Member Function Documentation

◆ process()

sspmod_core_Auth_Process_ScopeAttribute::process ( $request)

Apply this filter to the request.

Parameters
array&$requestThe current request

Reimplemented from SimpleSAML_Auth_ProcessingFilter.

Definition at line 66 of file ScopeAttribute.php.

67 {
68 assert(is_array($request));
69 assert(array_key_exists('Attributes', $request));
70
71 $attributes =& $request['Attributes'];
72
73 if (!isset($attributes[$this->scopeAttribute])) {
74 return;
75 }
76
77 if (!isset($attributes[$this->sourceAttribute])) {
78 return;
79 }
80
81 if (!isset($attributes[$this->targetAttribute])) {
83 }
84
85 if ($this->onlyIfEmpty && count($attributes[$this->targetAttribute]) > 0) {
86 return;
87 }
88
89 foreach ($attributes[$this->scopeAttribute] as $scope) {
90 if (strpos($scope, '@') !== false) {
91 $scope = explode('@', $scope, 2);
92 $scope = $scope[1];
93 }
94
95 foreach ($attributes[$this->sourceAttribute] as $value) {
96 $value = $value . '@' . $scope;
97
98 if (in_array($value, $attributes[$this->targetAttribute], true)) {
99 // Already present
100 continue;
101 }
102
104 }
105 }
106 }
foreach($paths as $path) $request
Definition: asyncclient.php:32
if(array_key_exists('yes', $_REQUEST)) $attributes
Definition: getconsent.php:85

References $attributes, $request, and $targetAttribute.

Field Documentation

◆ $onlyIfEmpty

sspmod_core_Auth_Process_ScopeAttribute::$onlyIfEmpty = false
private

Definition at line 38 of file ScopeAttribute.php.

◆ $scopeAttribute

sspmod_core_Auth_Process_ScopeAttribute::$scopeAttribute
private

Definition at line 15 of file ScopeAttribute.php.

◆ $sourceAttribute

sspmod_core_Auth_Process_ScopeAttribute::$sourceAttribute
private

Definition at line 23 of file ScopeAttribute.php.

◆ $targetAttribute

sspmod_core_Auth_Process_ScopeAttribute::$targetAttribute
private

Definition at line 31 of file ScopeAttribute.php.

Referenced by process().


The documentation for this class was generated from the following file: