19 declare(strict_types=1);
43 $conversationIds = [];
45 $res = $this->db->queryF(
46 'SELECT DISTINCT(conversation_id) FROM osc_activity WHERE user_id = %s',
48 [$this->
user->getId()]
50 while ($row = $this->db->fetchAssoc(
$res)) {
51 $conversationIds[$row[
'conversation_id']] = $row[
'conversation_id'];
54 $res = $this->db->queryF(
55 'SELECT DISTINCT(conversation_id) FROM osc_messages WHERE user_id = %s',
57 [$this->
user->getId()]
59 while ($row = $this->db->fetchAssoc(
$res)) {
60 $conversationIds[$row[
'conversation_id']] = $row[
'conversation_id'];
63 if (0 === count($conversationIds)) {
69 $in = $this->db->in(
'id', $conversationIds,
false,
'text');
70 $res = $this->db->query(
'SELECT DISTINCT(participants) FROM osc_conversation WHERE ' . $in);
71 while ($row = $this->db->fetchAssoc(
$res)) {
72 $participants = json_decode((
string) $row[
'participants'],
true, 512, JSON_THROW_ON_ERROR);
74 if (is_array($participants)) {
75 $usrIds = array_unique(array_merge($usrIds, array_filter(
array_map(
static function ($user):
int {
76 if (is_array($user) && isset($user[
'id'])) {
77 return (
int) $user[
'id'];
103 foreach ($usrIds as $usr_id) {
104 $publicImage = $publicData[$usr_id][
'img'] ??
'';
107 if (isset($publicData[$usr_id])) {
109 if (isset($publicData[$usr_id][
'login'])) {
110 $publicName = $login = $publicData[$usr_id][
'login'];
113 if (isset($publicData[$usr_id][
'public_profile']) && $publicData[$usr_id][
'public_profile']) {
114 $publicName = implode(
' ', array_filter(
array_map(
'trim', [
115 (
string) ($publicData[$usr_id][
'firstname'] ??
''),
116 (
string) ($publicData[$usr_id][
'lastname'] ??
''),
119 if ($publicName ===
'') {
120 $publicName = $login;
126 'public_name' => $publicName,
127 'profile_image' => $publicImage
__construct(protected ilDBInterface $db, protected ilObjUser $user)
static setTokenMaxLifetimeInSeconds(int $token_max_lifetime_in_seconds)
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
getDataByUserIds(array $usrIds)
static getTokenMaxLifetimeInSeconds()
getInitialUserProfileData()