19 declare(strict_types=1);
32 private \ILIAS\ResourceStorage\Services
$irss;
52 $this->for_user = $this->is_current_user ? $DIC->user() :
new ilObjUser($this->user_id);
54 $this->db = $DIC->database();
55 $this->irss = $DIC->resourceStorage();
56 $this->
ui = $DIC->ui()->factory();
57 $this->
lng = $DIC->language();
58 $this->avatar_factory = $DIC[
"user.avatar.factory"];
60 $this->letter_avatars_activated = (bool) $DIC->settings()->get(
'letter_avatars');
62 $this->size =
'small';
68 $in = $this->db->in(
'usr_pref.keyword', [
'public_upload',
'public_profile'],
false,
'text');
69 $res = $this->db->queryF(
71 SELECT usr_data.rid, usr_pref.* 72 FROM usr_data LEFT JOIN usr_pref ON usr_pref.usr_id = usr_data.usr_id AND $in 73 WHERE usr_data.usr_id = %s",
78 while ($row = $this->db->fetchAssoc(
$res)) {
79 $this->rid = $row[
'rid'] ??
null;
80 switch ($row[
'keyword']) {
82 $this->has_public_upload = $row[
'value'] ===
'y';
84 case 'public_profile':
85 $this->has_public_profile = ($row[
'value'] ===
'y' || $row[
'value'] ===
'g');
90 if ($this->has_public_profile) {
91 $sub_str_firstname =
ilStr::subStr($this->for_user->getFirstname(), 0, 1);
92 $sub_str_lastname =
ilStr::subStr($this->for_user->getLastname(), 0, 1);
93 $this->abbreviation = $sub_str_firstname . $sub_str_lastname;
95 $this->abbreviation =
ilStr::subStr($this->for_user->getLogin(), 0, 2);
101 if (!$this->force_image) {
102 if (!$this->has_public_profile || !$this->has_public_upload) {
107 if ($this->rid !==
null && $this->irss->manage()->find($this->rid) !==
null) {
116 $rid = $this->irss->manage()->find($this->rid);
120 $flavour = $this->irss->flavours()->get($rid, $this->flavour_definition);
121 $urls = $this->irss->consume()->flavourUrls($flavour)->getURLsAsArray(
false);
123 $available_sizes = array_flip(array_keys($this->flavour_definition->getSizes()));
126 return $urls[$size_index] ??
'';
136 if ($name_as_set_as_text_closely) {
137 $alternative_text = $this->
lng->txt(
"user_avatar");
138 } elseif ($this->is_current_user && !$this->for_user->isAnonymous()) {
139 $alternative_text = $this->
lng->txt(
"current_user_avatar");
141 $alternative_text = $this->
lng->txt(
"user_avatar_of") .
" " . $this->for_user->getLogin();
146 return $this->
ui->symbol()->avatar()->picture(
148 $this->for_user->getLogin()
149 )->withLabel($alternative_text);
153 if ($this->letter_avatars_activated ===
false) {
154 return $this->
ui->symbol()->avatar()->picture(
156 $this->for_user->getLogin()
160 return $this->
ui->symbol()->avatar()->letter($this->abbreviation)->withLabel($alternative_text);
169 if ($this->rid !==
null 170 && $this->rid !==
'-' 171 && ($identification = $this->irss->manage()->find($this->rid)) !==
null) {
172 $flavour_streams = $this->irss->flavours()
173 ->get($identification, $this->flavour_definition)
174 ->getStreamResolvers();
175 $available_sizes = array_flip(array_keys($this->flavour_definition->getSizes()));
177 if (!isset($flavour_streams[$size_index])) {
180 return [$flavour_streams[$size_index]->getStream()->__toString(),
'image/jpeg'];
196 && $this->rid !==
null && $this->rid !==
'-') {
201 $avatar = $this->avatar_factory->avatar($this->size);
202 $avatar->setName($this->abbreviation);
203 $avatar->setUsrId($this->user_id);
205 return $avatar->getUrl();
Class ilUserAvatarFactory.
ilUserAvatarFactory $avatar_factory
resolveProfilePicturePath()
setSize(string $size)
There are the Sizes 'big', 'small', 'xsmall', 'xxsmall',.
static subStr(string $a_str, int $a_start, ?int $a_length=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getLegacyPictureURL()
This method returns the URL to the Profile Picture of a User.
This describes how a letter or a picture avatar could be modified during construction of UI...
This is how the factory for UI elements looks.
bool $letter_avatars_activated
__construct(private int $user_id)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
ilUserProfilePictureDefinition $flavour_definition
Class ilUserAvatarResolver.
ILIAS ResourceStorage Services $irss
getAvatar(bool $name_as_set_as_text_closely=false)
setForcePicture(bool $force_image)
There are places where we want wo show the Profile Picture of a User, even if the user doesn't want t...