ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMDRelation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 class ilMDRelation extends ilMDBase
28 {
32  private const KIND_TRANSLATION = [
33  'ispartof' => 'IsPartOf',
34  'haspart' => 'HasPart',
35  'isversionof' => 'IsVersionOf',
36  'hasversion' => 'HasVersion',
37  'isformatof' => 'IsFormatOf',
38  'hasformat' => 'HasFormat',
39  'references' => 'References',
40  'isreferencedby' => 'IsReferencedBy',
41  'isbasedon' => 'IsBasedOn',
42  'isbasisfor' => 'IsBasisFor',
43  'requires' => 'Requires',
44  'isrequiredby' => 'IsRequiredBy'
45  ];
46 
47  private string $kind = '';
48 
49  // METHODS OF CHILD OBJECTS (Taxon)
50 
54  public function getIdentifier_Ids(): array
55  {
56  return ilMDIdentifier_::_getIds($this->getRBACId(), $this->getObjId(), $this->getMetaId(), 'meta_relation');
57  }
58 
59  public function getIdentifier_(int $a_identifier__id): ?ilMDIdentifier_
60  {
61  if (!$a_identifier__id) {
62  return null;
63  }
64  $ide = new ilMDIdentifier_();
65  $ide->setMetaId($a_identifier__id);
66 
67  return $ide;
68  }
69 
70  public function addIdentifier_(): ilMDIdentifier_
71  {
72  $ide = new ilMDIdentifier_($this->getRBACId(), $this->getObjId(), $this->getObjType());
73  $ide->setParentId($this->getMetaId());
74  $ide->setParentType('meta_relation');
75 
76  return $ide;
77  }
78 
82  public function getDescriptionIds(): array
83  {
84  return ilMDDescription::_getIds($this->getRBACId(), $this->getObjId(), $this->getMetaId(), 'meta_relation');
85  }
86 
87  public function getDescription(int $a_description_id): ?ilMDDescription
88  {
89  if (!$a_description_id) {
90  return null;
91  }
92  $des = new ilMDDescription();
93  $des->setMetaId($a_description_id);
94 
95  return $des;
96  }
97 
98  public function addDescription(): ilMDDescription
99  {
100  $des = new ilMDDescription($this->getRBACId(), $this->getObjId(), $this->getObjType());
101  $des->setParentId($this->getMetaId());
102  $des->setParentType('meta_relation');
103 
104  return $des;
105  }
106 
107  // SET/GET
108  public function setKind(string $a_kind): bool
109  {
110  switch ($a_kind) {
111  case 'IsPartOf':
112  case 'HasPart':
113  case 'IsVersionOf':
114  case 'HasVersion':
115  case 'IsFormatOf':
116  case 'HasFormat':
117  case 'References':
118  case 'IsReferencedBy':
119  case 'IsBasedOn':
120  case 'IsBasisFor':
121  case 'Requires':
122  case 'IsRequiredBy':
123  $this->kind = $a_kind;
124  return true;
125 
126  default:
127  return false;
128  }
129  }
130 
131  public function getKind(): string
132  {
133  return $this->kind;
134  }
135 
136  public function save(): int
137  {
138  $fields = $this->__getFields();
139  $fields['meta_relation_id'] = array('integer', $next_id = $this->db->nextId('il_meta_relation'));
140 
141  if ($this->db->insert('il_meta_relation', $fields)) {
142  $this->setMetaId($next_id);
143  return $this->getMetaId();
144  }
145  return 0;
146  }
147 
148  public function update(): bool
149  {
150  return $this->getMetaId() && $this->db->update(
151  'il_meta_relation',
152  $this->__getFields(),
153  array("meta_relation_id" => array('integer', $this->getMetaId()))
154  );
155  }
156 
157  public function delete(): bool
158  {
159  if ($this->getMetaId()) {
160  $query = "DELETE FROM il_meta_relation " .
161  "WHERE meta_relation_id = " . $this->db->quote($this->getMetaId(), 'integer');
162  $res = $this->db->manipulate($query);
163 
164  foreach ($this->getIdentifier_Ids() as $id) {
165  $ide = $this->getIdentifier_($id);
166  $ide->delete();
167  }
168  foreach ($this->getDescriptionIds() as $id) {
169  $des = $this->getDescription($id);
170  $des->delete();
171  }
172 
173  return true;
174  }
175  return false;
176  }
177 
181  public function __getFields(): array
182  {
186  $kind = (string) array_search(
187  $this->getKind(),
188  self::KIND_TRANSLATION
189  );
190 
191  return array(
192  'rbac_id' => array('integer', $this->getRBACId()),
193  'obj_id' => array('integer', $this->getObjId()),
194  'obj_type' => array('text', $this->getObjType()),
195  'kind' => array('text', $kind)
196  );
197  }
198 
199  public function read(): bool
200  {
201  if ($this->getMetaId()) {
202  $query = "SELECT * FROM il_meta_relation " .
203  "WHERE meta_relation_id = " . $this->db->quote($this->getMetaId(), 'integer');
204 
205  $res = $this->db->query($query);
206  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
210  if (key_exists($row->kind ?? '', self::KIND_TRANSLATION)) {
211  $row->kind = self::KIND_TRANSLATION[$row->kind ?? ''];
212  }
213 
214  $this->setRBACId((int) $row->rbac_id);
215  $this->setObjId((int) $row->obj_id);
216  $this->setObjType($row->obj_type);
217  $this->setKind($row->kind ?? '');
218  }
219  }
220  return true;
221  }
222 
223  public function toXML(ilXmlWriter $writer): void
224  {
225  $writer->xmlStartTag('Relation', array(
226  'Kind' => $this->getKind() ?: 'IsPartOf'
227  ));
228  $writer->xmlStartTag('Resource');
229 
230  // Identifier_
231  $ides = $this->getIdentifier_Ids();
232  foreach ($ides as $id) {
233  $ide = $this->getIdentifier_($id);
234  $ide->toXML($writer);
235  }
236  if (!count($ides)) {
237  $ide = new ilMDIdentifier_($this->getRBACId(), $this->getObjId());
238  $ide->toXML($writer);
239  }
240 
241  // Description
242  $dess = $this->getDescriptionIds();
243  foreach ($dess as $id) {
244  $des = $this->getDescription($id);
245  $des->toXML($writer);
246  }
247  if (!count($dess)) {
248  $des = new ilMDDescription($this->getRBACId(), $this->getObjId());
249  $des->toXML($writer);
250  }
251 
252  $writer->xmlEndTag('Resource');
253  $writer->xmlEndTag('Relation');
254  }
255 
256  // STATIC
257 
261  public static function _getIds(int $a_rbac_id, int $a_obj_id): array
262  {
263  global $DIC;
264 
265  $ilDB = $DIC->database();
266 
267  $query = "SELECT meta_relation_id FROM il_meta_relation " .
268  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . " " .
269  "AND obj_id = " . $ilDB->quote($a_obj_id, 'integer');
270 
271  $res = $ilDB->query($query);
272  $ids = [];
273  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
274  $ids[] = (int) $row->meta_relation_id;
275  }
276  return $ids;
277  }
278 }
$res
Definition: ltiservices.php:66
setKind(string $a_kind)
getDescription(int $a_description_id)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
setRBACId(int $a_id)
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setObjId(int $a_id)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
const KIND_TRANSLATION
Compatibility fix for legacy MD classes for new db tables.
getIdentifier_(int $a_identifier__id)
toXML(ilXmlWriter $writer)
global $DIC
Definition: shib_login.php:22
const string $kind
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
setMetaId(int $a_meta_id, bool $a_read_data=true)
static _getIds(int $a_rbac_id, int $a_obj_id)
setObjType(string $a_type)