19 declare(strict_types=1);
63 $this->active_ids_filter = [];
64 $this->userIdsFilter = [];
65 $this->anonymousIdsFilter = [];
67 $this->byActiveId = [];
69 $this->byAnonymousId = [];
71 $this->scoredParticipantsFilterEnabled =
false;
103 public function load($testId): void
105 $this->byActiveId = [];
106 $this->byUserId = [];
117 LEFT JOIN usr_data ud 118 ON ud.usr_id = ta.user_fi 120 AND {$this->getConditionalExpression()} 121 AND {$this->getScoredParticipantsFilterExpression()} 124 $res = $this->db->queryF($query, [
'integer'], [$testId]);
127 $accessFilteredUsrIds = [];
129 while ($row = $this->db->fetchAssoc(
$res)) {
130 $accessFilteredUsrIds[] = $row[
'user_id'];
138 foreach ($rows as $row) {
139 if (!in_array($row[
'user_id'], $accessFilteredUsrIds)) {
143 $this->byActiveId[ $row[
'active_id'] ] = $row;
146 $this->byAnonymousId[ $row[
'anonymous_id'] ] = $row;
148 $this->byUserId[ $row[
'user_id'] ] = $row;
156 return "ta.last_finished_pass = ta.last_started_pass";
167 $conditions[] = $this->db->in(
'active_id', $this->
getActiveIdsFilter(),
false,
'integer');
171 $conditions[] = $this->db->in(
'user_fi', $this->
getUserIdsFilter(),
false,
'integer');
178 if (count($conditions)) {
179 return '(' . implode(
' OR ', $conditions) .
')';
217 return array_keys($this->byActiveId);
222 return array_keys($this->byUserId);
227 return array_keys($this->byAnonymousId);
232 return $this->byActiveId[$activeId][
'user_id'];
237 return $this->byUserId[$userId][
'active_id'] ??
null;
247 $fullname = str_replace(
' ',
'', $this->byActiveId[$activeId][
'lastname']);
248 $fullname .=
'_' . str_replace(
' ',
'', $this->byActiveId[$activeId][
'firstname']);
249 $fullname .=
'_' . $this->byActiveId[$activeId][
'login'];
258 foreach ($this->byActiveId as $activeId => $usrData) {
269 $anonymousActiveIds = [];
271 foreach ($this->byActiveId as $activeId => $active) {
273 $anonymousActiveIds[] = $activeId;
277 return $anonymousActiveIds;
282 if (isset($this->byActiveId[$active_Id])) {
283 return $this->byActiveId[$active_Id];
__construct(ilDBInterface $db, ilLanguage $lng)
setAnonymousIdsFilter($anonymousIdsFilter)
static _getParticipantData($active_id)
Retrieves a participant name from active id.
setUserIdsFilter($userIdsFilter)
getConditionalExpression()
static getASCIIFilename(string $a_filename)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getFormatedFullnameByActiveId($activeId)
setParticipantAccessFilter(Closure $participantAccessFilter)
setActiveIdsFilter(array $active_ids_filter)
getUserDataByActiveId(int $active_Id)
bool $scoredParticipantsFilterEnabled
setScoredParticipantsFilterEnabled($scoredParticipantsFilterEnabled)
getActiveIdByUserId($userId)
getParticipantAccessFilter()
getScoredParticipantsFilterExpression()
getFileSystemCompliantFullnameByActiveId($activeId)
array $anonymousIdsFilter
getUserIdByActiveId($activeId)
isScoredParticipantsFilterEnabled()