ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilForumAuthorInformationCache.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
30  protected static array $user_instances = [];
32  protected static array $requested_usr_ids = [];
34  protected static array $requested_usr_ids_key_map = [];
35 
39  public static function preloadUserObjects(array $usr_ids): void
40  {
41  global $DIC;
42  $ilDB = $DIC->database();
43 
44  $usr_ids_to_request = array_diff($usr_ids, self::$requested_usr_ids);
45  self::$requested_usr_ids = array_merge(self::$requested_usr_ids, $usr_ids_to_request);
46  self::$requested_usr_ids_key_map = array_flip(self::$requested_usr_ids);
47 
48  if ($usr_ids_to_request) {
49  $in = $ilDB->in('ud.usr_id', $usr_ids_to_request, false, 'integer');
50  $query = "
51  SELECT ud.usr_id, od.create_date, login, firstname, lastname, ud.title, gender, pprof.value public_profile, pgen.value public_gender, pup.value public_upload
52  FROM usr_data ud
53  INNER JOIN object_data od ON od.obj_id = ud.usr_id
54  LEFT JOIN usr_pref pprof ON pprof.usr_id = ud.usr_id AND pprof.keyword = %s
55  LEFT JOIN usr_pref pgen ON pgen.usr_id = ud.usr_id AND pgen.keyword = %s
56  LEFT JOIN usr_pref pup ON pup.usr_id = ud.usr_id AND pup.keyword = %s
57  WHERE $in
58  ";
59 
60  $res = $ilDB->queryF(
61  $query,
62  ['text', 'text', 'text'],
63  ['public_profile', 'public_gender', 'public_upload']
64  );
65 
66  while ($row = $ilDB->fetchAssoc($res)) {
67  $user = new ilObjUser();
68  $user->setId((int) $row['usr_id']);
69  $user->setLogin($row['login']);
70  $user->setGender($row['gender'] ?? '');
71  $user->setUTitle($row['title'] ?? '');
72  $user->setFirstname($row['firstname'] ?? '');
73  $user->setLastname($row['lastname'] ?? '');
74  $user->setPref('public_profile', $row['public_profile']);
75  $user->setPref('public_gender', $row['public_gender']);
76  $user->setPref('public_upload', $row['public_upload']);
77 
78  self::$user_instances[(int) $row['usr_id']] = $user;
79  }
80  }
81  }
82 
83  public static function getUserObjectById(int $usr_id): ?ilObjUser
84  {
85  if (!$usr_id) {
86  return null;
87  }
88 
89  if (!isset(self::$requested_usr_ids_key_map[$usr_id])) {
90  self::preloadUserObjects([$usr_id]);
91  }
92 
93  return self::$user_instances[$usr_id] ?? null;
94  }
95 }
$res
Definition: ltiservices.php:69
global $DIC
Definition: feed.php:28
$query