ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StakeholderDBRepository.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
32 {
33  public const TABLE_NAME = 'il_resource_stkh_u';
34  public const TABLE_NAME_REL = 'il_resource_stkh';
35  public const IDENTIFICATION = 'rid';
36 
40  protected array $cache = [];
41 
42  public function __construct(protected \ilDBInterface $db)
43  {
44  }
45 
49  public function getNamesForLocking(): array
50  {
51  return [self::TABLE_NAME, self::TABLE_NAME_REL];
52  }
53 
54  public function register(ResourceIdentification $i, ResourceStakeholder $s): bool
55  {
56  $identification = $i->serialize();
57  $stakeholder_id = $s->getId();
58  $stakeholder_class_name = $s->getFullyQualifiedClassName();
59 
60  if (strlen($stakeholder_id) > 64) {
61  throw new \InvalidArgumentException('stakeholder ids MUST be shorter or equal to than 64 characters');
62  }
63  if (strlen($stakeholder_class_name) > 250) {
64  throw new \InvalidArgumentException(
65  'stakeholder classnames MUST be shorter or equal to than 250 characters'
66  );
67  }
68 
69  $r = $this->db->queryF(
70  "SELECT " . self::IDENTIFICATION . " FROM " . self::TABLE_NAME . " WHERE " . self::IDENTIFICATION . " = %s AND stakeholder_id = %s",
71  ['text', 'text'],
72  [$identification, $stakeholder_id]
73  );
74 
75  if ($r->numRows() === 0) {
76  // CREATE
77  $this->db->insert(
78  self::TABLE_NAME,
79  [
80  self::IDENTIFICATION => ['text', $identification],
81  'stakeholder_id' => ['text', $stakeholder_id],
82  ]
83  );
84  }
85 
86  $r = $this->db->queryF(
87  "SELECT id FROM " . self::TABLE_NAME_REL . " WHERE id = %s",
88  ['text',],
89  [$stakeholder_id]
90  );
91  if ($r->numRows() === 0) {
92  $this->db->insert(
93  self::TABLE_NAME_REL,
94  [
95  'id' => ['text', $stakeholder_id],
96  'class_name' => ['text', $stakeholder_class_name],
97  ]
98  );
99  }
100 
101  $this->cache[$identification][$stakeholder_id] = $s;
102 
103  return true;
104  }
105 
107  {
108  $this->db->manipulateF(
109  "DELETE FROM " . self::TABLE_NAME . " WHERE " . self::IDENTIFICATION . " = %s AND stakeholder_id = %s",
110  ['text', 'text'],
111  [$i->serialize(), $s->getId()]
112  );
113  unset($this->cache[$i->serialize()][$s->getId()]);
114 
115  return true;
116  }
117 
121  public function getStakeholders(ResourceIdentification $i): array
122  {
123  $rid = $i->serialize();
124  if (isset($this->cache[$rid]) && is_array($this->cache[$rid])) {
125  return $this->cache[$rid];
126  }
127 
128  $r = $this->db->queryF(
129  "SELECT class_name, stakeholder_id FROM " . self::TABLE_NAME . "
130  JOIN " . self::TABLE_NAME_REL . " ON stakeholder_id = id
131  WHERE " . self::IDENTIFICATION . " = %s",
132  ['text'],
133  [$rid]
134  );
135  while ($d = $this->db->fetchAssoc($r)) {
136  $d['rid'] = $rid;
137  $this->populateFromArray($d);
138  }
139  return $this->cache[$rid] ?? [];
140  }
141 
142  public function preload(array $identification_strings): void
143  {
144  $r = $this->db->query(
145  "SELECT rid, class_name, stakeholder_id FROM " . self::TABLE_NAME
146  . " JOIN " . self::TABLE_NAME_REL . " ON stakeholder_id = id
147  WHERE " . $this->db->in(
148  self::IDENTIFICATION,
149  $identification_strings,
150  false,
151  'text'
152  )
153  );
154  while ($d = $this->db->fetchAssoc($r)) {
155  $this->populateFromArray($d);
156  }
157  }
158 
159  public function populateFromArray(array $data): void
160  {
161  $stakeholders = [];
162  $class_name = $data['class_name'];
163 
164  if (class_exists($class_name)) {
165  $stakeholder = new $class_name();
166  $stakeholders[] = $stakeholder;
167  $this->cache[$data['rid']][$data['stakeholder_id']] = $stakeholder;
168  }
169  }
170 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$r