ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBiblEntryFactory.php
Go to the documentation of this file.
1 <?php
23 {
25 
26  protected int $bibliographic_obj_id;
27  protected int $entry_id;
28  protected string $type;
29  protected array $attributes;
30  protected ilDBInterface $db;
31 
32 
36  public function __construct(protected \ilBiblFieldFactoryInterface $field_factory, protected \ilBiblTypeInterface $file_type, protected \ilBiblOverviewModelFactoryInterface $overview_factory)
37  {
38  global $DIC;
39  $this->db = $DIC->database();
40  }
41 
45  public function loadParsedAttributesByEntryId(int $entry_id): array
46  {
47  $ilBiblEntry = ilBiblEntry::where(['id' => $entry_id])->first();
48  $attributes = $this->getAllAttributesByEntryId($entry_id);
49 
50  $type = $this->file_type->getId() == ilBiblTypeFactoryInterface::DATA_TYPE_RIS ? $ilBiblEntry->getType() : 'default';
51  $parsed_attributes = [];
52  foreach ($attributes as $attribute) {
53  $value = $this->secure($attribute->getValue());
54  // surround links with <a href="">
55  // Allowed signs in URL: a-z A-Z 0-9 . ? & _ / - ~ ! ' * ( ) + , : ; @ = $ # [ ] %
56  $value = preg_replace('!(http)(s)?:\/\/[a-zA-Z0-9.?&_/\-~\!\'\*()+,:;@=$#\[\]%]+!', "<a href=\"\\0\" target=\"_blank\">\\0</a>", $value);
57 
58 
59 
60  $attribute->setValue($value);
61  $parsed_attributes[strtolower($this->file_type->getStringRepresentation() . '_' . $type . '_' . $attribute->getName())] = $value;
62 
63  $this->field_factory->findOrCreateFieldOfAttribute($attribute);
64  }
65 
66  return $parsed_attributes;
67  }
68 
72  public function findByIdAndTypeString(int $id, string $type_string): ilBiblEntryInterface
73  {
75  return ilBiblEntry::where(['id' => $id])->first();
76  }
77 
81  public function findOrCreateEntry(int $id, int $bibliographic_obj_id, string $entry_type): \ilBiblEntryInterface
82  {
83  $inst = $this->getARInstance($id);
84  if ($inst === null) {
85  $inst = $this->createEntry($bibliographic_obj_id, $entry_type);
86  }
87  $inst->setDataId($bibliographic_obj_id);
88  $inst->setEntryType($entry_type);
89  $inst->update();
90 
91  return $inst;
92  }
93 
97  public function createEntry(int $bibliographic_obj_id, string $entry_type): \ilBiblEntryInterface
98  {
99  $inst = new ilBiblEntry();
100  $inst->setDataId($bibliographic_obj_id);
101  $inst->setEntryType($entry_type);
102  $inst->create();
103 
104  return $inst;
105  }
106 
107  public function getEmptyInstance(): \ilBiblEntry
108  {
109  return new ilBiblEntry();
110  }
111 
112  private function getARInstance(int $id): ?\ilBiblEntry
113  {
115  return ilBiblEntry::where(["ïd" => $id])->first();
116  }
117 
121  public function filterEntriesForTable(int $object_id, ?ilBiblTableQueryInfo $info = null): array
122  {
123  $entries = $this->filterEntryIdsForTableAsArray($object_id, $info);
124  $entry_objects = [];
125  foreach ($entries as $entry_id => $entry) {
126  $entry_objects[$entry_id] = $this->findByIdAndTypeString($entry['type'], $entry['id']);
127  }
128 
129  return $entry_objects;
130  }
131 
135  public function filterEntryIdsForTableAsArray(int $object_id, ?ilBiblTableQueryInfo $info = null): array
136  {
137  $types = ["integer"];
138  $values = [$object_id];
139 
140  $filters = $info->getFilters();
141  if (!empty($filters)) {
142  $q = "SELECT (e.id), e.type FROM il_bibl_entry AS e WHERE data_id = %s";
143  foreach ($filters as $filter) {
144  $value = $filter->getFieldValue();
145  if (!$value) {
146  continue;
147  }
148  if ($filter->getOperator() === "IN" && is_array($filter->getFieldValue())) {
149  $types[] = "text";
150  $values[] = $filter->getFieldName();
151  $q .= " AND e.id IN (SELECT a.entry_id FROM il_bibl_attribute AS a WHERE a.name = %s AND " . $this->db->in("a.value", $value, false, "text") . ")";
152  } else {
153  $types[] = "text";
154  $values[] = $filter->getFieldName();
155  $types[] = "text";
156  $values[] = "{$value}";
157  $q .= " AND e.id IN (SELECT a.entry_id FROM il_bibl_attribute AS a WHERE a.name = %s AND a.value {$filter->getOperator()} %s )";
158  }
159  }
160  } else {
161  $q = "SELECT DISTINCT (e.id), e.type FROM il_bibl_entry AS e
162  JOIN il_bibl_attribute AS a ON a.entry_id = e.id
163  WHERE data_id = %s";
164  }
165  $entries = [];
166  $set = $this->db->queryF($q, $types, $values);
167 
168  $i = 0;
169  while ($rec = $this->db->fetchAssoc($set)) {
170  $entries[$i]['entry_id'] = $rec['id'];
171  $entries[$i]['entry_type'] = $rec['type'];
172  $i++;
173  }
174 
175  return $entries;
176  }
177 
178  public function deleteEntryById(int $id): void
179  {
180  $entry = ilBiblEntry::where(['id' => $id])->first();
181  if ($entry instanceof ilBiblEntry) {
182  $entry->delete();
183  }
184  }
185 
186  public function deleteEntriesById(int $object_id): void
187  {
188  $this->db->manipulateF("DELETE FROM il_bibl_entry WHERE data_id = %s", ['integer'], [$object_id]);
189  }
190 
194  public function getAllAttributesByEntryId(int $id): array
195  {
196  return ilBiblAttribute::where(['entry_id' => $id])->get();
197  }
198 
199  public function getFileType(): \ilBiblTypeInterface
200  {
201  return $this->file_type;
202  }
203 
204  public function setFileType(string $file_type): void
205  {
206  $this->file_type = $file_type;
207  }
208 
212  public function setAttributes(array $attributes): void
213  {
214  $this->attributes = $attributes;
215  }
216 
221  public function getAttributes(): array
222  {
223  return $this->attributes;
224  }
225 }
setAttributes(array $attributes)
createEntry(int $bibliographic_obj_id, string $entry_type)
filterEntriesForTable(int $object_id, ?ilBiblTableQueryInfo $info=null)
setFileType(string $file_type)
__construct(protected \ilBiblFieldFactoryInterface $field_factory, protected \ilBiblTypeInterface $file_type, protected \ilBiblOverviewModelFactoryInterface $overview_factory)
ilBiblEntryFactory constructor.
findOrCreateEntry(int $id, int $bibliographic_obj_id, string $entry_type)
static where($where, $operator=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Interface ilBiblEntryFactoryInterface.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
loadParsedAttributesByEntryId(int $entry_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
filterEntryIdsForTableAsArray(int $object_id, ?ilBiblTableQueryInfo $info=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
$q
Definition: shib_logout.php:21
findByIdAndTypeString(int $id, string $type_string)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...