3 declare(strict_types=0);
45 $this->
logger = $DIC->logger()->trac();
46 $this->
lng = $DIC->language();
47 $this->
lng->loadLanguageModule(
"trac");
48 $this->db = $DIC->database();
49 $this->tree = $DIC->repositoryTree();
50 $this->cron_manager = $DIC->cron()->manager();
55 return "lp_object_statistics";
60 return $this->
lng->txt(
"trac_object_statistics");
65 return $this->
lng->txt(
"trac_object_statistics_info");
70 return JobScheduleType::DAILY;
92 $this->date = strtotime(
"yesterday");
94 $status = JobResult::STATUS_NO_ACTION;
103 $status = JobResult::STATUS_OK;
107 $result->setStatus($status);
123 $trashed_objects = $this->tree->getSavedNodeObjIds($all_courses);
125 foreach ($all_courses as $crs_id) {
127 if (!in_array($crs_id, $trashed_objects)) {
131 'Found course without reference: obj_id = ' . $crs_id
138 if (!$olp->isActive()) {
143 $this->db->manipulate(
144 "DELETE FROM obj_lp_stat WHERE" .
145 " obj_id = " . $this->db->quote($crs_id,
"integer") .
146 " AND fulldate = " . $this->db->quote(
147 date(
"Ymd", $this->date),
153 $members = $members->getMembers();
155 $in_progress = count(
175 $not_attempted = count(
177 ) - $in_progress - $completed - $failed;
180 "type" => array(
"text",
"crs"),
181 "obj_id" => array(
"integer", $crs_id),
182 "yyyy" => array(
"integer", date(
"Y", $this->date)),
183 "mm" => array(
"integer", date(
"m", $this->date)),
184 "dd" => array(
"integer", date(
"d", $this->date)),
185 "fulldate" => array(
"integer",
186 date(
"Ymd", $this->date)
188 "mem_cnt" => array(
"integer", count($members)),
189 "in_progress" => array(
"integer", $in_progress),
190 "completed" => array(
"integer", $completed),
191 "failed" => array(
"integer", $failed),
192 "not_attempted" => array(
"integer", $not_attempted)
195 $this->db->insert(
"obj_lp_stat", $set);
197 $this->cron_manager->ping($this->
getId());
208 foreach (
$data as $type => $item) {
210 $this->db->manipulate(
211 "DELETE FROM obj_type_stat WHERE" .
212 " type = " . $this->db->quote($type,
"text") .
213 " AND fulldate = " . $this->db->quote(
214 date(
"Ymd", $this->date),
220 "type" => array(
"text", $type),
221 "yyyy" => array(
"integer", date(
"Y", $this->date)),
222 "mm" => array(
"integer", date(
"m", $this->date)),
223 "dd" => array(
"integer", date(
"d", $this->date)),
224 "fulldate" => array(
"integer", date(
"Ymd", $this->date)),
225 "cnt_references" => array(
"integer", (
int) $item[
"references"]),
226 "cnt_objects" => array(
"integer", (
int) $item[
"objects"]),
227 "cnt_deleted" => array(
"integer", isset($item[
"deleted"]) ? (
int) $item[
"deleted"] : 0)
230 $this->db->insert(
"obj_type_stat", $set);
233 $this->cron_manager->ping($this->
getId());
245 date(
"m", $this->date),
246 date(
"d", $this->date),
247 date(
"Y", $this->date)
250 $sql =
"SELECT COUNT(DISTINCT(usr_id)) counter,obj_id FROM read_event" .
251 " WHERE last_access >= " . $this->db->quote(
255 " AND last_access <= " . $this->db->quote($to,
"integer") .
257 $set = $this->db->query($sql);
258 while ($row = $this->db->fetchAssoc($set)) {
260 $this->db->manipulate(
261 "DELETE FROM obj_user_stat" .
262 " WHERE fulldate = " . $this->db->quote(
263 date(
"Ymd", $this->date),
266 " AND obj_id = " . $this->db->quote($row[
"obj_id"],
"integer")
270 "obj_id" => array(
"integer", $row[
"obj_id"]),
271 "yyyy" => array(
"integer", date(
"Y", $this->date)),
272 "mm" => array(
"integer", date(
"m", $this->date)),
273 "dd" => array(
"integer", date(
"d", $this->date)),
274 "fulldate" => array(
"integer", date(
"Ymd", $this->date)),
275 "counter" => array(
"integer", $row[
"counter"])
278 $this->db->insert(
"obj_user_stat", $iset);
281 $this->cron_manager->ping($this->
getId());
static _getObjectsByType(string $obj_type="", ?int $owner=null)
static _lookupInProgressForObject(int $a_obj_id, ?array $a_user_ids=null)
static _getAllReferences(int $id)
get all reference ids for object ID
static _lookupCompletedForObject(int $a_obj_id, ?array $a_user_ids=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Cron for lp object statistics.
static _lookupFailedForObject(int $a_obj_id, ?array $a_user_ids=null)
static getObjectTypeStatistics()
getDefaultScheduleValue()
static getInstance(int $obj_id)
gatherCourseLPData()
gather course data