ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLPStatusTestFinished.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=0);
20 
26 {
27  public static function _getInProgress(int $a_obj_id): array
28  {
29  global $DIC;
30 
31  $ilDB = $DIC['ilDB'];
32 
33  $query = "
34  SELECT active_id, user_fi, COUNT(tst_sequence.active_fi) sequences
35  FROM tst_active
36  LEFT JOIN tst_sequence
37  ON tst_sequence.active_fi = tst_active.active_id
38  WHERE tries = {$ilDB->quote(0, "integer")}
39  AND test_fi = {$ilDB->quote(ilObjTestAccess::_getTestIDFromObjectID($a_obj_id), "integer")}
40  GROUP BY active_id, user_fi
41  HAVING COUNT(tst_sequence.active_fi) > {$ilDB->quote(0, "integer")}
42  ";
43 
44  $res = $ilDB->query($query);
45 
46  $user_ids = array();
47 
48  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
49  $user_ids[$row->user_fi] = (int) $row->user_fi;
50  }
51  return array_values($user_ids);
52  }
53 
54  public static function _getCompleted(int $a_obj_id): array
55  {
56  global $DIC;
57 
58  $ilDB = $DIC['ilDB'];
59  $query = "
60  SELECT active_id, user_fi, COUNT(tst_sequence.active_fi) sequences
61  FROM tst_active
62  LEFT JOIN tst_sequence
63  ON tst_sequence.active_fi = tst_active.active_id
64  WHERE tries > {$ilDB->quote(0, "integer")}
65  AND test_fi = {$ilDB->quote(ilObjTestAccess::_getTestIDFromObjectID($a_obj_id))}
66  GROUP BY active_id, user_fi
67  HAVING COUNT(tst_sequence.active_fi) > {$ilDB->quote(0, "integer")}
68  ";
69 
70  $res = $ilDB->query($query);
71 
72  $user_ids = array();
73 
74  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
75  $user_ids[$row->user_fi] = (int) $row->user_fi;
76  }
77  return array_values($user_ids);
78  }
79 
80  public static function _getNotAttempted(int $a_obj_id): array
81  {
82  global $DIC;
83 
84  $ilDB = $DIC['ilDB'];
85 
86  $query = "
87  SELECT active_id, user_fi, COUNT(tst_sequence.active_fi) sequences
88  FROM tst_active
89  LEFT JOIN tst_sequence
90  ON tst_sequence.active_fi = tst_active.active_id
91  WHERE test_fi = {$ilDB->quote(ilObjTestAccess::_getTestIDFromObjectID($a_obj_id))}
92  GROUP BY active_id, user_fi
93  HAVING COUNT(tst_sequence.active_fi) = {$ilDB->quote(0, "integer")}
94  ";
95 
96  $res = $ilDB->query($query);
97 
98  $user_ids = array();
99 
100  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
101  $user_ids[$row->user_fi] = (int) $row->user_fi;
102  }
103 
104  return array_values($user_ids);
105  }
106 
107  public static function getParticipants($a_obj_id)
108  {
109  global $DIC;
110 
111  $ilDB = $DIC['ilDB'];
112 
113  $res = $ilDB->query(
114  "SELECT DISTINCT user_fi FROM tst_active" .
115  " WHERE test_fi = " . $ilDB->quote(
117  )
118  );
119  $user_ids = array();
120 
121  while ($rec = $ilDB->fetchAssoc($res)) {
122  $user_ids[] = (int) $rec["user_fi"];
123  }
124  return $user_ids;
125  }
126 
127  public function determineStatus(
128  int $a_obj_id,
129  int $a_usr_id,
130  ?object $a_obj = null
131  ): int {
132  $res = $this->db->query(
133  "
134  SELECT active_id, user_fi, tries, COUNT(tst_sequence.active_fi) sequences
135  FROM tst_active
136  LEFT JOIN tst_sequence
137  ON tst_sequence.active_fi = tst_active.active_id
138  WHERE user_fi = {$this->db->quote($a_usr_id, "integer")}
139  AND test_fi = {$this->db->quote(ilObjTestAccess::_getTestIDFromObjectID($a_obj_id), ilDBConstants::T_INTEGER)}
140  GROUP BY active_id, user_fi, tries
141  "
142  );
143 
144  $status = self::LP_STATUS_NOT_ATTEMPTED_NUM;
145 
146  if ($rec = $this->db->fetchAssoc($res)) {
147  if ($rec['sequences'] > 0) {
148  $status = self::LP_STATUS_IN_PROGRESS_NUM;
149 
150  if ($rec['tries'] > 0) {
151  $status = self::LP_STATUS_COMPLETED_NUM;
152  }
153  }
154  }
155  return $status;
156  }
157 }
$res
Definition: ltiservices.php:66
static _getNotAttempted(int $a_obj_id)
static _getInProgress(int $a_obj_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
determineStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null)
global $DIC
Definition: shib_login.php:22
static _getTestIDFromObjectID($object_id)
Returns the ILIAS test id for a given object id.