ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilInternalLink.php
Go to the documentation of this file.
1 <?php
2 
25 {
29  public static function _deleteAllLinksOfSource(
30  string $a_source_type,
31  int $a_source_id,
32  string $a_lang = "-"
33  ): void {
34  global $DIC;
35 
36  $ilDB = $DIC->database();
37 
38  $lang_where = "";
39  if ($a_lang !== "") {
40  $lang_where = " AND source_lang = " . $ilDB->quote($a_lang, "text");
41  }
42 
43  $q = "DELETE FROM int_link WHERE source_type = " .
44  $ilDB->quote($a_source_type, "text") . " AND source_id=" .
45  $ilDB->quote($a_source_id, "integer") .
46  $lang_where;
47  $ilDB->manipulate($q);
48  }
49 
53  public static function _deleteAllLinksToTarget(
54  string $a_target_type,
55  int $a_target_id,
56  int $a_target_inst = 0
57  ): void {
58  global $DIC;
59 
60  $ilDB = $DIC->database();
61 
62  $ilDB->manipulateF(
63  "DELETE FROM int_link WHERE target_type = %s " .
64  " AND target_id = %s AND target_inst = %s ",
65  array("text", "integer", "integer"),
66  array($a_target_type, $a_target_id, $a_target_inst)
67  );
68  }
69 
73  public static function _saveLink(
74  string $a_source_type,
75  int $a_source_id,
76  string $a_target_type,
77  int $a_target_id,
78  int $a_target_inst = 0,
79  string $a_source_lang = "-"
80  ): void {
81  global $DIC;
82 
83  $ilDB = $DIC->database();
84 
85  $ilDB->replace(
86  "int_link",
87  array(
88  "source_type" => array("text", $a_source_type),
89  "source_id" => array("integer", $a_source_id),
90  "source_lang" => array("text", $a_source_lang),
91  "target_type" => array("text", $a_target_type),
92  "target_id" => array("integer", $a_target_id),
93  "target_inst" => array("integer", $a_target_inst)
94  ),
95  array()
96  );
97  }
98 
106  public static function _getSourcesOfTarget(
107  string $a_target_type,
108  int $a_target_id,
109  int $a_target_inst
110  ): array {
111  global $DIC;
112 
113  $ilDB = $DIC->database();
114 
115  $q = "SELECT * FROM int_link WHERE " .
116  "target_type = " . $ilDB->quote($a_target_type, "text") . " AND " .
117  "target_id = " . $ilDB->quote($a_target_id, "integer") . " AND " .
118  "target_inst = " . $ilDB->quote($a_target_inst, "integer");
119  $source_set = $ilDB->query($q);
120  $sources = array();
121  while ($source_rec = $ilDB->fetchAssoc($source_set)) {
122  $sources[$source_rec["source_type"] . ":" . $source_rec["source_id"] . ":" . $source_rec["source_lang"]] =
123  array("type" => $source_rec["source_type"], "id" => $source_rec["source_id"],
124  "lang" => $source_rec["source_lang"]);
125  }
126 
127  return $sources;
128  }
129 
137  public static function _getTargetsOfSource(
138  string $a_source_type,
139  int $a_source_id,
140  string $a_source_lang = "-"
141  ): array {
142  global $DIC;
143 
144  $ilDB = $DIC->database();
145 
146  $lang_where = "";
147  if ($a_source_lang !== "") {
148  $lang_where = " AND source_lang = " . $ilDB->quote($a_source_lang, "text");
149  }
150 
151  $q = "SELECT * FROM int_link WHERE " .
152  "source_type = " . $ilDB->quote($a_source_type, "text") . " AND " .
153  "source_id = " . $ilDB->quote($a_source_id, "integer") .
154  $lang_where;
155 
156  $target_set = $ilDB->query($q);
157  $targets = array();
158  while ($target_rec = $ilDB->fetchAssoc($target_set)) {
159  $targets[$target_rec["target_type"] . ":" . $target_rec["target_id"] . ":" . $target_rec["target_inst"]] =
160  array("type" => $target_rec["target_type"], "id" => $target_rec["target_id"],
161  "inst" => $target_rec["target_inst"]);
162  }
163 
164  return $targets;
165  }
166 
174  public static function _getIdForImportId(
175  string $a_type,
176  string $a_target
177  ): ?string {
178  switch ($a_type) {
179  case "PageObject":
180  $id = ilLMObject::_getIdForImportId($a_target);
181  if ($id > 0) {
182  return "il__pg_" . $id;
183  }
184  break;
185 
186  case "StructureObject":
187  $id = ilLMObject::_getIdForImportId($a_target);
188  if ($id > 0) {
189  return "il__st_" . $id;
190  }
191  break;
192 
193  case "GlossaryItem":
195  //echo "+".$id."+".$a_target."+";
196  if ($id > 0) {
197  return "il__git_" . $id;
198  }
199  break;
200 
201  case "WikiPage":
202  // no import IDs for wiki pages (yet)
203  //$id = ilGlossaryTerm::_getIdForImportId($a_target);
204  $id = 0;
205  /*
206  if ($id > 0) {
207  return "il__wpage_" . $id;
208  }*/
209  break;
210 
211  case "MediaObject":
213  if ($id > 0) {
214  return "il__mob_" . $id;
215  }
216  break;
217 
218  case "RepositoryItem":
219 
220  $tarr = explode("_", $a_target);
221  $import_id = $a_target;
222 
223  // if a ref id part is given, strip this
224  // since this will not be part of an import id
225  // see also bug #6685
226  if (($tarr[4] ?? "") != "") {
227  $import_id = $tarr[0] . "_" . $tarr[1] . "_" . $tarr[2] . "_" . $tarr[3];
228  }
229 
230  $id = ilObject::_getIdForImportId($import_id);
231 
232  // get ref id for object id
233  // (see ilPageObject::insertInstIntoIDs for the export procedure)
234  if ($id > 0) {
236  foreach ($refs as $ref) {
237  return "il__obj_" . $ref;
238  }
239  }
240 
241  // 26 Sep 2018: moved this under the import id handling above
242  // If an imported object is found, this is always preferred.
243  // see also bug #23324
244  if (self::_extractInstOfTarget($a_target) == IL_INST_ID
245  && IL_INST_ID > 0) {
246  // does it have a ref id part?
247  if (($tarr[4] ?? "") != "") {
248  return "il__obj_" . $tarr[4];
249  }
250  }
251 
252  break;
253  }
254  return null;
255  }
256 
264  public static function _exists(
265  string $a_type,
266  string $a_target
267  ): bool {
268  global $DIC;
269 
270  $tree = $DIC->repositoryTree();
271 
272  switch ($a_type) {
273  case "PageObject":
274  case "StructureObject":
275  return ilLMObject::_exists($a_target);
276 
277  case "GlossaryItem":
278  return ilGlossaryTerm::_exists($a_target);
279 
280  case "MediaObject":
281  return ilObjMediaObject::_exists($a_target);
282 
283  case "WikiPage":
284  return ilWikiPage::_exists("wiki", (int) $a_target);
285 
286  case "RepositoryItem":
287  if (is_int(strpos($a_target, "_"))) {
288  $ref_id = self::_extractObjIdOfTarget($a_target);
289  return $tree->isInTree($ref_id);
290  }
291  break;
292  }
293  return false;
294  }
295 
296 
301  public static function _extractInstOfTarget(string $a_target): ?int
302  {
303  if (!is_int(strpos($a_target, "__"))) {
304  $target = explode("_", $a_target);
305  if (isset($target[1]) && $target[1] > 0) {
306  return (int) $target[1];
307  }
308  }
309  return null;
310  }
311 
316  public static function _removeInstFromTarget(string $a_target): ?string
317  {
318  if (!is_int(strpos($a_target, "__"))) {
319  $target = explode("_", $a_target);
320  if ($target[1] > 0) {
321  return "il__" . $target[2] . "_" . $target[3];
322  }
323  }
324  return null;
325  }
326 
331  public static function _extractObjIdOfTarget(string $a_target): int
332  {
333  $target = explode("_", $a_target);
334  return (int) $target[count($target) - 1];
335  }
336 
341  public static function _extractTypeOfTarget(string $a_target): string
342  {
343  $target = explode("_", $a_target);
344  return (string) ($target[count($target) - 2] ?? "");
345  }
346 
350  public static function searchUsers(string $a_search_str): array
351  {
352  $result = new ilSearchResult();
353 
354  $query_parser = new ilQueryParser($a_search_str);
355  $query_parser->setCombination(ilQueryParser::QP_COMBINATION_AND);
356  $query_parser->setMinWordLength(3);
357  $query_parser->parse();
358 
359  $user_search = ilObjectSearchFactory::_getUserSearchInstance($query_parser);
360  $user_search->enableActiveCheck(true);
361  $user_search->setFields(array('login'));
362  $result_obj = $user_search->performSearch();
363  $result->mergeEntries($result_obj);
364 
365  $user_search->setFields(array('firstname'));
366  $result_obj = $user_search->performSearch();
367  $result->mergeEntries($result_obj);
368 
369  $user_search->setFields(array('lastname'));
370  $result_obj = $user_search->performSearch();
371  $result->mergeEntries($result_obj);
372 
373  $result->setMaxHits(100000);
374  $result->preventOverwritingMaxhits(true);
375  $result->filter(ROOT_FOLDER_ID, true);
376 
377  // Filter users (depends on setting in user accounts)
378  $users = ilUserFilter::getInstance()->filter($result->getResultIds());
379 
381 
382  $users = array_intersect($users, $p["public"]);
383 
384  return $users;
385  }
386 }
const IL_INST_ID
Definition: constants.php:40
static getProfileStatusOfUsers(array $a_user_ids)
Get profile status.
const ROOT_FOLDER_ID
Definition: constants.php:32
static _exists(int $a_id)
checks whether a glossary term with specified id exists or not
static _getIdForImportId(string $a_import_id)
static _getAllReferences(int $id)
get all reference ids for object ID
static _getUserSearchInstance(ilQueryParser $query_parser)
static _getIdForImportId(string $import_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$ref_id
Definition: ltiauth.php:65
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
static _getIdForImportId(string $a_import_id)
get current object id for import id (static)
global $DIC
Definition: shib_login.php:22
static _exists(int $id, bool $reference=false, ?string $type=null)
static _exists(int $a_id)
checks wether a lm content object with specified id exists or not
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
$q
Definition: shib_logout.php:21