ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilShibbolethRoleAssignmentRule.php
Go to the documentation of this file.
1 <?php
13 {
17  private const ERR_MISSING_NAME = 'shib_missing_attr_name';
21  private const ERR_MISSING_VALUE = 'shib_missing_attr_value';
25  private const ERR_MISSING_ROLE = 'shib_missing_role';
29  private const ERR_MISSING_PLUGIN_ID = 'shib_missing_plugin_id';
33  private const TABLE_NAME = 'shib_role_assignment';
34 
35  private ilDBInterface $db;
36  private int $role_id = 0;
37  private string $attribute_name = '';
38  private string $attribute_value = '';
39  private bool $plugin_active = false;
40  private bool $add_on_update = false;
41  private bool $remove_on_update = false;
42  private ?string $plugin_id = null;
43 
44  public function __construct(private int $rule_id = 0)
45  {
46  global $DIC;
47  $this->db = $DIC->database();
48  $this->read();
49  }
50 
51  public function setRuleId(int $a_id): void
52  {
53  $this->rule_id = $a_id;
54  }
55 
56  public function getRuleId(): int
57  {
58  return $this->rule_id;
59  }
60 
61  public function setRoleId(int $a_id): void
62  {
63  $this->role_id = $a_id;
64  }
65 
66  public function getRoleId(): int
67  {
68  return $this->role_id;
69  }
70 
71  public function setName(string $a_name): void
72  {
73  $this->attribute_name = $a_name;
74  }
75 
76  public function getName(): string
77  {
78  return $this->attribute_name;
79  }
80 
81  public function setValue(string $a_value): void
82  {
83  $this->attribute_value = $a_value;
84  }
85 
86  public function getValue(): string
87  {
89  }
90 
91  public function enablePlugin(bool $a_status): void
92  {
93  $this->plugin_active = $a_status;
94  }
95 
96  public function isPluginActive(): bool
97  {
98  return $this->plugin_active;
99  }
100 
101  public function enableAddOnUpdate(bool $a_status): void
102  {
103  $this->add_on_update = $a_status;
104  }
105 
106  public function isAddOnUpdateEnabled(): bool
107  {
108  return $this->add_on_update;
109  }
110 
111  public function enableRemoveOnUpdate(bool $a_status): void
112  {
113  $this->remove_on_update = $a_status;
114  }
115 
116  public function isRemoveOnUpdateEnabled(): bool
117  {
119  }
120 
121  public function setPluginId(?string $a_id): void
122  {
123  $this->plugin_id = $a_id;
124  }
125 
126  public function getPluginId(): ?string
127  {
128  return $this->plugin_id;
129  }
130 
131  public function conditionToString(): ?string
132  {
133  global $DIC;
134  $lng = $DIC['lng'];
135  if ($this->isPluginActive()) {
136  return $lng->txt('shib_plugin_id') . ': ' . $this->getPluginId();
137  }
138 
139  return $this->getName() . '=' . $this->getValue();
140  }
141 
142  public function validate(): string
143  {
144  if ($this->getRoleId() === 0) {
145  return self::ERR_MISSING_ROLE;
146  }
147  if (!$this->isPluginActive()) {
148  if ($this->getName() === '' || $this->getName() === '0') {
149  return self::ERR_MISSING_NAME;
150  }
151  if ($this->getValue() === '' || $this->getValue() === '0') {
152  return self::ERR_MISSING_VALUE;
153  }
154  } elseif ($this->getPluginId() === 0) {
155  return self::ERR_MISSING_PLUGIN_ID;
156  }
157 
158  return '';
159  }
160 
161  public function delete(): bool
162  {
163  $query = 'DELETE FROM ' . self::TABLE_NAME . ' ' . 'WHERE rule_id = ' . $this->db->quote(
164  $this->getRuleId(),
165  'integer'
166  );
167  $this->db->manipulate($query);
168 
169  return true;
170  }
171 
172  public function add(): bool
173  {
174  $next_id = $this->db->nextId(self::TABLE_NAME);
175  $query = 'INSERT INTO ' . self::TABLE_NAME . ' (rule_id,role_id,name,value,plugin,plugin_id,add_on_update,remove_on_update ) ' . 'VALUES( '
176  . $this->db->quote($next_id, 'integer') . ', ' . $this->db->quote($this->getRoleId(), 'integer') . ', '
177  . $this->db->quote($this->getName(), 'text') . ', ' . $this->db->quote($this->getValue(), 'text') . ', '
178  . $this->db->quote((int) $this->isPluginActive(), 'integer') . ', ' . $this->db->quote(
179  $this->getPluginId() ?? '0',
180  'integer'
181  ) . ', '
182  . $this->db->quote((int) $this->isAddOnUpdateEnabled(), 'integer') . ', '
183  . $this->db->quote((int) $this->isRemoveOnUpdateEnabled(), 'integer') . ') ';
184  $this->db->manipulate($query);
185  $this->setRuleId($this->db->getLastInsertId());
186 
187  return true;
188  }
189 
190  public function update(): bool
191  {
192  $query = 'UPDATE ' . self::TABLE_NAME . ' ' . 'SET role_id = ' . $this->db->quote(
193  $this->getRoleId(),
194  'integer'
195  ) . ', ' . 'name = '
196  . $this->db->quote($this->getName(), 'text') . ', ' . 'value = ' . $this->db->quote(
197  $this->getValue(),
198  'text'
199  ) . ', ' . 'plugin = '
200  . $this->db->quote((int) $this->isPluginActive(), 'integer') . ', ' . 'plugin_id = '
201  . $this->db->quote($this->getPluginId() ?? '0', 'integer') . ', ' . 'add_on_update = '
202  . $this->db->quote((int) $this->isAddOnUpdateEnabled(), 'integer') . ', ' . 'remove_on_update = '
203  . $this->db->quote((int) $this->isRemoveOnUpdateEnabled(), 'integer') . ' '
204  . 'WHERE rule_id = ' . $this->db->quote($this->getRuleId(), 'integer');
205  $this->db->manipulate($query);
206 
207  return true;
208  }
209 
213  public function matches(array $a_data): bool
214  {
215  if ($this->isPluginActive()) {
217  }
218  // No value
219  if (!isset($a_data[$this->getName()])) {
220  return false;
221  }
222  $values = $a_data[$this->getName()];
223  if (is_array($values)) {
224  return in_array($this->getValue(), $values);
225  }
226 
227  return $this->wildcardCompare($this->getValue(), $values);
228  }
229 
233  protected function wildcardCompare(string $a_str1, string $a_str2): bool
234  {
235  $pattern = str_replace('*', '.*?', $a_str1);
236 
237  return (bool) preg_match("/" . $pattern . "/us", $a_str2);
238  }
239 
240  public function doesMatch(array $a_data): bool
241  {
242  if ($this->isPluginActive()) {
244  }
245 
246  if (!isset($a_data[$this->getName()])) {
247  return false;
248  }
249 
250  $values = $a_data[$this->getName()];
251  if (is_array($values)) {
252  return in_array($this->getValue(), $values);
253  }
254 
255  $pattern = str_replace('*', '.*?', $this->getValue());
256 
257  return (bool) preg_match('/^' . $pattern . '$/us', (string) $values);
258  }
259 
260  private function read(): void
261  {
262  if ($this->getRuleId() === 0) {
263  return;
264  }
265 
266  $query = 'SELECT * FROM ' . self::TABLE_NAME . ' ' . 'WHERE rule_id = ' . $this->db->quote(
267  $this->getRuleId(),
268  'integer'
269  );
270  $res = $this->db->query($query);
271  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
272  $this->setRoleId((int) $row->role_id);
273  $this->setName((string) $row->name);
274  $this->setValue((string) $row->value);
275  $this->enablePlugin((bool) $row->plugin);
276  $this->setPluginId($row->plugin_id);
277  $this->enableAddOnUpdate((bool) $row->add_on_update);
278  $this->enableRemoveOnUpdate((bool) $row->remove_on_update);
279  }
280  }
281 }
$res
Definition: ltiservices.php:66
static callPlugin(string $a_plugin_id, array $a_user_data)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
global $lng
Definition: privfeed.php:31