ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilPRGAssignmentDBRepository Class Reference

Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PRG-tree. More...

+ Inheritance diagram for ilPRGAssignmentDBRepository:
+ Collaboration diagram for ilPRGAssignmentDBRepository:

Public Member Functions

 __construct (protected ilDBInterface $db, protected ilTree $tree, protected ilStudyProgrammeSettingsRepository $settings_repo, protected PRGEventsDelayed $events, ilExportFieldsInfo $user_field_info)
 
 getDashboardInstancesforUser (int $usr_id)
 
 createFor (int $prg_obj_id, int $usr_id, int $assigning_usr_id)
 
 store (ilPRGAssignment $assignment)
 
 delete (ilPRGAssignment $assignment)
 
 deleteAllAssignmentsForProgrammeId (int $prg_obj_id)
 
 get (int $id)
 
 getForUser (int $usr_id)
 get all assignments for a user More...
 
 getForUserOnNode (int $usr_id, int $root_prg_obj_id)
 
 getAllForNodeIsContained (int $prg_obj_id, ?array $user_filter=null, ?ilPRGAssignmentFilter $custom_filters=null)
 get all assignments for all (or given) users, where the given node is part of the assignment More...
 
 countAllForNodeIsContained (int $prg_obj_id, ?array $user_filter=null, ?ilPRGAssignmentFilter $custom_filters=null)
 Count all assignments for all (or given) users, where the given node is part of the assignment. More...
 
 getAllForSpecificNode (int $prg_obj_id, ?array $user_filter=null)
 get all assignments for all (or given) users, where the given node is the root-node of the assignment More...
 
 getPassedDeadline (\DateTimeImmutable $deadline)
 
 getAboutToExpire (array $programmes_and_due, bool $discard_formerly_notified=true)
 
 getExpiredAndNotInvalidated ()
 
 getRiskyToFail (array $programmes_and_due, bool $discard_formerly_notified=true)
 
 storeExpiryInfoSentFor (ilPRGAssignment $ass)
 
 resetExpiryInfoSentFor (ilPRGAssignment $ass)
 
 storeRiskyToFailSentFor (ilPRGAssignment $ass)
 
 resetRiskyToFailSentFor (ilPRGAssignment $ass)
 
 getLatestAssignment (int $root_prg_obj_id, int $usr_id)
 Get the user's assignment on a prg that was created last. More...
 
 getLongestValidAssignment (int $root_prg_obj_id, int $usr_id)
 Get the user's assignment on a prg with the longest lasting qualification. More...
 

Data Fields

const ASSIGNMENT_TABLE = 'prg_usr_assignments'
 
const ASSIGNMENT_FIELD_ID = 'id'
 
const ASSIGNMENT_FIELD_USR_ID = 'usr_id'
 
const ASSIGNMENT_FIELD_ROOT_PRG_ID = 'root_prg_id'
 
const ASSIGNMENT_FIELD_LAST_CHANGE = 'last_change'
 
const ASSIGNMENT_FIELD_LAST_CHANGE_BY = 'last_change_by'
 
const ASSIGNMENT_FIELD_RESTART_DATE = 'restart_date'
 
const ASSIGNMENT_FIELD_RESTARTED_ASSIGNMENT_ID = 'restarted_assignment_id'
 
const ASSIGNMENT_FIELD_RESTART_MAIL = 'restart_mail_send'
 
const ASSIGNMENT_FIELD_MANUALLY_ASSIGNED = 'assigned_manually'
 
const PROGRESS_TABLE = 'prg_usr_progress'
 
const PROGRESS_FIELD_ASSIGNMENT_ID = 'assignment_id'
 
const PROGRESS_FIELD_USR_ID = 'usr_id'
 
const PROGRESS_FIELD_PRG_ID = 'prg_id'
 
const PROGRESS_FIELD_POINTS = 'points'
 
const PROGRESS_FIELD_POINTS_CUR = 'points_cur'
 
const PROGRESS_FIELD_STATUS = 'status'
 
const PROGRESS_FIELD_COMPLETION_BY = 'completion_by'
 
const PROGRESS_FIELD_ASSIGNMENT_DATE = 'assignment_date'
 
const PROGRESS_FIELD_LAST_CHANGE = 'last_change'
 
const PROGRESS_FIELD_LAST_CHANGE_BY = 'last_change_by'
 
const PROGRESS_FIELD_COMPLETION_DATE = 'completion_date'
 
const PROGRESS_FIELD_DEADLINE = 'deadline'
 
const PROGRESS_FIELD_VQ_DATE = 'vq_date'
 
const PROGRESS_FIELD_INVALIDATED = 'invalidated'
 
const PROGRESS_FIELD_MAIL_SENT_RISKYTOFAIL = 'sent_mail_risky_to_fail'
 
const PROGRESS_FIELD_MAIL_SENT_WILLEXPIRE = 'sent_mail_expires'
 
const PROGRESS_FIELD_IS_INDIVIDUAL = 'individual'
 
const DATE_FORMAT_ENDOFDAY = 'Y-m-d 23:59:59'
 

Protected Member Functions

 deleteAllOrphanedProgresses ()
 
 query ($filter)
 
 nextId ()
 
 count (array $filter)
 
 read (array $filter)
 
 prebuildProgressesForAssingment (int $assignment_id)
 
 assignmentByRow (array $row)
 
 buildProgressTreeFor (int $node_obj_id)
 
 getRefIdFor (int $obj_id)
 
 getObjIdFor (int $ref_id)
 
 buildProgressByRow (array $row)
 
 interimOrguLookup (int $usr_id)
 
 buildUserInformation (array $row)
 
 insertAssignmentRowDB (array $row)
 
 updateAssignmentRowDB (array $values)
 
 storeProgressRow (int $assignment_id, int $usr_id, ilPRGProgress $pgs)
 

Protected Attributes

array $user_data_fields
 
array $progresses = []
 <id => ilPRGProgress> More...
 

Detailed Description

Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PRG-tree.

Definition at line 25 of file class.ilPRGAssignmentDBRepository.php.

Constructor & Destructor Documentation

◆ __construct()

ilPRGAssignmentDBRepository::__construct ( protected ilDBInterface  $db,
protected ilTree  $tree,
protected ilStudyProgrammeSettingsRepository  $settings_repo,
protected PRGEventsDelayed  $events,
ilExportFieldsInfo  $user_field_info 
)

Definition at line 66 of file class.ilPRGAssignmentDBRepository.php.

References ilExportFieldsInfo\getSelectableFieldsInfo(), and ilPRGUserInformation\MANDATORY_FIELDS.

72  {
73  $this->user_data_fields = array_merge(
74  array_keys($user_field_info->getSelectableFieldsInfo()),
76  );
77  }
getSelectableFieldsInfo(?int $a_obj_id=null)
Get selectable fields.
+ Here is the call graph for this function:

Member Function Documentation

◆ assignmentByRow()

ilPRGAssignmentDBRepository::assignmentByRow ( array  $row)
protected

Definition at line 478 of file class.ilPRGAssignmentDBRepository.php.

References buildProgressTreeFor(), buildUserInformation(), ilPRGAssignment\DATE_TIME_FORMAT, ILIAS\Repository\int(), and null.

Referenced by createFor(), and read().

479  {
480  $ass = new ilPRGAssignment(
481  (int) $row[self::ASSIGNMENT_FIELD_ID],
482  (int) $row[self::ASSIGNMENT_FIELD_USR_ID]
483  );
484  $ass = $ass
485  ->withEvents($this->events)
486  ->withLastChange(
487  (int) $row[self::ASSIGNMENT_FIELD_LAST_CHANGE_BY],
488  \DateTimeImmutable::createFromFormat(
490  $row[self::ASSIGNMENT_FIELD_LAST_CHANGE]
491  )
492  )
493  ->withRestarted(
494  (int) $row[self::ASSIGNMENT_FIELD_RESTARTED_ASSIGNMENT_ID],
495  $row[self::ASSIGNMENT_FIELD_RESTART_DATE] ?
496  \DateTimeImmutable::createFromFormat(ilPRGAssignment::DATE_TIME_FORMAT, $row[self::ASSIGNMENT_FIELD_RESTART_DATE]) :
497  null
498  )
499  ->withManuallyAssigned((bool) $row[self::ASSIGNMENT_FIELD_MANUALLY_ASSIGNED]);
500 
501 
502  $root_pgs_id = (int) $row[self::ASSIGNMENT_FIELD_ROOT_PRG_ID];
503  $pgs = $this->buildProgressTreeFor($root_pgs_id);
504 
505  $user_information = $this->buildUserInformation($row);
506 
507  $ass = $ass
508  ->withProgressTree($pgs)
509  ->withUserInformation($user_information);
510  return $ass;
511  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ buildProgressByRow()

ilPRGAssignmentDBRepository::buildProgressByRow ( array  $row)
protected

Definition at line 551 of file class.ilPRGAssignmentDBRepository.php.

References ilPRGProgress\DATE_FORMAT, ilPRGProgress\DATE_TIME_FORMAT, and null.

Referenced by prebuildProgressesForAssingment().

551  : ilPRGProgress
552  {
553  $pgs = new ilPRGProgress(
554  (int) $row[self::PROGRESS_FIELD_PRG_ID],
555  (int) $row[self::PROGRESS_FIELD_STATUS]
556  );
557 
558  $pgs = $pgs
559  ->withAmountOfPoints((int) $row[self::PROGRESS_FIELD_POINTS])
560  ->withCurrentAmountOfPoints((int) $row[self::PROGRESS_FIELD_POINTS_CUR])
561  ->withAssignmentDate(
562  $row[self::PROGRESS_FIELD_ASSIGNMENT_DATE] ?
563  \DateTimeImmutable::createFromFormat(ilPRGProgress::DATE_TIME_FORMAT, $row[self::PROGRESS_FIELD_ASSIGNMENT_DATE]) :
564  null
565  )
566  ->withDeadline(
567  $row[self::PROGRESS_FIELD_DEADLINE] ?
568  \DateTimeImmutable::createFromFormat(ilPRGProgress::DATE_FORMAT, $row[self::PROGRESS_FIELD_DEADLINE]) :
569  null
570  )
571  ->withCompletion(
572  (int) $row[self::PROGRESS_FIELD_COMPLETION_BY],
573  $row[self::PROGRESS_FIELD_COMPLETION_DATE] ?
574  \DateTimeImmutable::createFromFormat(ilPRGProgress::DATE_TIME_FORMAT, $row[self::PROGRESS_FIELD_COMPLETION_DATE]) :
575  null
576  )
577  ->withLastChange(
578  (int) $row[self::PROGRESS_FIELD_LAST_CHANGE_BY],
579  $row[self::PROGRESS_FIELD_LAST_CHANGE] ?
580  \DateTimeImmutable::createFromFormat(ilPRGProgress::DATE_TIME_FORMAT, $row[self::PROGRESS_FIELD_LAST_CHANGE]) :
581  null
582  )
583  ->withValidityOfQualification(
584  $row[self::PROGRESS_FIELD_VQ_DATE] ?
585  \DateTimeImmutable::createFromFormat(ilPRGProgress::DATE_TIME_FORMAT, $row[self::PROGRESS_FIELD_VQ_DATE]) :
586  null
587  )
588  ->withIndividualModifications((bool) $row[self::PROGRESS_FIELD_IS_INDIVIDUAL])
589  ->withInvalidated((bool) $row[self::PROGRESS_FIELD_INVALIDATED]);
590 
591  return $pgs;
592  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
A Progress is the status of a user on a single node of an assignment; it is unique by assignment_id:u...
+ Here is the caller graph for this function:

◆ buildProgressTreeFor()

ilPRGAssignmentDBRepository::buildProgressTreeFor ( int  $node_obj_id)
protected

Definition at line 513 of file class.ilPRGAssignmentDBRepository.php.

References $c, and ilContainerReference\_lookupTargetId().

Referenced by assignmentByRow().

513  : ilPRGProgress
514  {
515  $children = array_filter(
516  $this->tree->getChilds($this->getRefIdFor($node_obj_id)),
517  fn($c) => in_array($c['type'], ['prg', 'prgr']),
518  );
519  $children = array_map(
520  fn($c) => $c['type'] === 'prg' ? (int) $c['obj_id'] : ilContainerReference::_lookupTargetId((int) $c['obj_id']),
521  $children
522  );
523 
524  $pgss = [];
525  foreach ($children as $child_obj_id) {
526  $pgss[] = $this->buildProgressTreeFor($child_obj_id);
527  }
528 
529  if (!array_key_exists($node_obj_id, $this->progresses)) {
530  $pgs = new ilPRGProgress((int) $node_obj_id);
531  } else {
532  $pgs = $this->progresses[$node_obj_id];
533  }
534  $pgs->setSubnodes($pgss);
535  return $pgs;
536  }
$c
Definition: deliver.php:25
A Progress is the status of a user on a single node of an assignment; it is unique by assignment_id:u...
static _lookupTargetId(int $a_obj_id)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ buildUserInformation()

ilPRGAssignmentDBRepository::buildUserInformation ( array  $row)
protected

Definition at line 614 of file class.ilPRGAssignmentDBRepository.php.

References interimOrguLookup().

Referenced by assignmentByRow().

615  {
616  $udf_data = new ilUserDefinedData((int) $row[self::ASSIGNMENT_FIELD_USR_ID]);
617  $user_data_values = [];
618  foreach ($this->user_data_fields as $field) {
619  switch ($field) {
620  case 'active':
621  $user_data_values[$field] = (bool) $row[$field];
622  break;
623  case 'org_units':
624  //$user_data_values[$field] = ilObjUser::lookupOrgUnitsRepresentation((int) $row[self::ASSIGNMENT_FIELD_USR_ID]);
625  $user_data_values[$field] = $this->interimOrguLookup((int) $row[self::ASSIGNMENT_FIELD_USR_ID]);
626  break;
627  case str_starts_with($field, 'udf_'):
628  $udf_field_id = str_replace('udf_', 'f_', $field);
629  $user_data_values[$field] = $udf_data->get($udf_field_id);
630  break;
631  default:
632  $user_data_values[$field] = $row[$field];
633  }
634  }
635  return new ilPRGUserInformation(
636  $user_data_values
637  );
638  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Additional information about a user, used in context of assignments.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ count()

ilPRGAssignmentDBRepository::count ( array  $filter)
protected

Definition at line 440 of file class.ilPRGAssignmentDBRepository.php.

References $res, and query().

Referenced by countAllForNodeIsContained(), getAboutToExpire(), getRefIdFor(), and getRiskyToFail().

440  : int
441  {
442  $res = $this->query($filter);
443  return $this->db->numRows($res);
444  }
$res
Definition: ltiservices.php:66
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ countAllForNodeIsContained()

ilPRGAssignmentDBRepository::countAllForNodeIsContained ( int  $prg_obj_id,
?array  $user_filter = null,
?ilPRGAssignmentFilter  $custom_filters = null 
)

Count all assignments for all (or given) users, where the given node is part of the assignment.

Implements PRGAssignmentRepository.

Definition at line 223 of file class.ilPRGAssignmentDBRepository.php.

References count().

227  : int {
228  $conditions = [
229  'pgs.' . self::PROGRESS_FIELD_PRG_ID . ' = ' . $this->db->quote($prg_obj_id, 'integer')
230  ];
231  if ($user_filter) {
232  $conditions[] = $this->db->in('ass.' . self::ASSIGNMENT_FIELD_USR_ID, $user_filter, false, 'integer');
233  }
234  if ($custom_filters) {
235  $conditions = array_merge($conditions, $custom_filters->toConditions());
236  }
237  return $this->count($conditions);
238  }
+ Here is the call graph for this function:

◆ createFor()

ilPRGAssignmentDBRepository::createFor ( int  $prg_obj_id,
int  $usr_id,
int  $assigning_usr_id 
)

Implements PRGAssignmentRepository.

Definition at line 86 of file class.ilPRGAssignmentDBRepository.php.

References Vendor\Package\$f, $res, ilObject\_lookupType(), assignmentByRow(), insertAssignmentRowDB(), nextId(), ilPRGAssignment\NO_RESTARTED_ASSIGNMENT, ilUtil\now(), and null.

90  : ilPRGAssignment {
91  $manually = false;
92  if (ilObject::_lookupType($assigning_usr_id) === "usr") {
93  $manually = true;
94  }
95  $row = [
96  self::ASSIGNMENT_FIELD_ID => $this->nextId(),
97  self::ASSIGNMENT_FIELD_USR_ID => $usr_id,
98  self::ASSIGNMENT_FIELD_ROOT_PRG_ID => $prg_obj_id,
99  self::ASSIGNMENT_FIELD_LAST_CHANGE_BY => $assigning_usr_id,
100  self::ASSIGNMENT_FIELD_LAST_CHANGE => ilUtil::now(),
101  self::ASSIGNMENT_FIELD_RESTART_DATE => null,
102  self::ASSIGNMENT_FIELD_RESTARTED_ASSIGNMENT_ID => ilPRGAssignment::NO_RESTARTED_ASSIGNMENT,
103  self::ASSIGNMENT_FIELD_MANUALLY_ASSIGNED => $manually
104  ];
105  $this->insertAssignmentRowDB($row);
106  $this->progresses = [];
107 
108  $user_data_fields = array_filter($this->user_data_fields, fn($f) => $f !== 'org_units');
109  $query = 'SELECT ' . implode(',', $user_data_fields) . PHP_EOL
110  . 'FROM usr_data WHERE usr_id = ' . $this->db->quote($usr_id, 'integer');
111  $res = $this->db->query($query);
112  $row = array_merge($row, $this->db->fetchAssoc($res));
113 
114  $ass = $this->assignmentByRow($row);
115  return $ass;
116  }
$res
Definition: ltiservices.php:66
static now()
Return current timestamp in Y-m-d H:i:s format.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
static _lookupType(int $id, bool $reference=false)
+ Here is the call graph for this function:

◆ delete()

ilPRGAssignmentDBRepository::delete ( ilPRGAssignment  $assignment)

Implements PRGAssignmentRepository.

Definition at line 142 of file class.ilPRGAssignmentDBRepository.php.

References $ass_id.

Referenced by ilObjStudyProgramme\removeMemberFromProgrammes().

142  : void
143  {
144  $ass_id = $assignment->getId();
145  $query = 'DELETE FROM ' . self::ASSIGNMENT_TABLE . PHP_EOL
146  . 'WHERE ' . self::ASSIGNMENT_FIELD_ID . ' = ' . $ass_id;
147  $this->db->manipulate($query);
148 
149  $query = 'DELETE FROM ' . self::PROGRESS_TABLE . PHP_EOL
150  . 'WHERE ' . self::PROGRESS_FIELD_ASSIGNMENT_ID . ' = ' . $ass_id;
151  $this->db->manipulate($query);
152  }
+ Here is the caller graph for this function:

◆ deleteAllAssignmentsForProgrammeId()

ilPRGAssignmentDBRepository::deleteAllAssignmentsForProgrammeId ( int  $prg_obj_id)

Implements PRGAssignmentRepository.

Definition at line 154 of file class.ilPRGAssignmentDBRepository.php.

References deleteAllOrphanedProgresses().

154  : void
155  {
156  $query = 'DELETE FROM ' . self::ASSIGNMENT_TABLE . PHP_EOL
157  . 'WHERE ' . self::ASSIGNMENT_FIELD_ROOT_PRG_ID . '=' . $this->db->quote($prg_obj_id, 'integer');
158  $this->db->manipulate($query);
160  }
+ Here is the call graph for this function:

◆ deleteAllOrphanedProgresses()

ilPRGAssignmentDBRepository::deleteAllOrphanedProgresses ( )
protected

Definition at line 161 of file class.ilPRGAssignmentDBRepository.php.

Referenced by deleteAllAssignmentsForProgrammeId().

161  : void
162  {
163  $query = 'DELETE FROM ' . self::PROGRESS_TABLE . PHP_EOL
164  . 'WHERE ' . self::PROGRESS_FIELD_ASSIGNMENT_ID . PHP_EOL
165  . 'NOT IN (' . PHP_EOL
166  . 'SELECT ' . $this->db->quoteIdentifier(self::ASSIGNMENT_FIELD_ID)
167  . ' FROM ' . $this->db->quoteIdentifier(self::ASSIGNMENT_TABLE) . PHP_EOL
168  . ');' . PHP_EOL;
169  $this->db->manipulate($query);
170  }
+ Here is the caller graph for this function:

◆ get()

ilPRGAssignmentDBRepository::get ( int  $id)

Implements PRGAssignmentRepository.

Definition at line 172 of file class.ilPRGAssignmentDBRepository.php.

References $id, and read().

173  {
174  $ass = $this->read([
175  'ass.' . self::ASSIGNMENT_FIELD_ID . ' = ' . $this->db->quote($id, 'integer')
176  ]);
177 
178  return $ass->current();
179  }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
+ Here is the call graph for this function:

◆ getAboutToExpire()

ilPRGAssignmentDBRepository::getAboutToExpire ( array  $programmes_and_due,
bool  $discard_formerly_notified = true 
)
Parameters
array<int $prg_obj_id, DateTimeImmutable $due>
Returns
ilPRGAssignment[]

Implements PRGAssignmentRepository.

Definition at line 282 of file class.ilPRGAssignmentDBRepository.php.

References count(), and read().

285  : array {
286  $ret = [];
287  if (count($programmes_and_due) == 0) {
288  return $ret;
289  }
290 
291  $where = [];
292  foreach ($programmes_and_due as $prg_obj_id => $due) {
293  $due = $due->format(self::DATE_FORMAT_ENDOFDAY);
294 
295  $where_clause = '('
296  . self::PROGRESS_FIELD_VQ_DATE . '<=' . $this->db->quote($due, 'text')
297  . ' AND (pgs.' . self::PROGRESS_FIELD_PRG_ID . '=' . $prg_obj_id
298  . ' OR ' . self::ASSIGNMENT_FIELD_ROOT_PRG_ID . '=' . $prg_obj_id . ')';
299 
300  if ($discard_formerly_notified) {
301  $where_clause .= ' AND ' . self::PROGRESS_FIELD_MAIL_SENT_WILLEXPIRE . ' IS NULL';
302  }
303 
304  $where_clause .= ')';
305  $where[] = $where_clause;
306  }
307 
308  $conditions = [
309  implode(' OR ', $where)
310  ];
311  $assignments = array_filter(iterator_to_array(
312  $this->read($conditions)
313  ));
314  return $assignments;
315  }
+ Here is the call graph for this function:

◆ getAllForNodeIsContained()

ilPRGAssignmentDBRepository::getAllForNodeIsContained ( int  $prg_obj_id,
?array  $user_filter = null,
?ilPRGAssignmentFilter  $custom_filters = null 
)

get all assignments for all (or given) users, where the given node is part of the assignment

Returns
ilPRGAssignment[]

Implements PRGAssignmentRepository.

Definition at line 202 of file class.ilPRGAssignmentDBRepository.php.

References read().

206  : array {
207  $conditions = [
208  'pgs.' . self::PROGRESS_FIELD_PRG_ID . ' = ' . $this->db->quote($prg_obj_id, 'integer')
209  ];
210  if ($user_filter) {
211  $conditions[] = $this->db->in('ass.' . self::ASSIGNMENT_FIELD_USR_ID, $user_filter, false, 'integer');
212  }
213  if ($custom_filters) {
214  $conditions = array_merge($conditions, $custom_filters->toConditions());
215  }
216 
217  $assignments = array_filter(iterator_to_array(
218  $this->read($conditions)
219  ));
220  return $assignments;
221  }
+ Here is the call graph for this function:

◆ getAllForSpecificNode()

ilPRGAssignmentDBRepository::getAllForSpecificNode ( int  $prg_obj_id,
?array  $user_filter = null 
)

get all assignments for all (or given) users, where the given node is the root-node of the assignment

Returns
ilPRGAssignment[]

Implements PRGAssignmentRepository.

Definition at line 240 of file class.ilPRGAssignmentDBRepository.php.

References read().

240  : array
241  {
242  $conditions = [
243  self::ASSIGNMENT_FIELD_ROOT_PRG_ID . ' = ' . $this->db->quote($prg_obj_id, 'integer')
244  ];
245  if ($user_filter) {
246  $conditions[] = $this->db->in('ass.' . self::ASSIGNMENT_FIELD_USR_ID, $user_filter, false, 'integer');
247  }
248 
249  $assignments = array_filter(iterator_to_array(
250  $this->read($conditions)
251  ));
252  return $assignments;
253  }
+ Here is the call graph for this function:

◆ getDashboardInstancesforUser()

ilPRGAssignmentDBRepository::getDashboardInstancesforUser ( int  $usr_id)
Returns
ilPRGAssignment[]

Implements PRGAssignmentRepository.

Definition at line 79 of file class.ilPRGAssignmentDBRepository.php.

References getForUser().

79  : array
80  {
81  $assignments = $this->getForUser($usr_id);
82  //TODO: decide, which ones are relevant for the dashboard
83  return $assignments;
84  }
getForUser(int $usr_id)
get all assignments for a user
+ Here is the call graph for this function:

◆ getExpiredAndNotInvalidated()

ilPRGAssignmentDBRepository::getExpiredAndNotInvalidated ( )
Returns
ilPRGAssignment[]

Implements PRGAssignmentRepository.

Definition at line 317 of file class.ilPRGAssignmentDBRepository.php.

References read(), ilPRGProgress\STATUS_ACCREDITED, and ilPRGProgress\STATUS_COMPLETED.

317  : array
318  {
319  $now = (new \DateTimeImmutable())->format(self::DATE_FORMAT_ENDOFDAY);
320  $conditions = [
321  $this->db->in(
322  self::PROGRESS_FIELD_STATUS,
323  [
326  ],
327  false,
328  'integer'
329  ),
330  self::PROGRESS_FIELD_VQ_DATE . ' IS NOT NULL',
331  self::PROGRESS_FIELD_VQ_DATE . ' < ' . $this->db->quote($now, 'text'),
332  self::PROGRESS_FIELD_INVALIDATED . ' = 0 ',
333  ];
334 
335  $assignments = array_filter(iterator_to_array(
336  $this->read($conditions)
337  ));
338  return $assignments;
339  }
+ Here is the call graph for this function:

◆ getForUser()

ilPRGAssignmentDBRepository::getForUser ( int  $usr_id)

get all assignments for a user

Returns
ilPRGAssignment[]

Implements PRGAssignmentRepository.

Definition at line 181 of file class.ilPRGAssignmentDBRepository.php.

References read().

Referenced by getDashboardInstancesforUser().

181  : array
182  {
183  $assignments = array_filter(iterator_to_array(
184  $this->read([
185  'ass.' . self::ASSIGNMENT_FIELD_USR_ID . ' = ' . $this->db->quote($usr_id, 'integer')
186  ])
187  ));
188  return $assignments;
189  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getForUserOnNode()

ilPRGAssignmentDBRepository::getForUserOnNode ( int  $usr_id,
int  $root_prg_obj_id 
)

Definition at line 191 of file class.ilPRGAssignmentDBRepository.php.

References read().

Referenced by getLatestAssignment(), and getLongestValidAssignment().

191  : array
192  {
193  $assignments = array_filter(iterator_to_array(
194  $this->read([
195  'ass.' . self::ASSIGNMENT_FIELD_USR_ID . ' = ' . $this->db->quote($usr_id, 'integer'),
196  self::ASSIGNMENT_FIELD_ROOT_PRG_ID . ' = ' . $this->db->quote($root_prg_obj_id, 'integer')
197  ])
198  ));
199  return $assignments;
200  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getLatestAssignment()

ilPRGAssignmentDBRepository::getLatestAssignment ( int  $root_prg_obj_id,
int  $usr_id 
)

Get the user's assignment on a prg that was created last.

Implements PRGAssignmentRepository.

Definition at line 799 of file class.ilPRGAssignmentDBRepository.php.

References Vendor\Package\$a, Vendor\Package\$b, getForUserOnNode(), ilPRGAssignment\getProgressTree(), and null.

799  : ?ilPRGAssignment
800  {
801  $assignments = $this->getForUserOnNode($usr_id, $root_prg_obj_id);
802  if ($assignments === []) {
803  return null;
804  }
805  usort(
806  $assignments,
808  => $a->getProgressTree()->getAssignmentDate() <=> $b->getProgressTree()->getAssignmentDate()
809  );
810  $assignments = array_reverse($assignments);
811  return current($assignments);
812  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getForUserOnNode(int $usr_id, int $root_prg_obj_id)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
+ Here is the call graph for this function:

◆ getLongestValidAssignment()

ilPRGAssignmentDBRepository::getLongestValidAssignment ( int  $root_prg_obj_id,
int  $usr_id 
)

Get the user's assignment on a prg with the longest lasting qualification.

If there is more than one assignment with e.g. unlimited qualification, the valid assignment that was created (not finished) last is returned.

Implements PRGAssignmentRepository.

Definition at line 814 of file class.ilPRGAssignmentDBRepository.php.

References Vendor\Package\$a, Vendor\Package\$b, $valid, getForUserOnNode(), ilPRGAssignment\getProgressTree(), and null.

814  : ?ilPRGAssignment
815  {
816  $assignments = $this->getForUserOnNode($usr_id, $root_prg_obj_id);
817  if ($assignments === []) {
818  return null;
819  }
820 
821  $now = new \DateTimeImmutable();
822  $valid = array_filter($assignments, fn($ass) => $ass->getProgressTree()->hasValidQualification($now));
823  if ($valid === []) {
824  return null;
825  }
826 
827  $unlimited = array_filter($valid, fn($ass) => $ass->getProgressTree()->getValidityOfQualification() === null);
828  if ($unlimited !== []) {
829  usort(
830  $unlimited,
832  => $a->getProgressTree()->getAssignmentDate() <=> $b->getProgressTree()->getAssignmentDate()
833  );
834  $unlimited = array_reverse($unlimited);
835  return current($unlimited);
836  }
837 
838  usort(
839  $valid,
841  => $a->getProgressTree()->getValidityOfQualification() <=> $b->getProgressTree()->getValidityOfQualification()
842  );
843  $valid = array_reverse($valid);
844  return current($valid);
845  }
$valid
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getForUserOnNode(int $usr_id, int $root_prg_obj_id)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
+ Here is the call graph for this function:

◆ getObjIdFor()

ilPRGAssignmentDBRepository::getObjIdFor ( int  $ref_id)
protected

Definition at line 546 of file class.ilPRGAssignmentDBRepository.php.

References ilObject\_lookupObjectId().

546  : int
547  {
548  return (int) ilObject::_lookupObjectId($ref_id);
549  }
$ref_id
Definition: ltiauth.php:65
static _lookupObjectId(int $ref_id)
+ Here is the call graph for this function:

◆ getPassedDeadline()

ilPRGAssignmentDBRepository::getPassedDeadline ( \DateTimeImmutable  $deadline)
Returns
ilPRGAssignment[]

Implements PRGAssignmentRepository.

Definition at line 255 of file class.ilPRGAssignmentDBRepository.php.

References ilPRGProgress\DATE_FORMAT, read(), ilPRGProgress\STATUS_ACCREDITED, and ilPRGProgress\STATUS_IN_PROGRESS.

255  : array
256  {
257  $deadline = $this->db->quote(
258  $deadline->format(ilPRGProgress::DATE_FORMAT),
259  'text'
260  );
261 
262  $conditions = [
263  $this->db->in(
264  self::PROGRESS_FIELD_STATUS,
265  [
268  ],
269  false,
270  'integer'
271  ),
272  self::PROGRESS_FIELD_DEADLINE . ' IS NOT NULL',
273  self::PROGRESS_FIELD_DEADLINE . ' < ' . $deadline
274  ];
275 
276  $assignments = array_filter(iterator_to_array(
277  $this->read($conditions)
278  ));
279  return $assignments;
280  }
+ Here is the call graph for this function:

◆ getRefIdFor()

ilPRGAssignmentDBRepository::getRefIdFor ( int  $obj_id)
protected

Definition at line 538 of file class.ilPRGAssignmentDBRepository.php.

References ilObject\_getAllReferences(), and count().

538  : int
539  {
540  $refs = ilObject::_getAllReferences($obj_id);
541  if (count($refs) < 1) {
542  throw new ilException("Could not find ref_id for programme with obj_id $obj_id");
543  }
544  return (int) array_shift($refs);
545  }
static _getAllReferences(int $id)
get all reference ids for object ID
+ Here is the call graph for this function:

◆ getRiskyToFail()

ilPRGAssignmentDBRepository::getRiskyToFail ( array  $programmes_and_due,
bool  $discard_formerly_notified = true 
)

Definition at line 341 of file class.ilPRGAssignmentDBRepository.php.

References count(), ilPRGProgress\DATE_FORMAT, read(), ilPRGProgress\STATUS_ACCREDITED, ilPRGProgress\STATUS_COMPLETED, and ilPRGProgress\STATUS_NOT_RELEVANT.

344  : array {
345  $ret = [];
346  if (count($programmes_and_due) == 0) {
347  return $ret;
348  }
349 
350  $where = [];
351  foreach ($programmes_and_due as $prg_obj_id => $due) {
352  $due = $due->format(ilPRGProgress::DATE_FORMAT);
353 
354  $where_clause = '('
355  . self::PROGRESS_FIELD_DEADLINE . '<=' . $this->db->quote($due, 'text')
356  . 'AND (pgs.' . self::PROGRESS_FIELD_PRG_ID . '=' . $prg_obj_id
357  . ' OR ' . self::ASSIGNMENT_FIELD_ROOT_PRG_ID . '=' . $prg_obj_id . ')'
358  . ' AND ' . $this->db->in(
359  self::PROGRESS_FIELD_STATUS,
360  [
364  ],
365  true,
366  'integer'
367  );
368 
369  if ($discard_formerly_notified) {
370  $where_clause .= ' AND ' . self::PROGRESS_FIELD_MAIL_SENT_RISKYTOFAIL . ' IS NULL';
371  }
372 
373  $where_clause .= ')';
374  $where[] = $where_clause;
375  }
376 
377  $conditions = [
378  implode(' OR ', $where)
379  ];
380  $assignments = array_filter(iterator_to_array(
381  $this->read($conditions)
382  ));
383  return $assignments;
384  }
+ Here is the call graph for this function:

◆ insertAssignmentRowDB()

ilPRGAssignmentDBRepository::insertAssignmentRowDB ( array  $row)
protected

Definition at line 640 of file class.ilPRGAssignmentDBRepository.php.

Referenced by createFor().

641  {
642  $this->db->insert(
643  self::ASSIGNMENT_TABLE,
644  [
645  self::ASSIGNMENT_FIELD_ID => ['integer', $row[self::ASSIGNMENT_FIELD_ID]]
646  , self::ASSIGNMENT_FIELD_USR_ID => ['integer', $row[self::ASSIGNMENT_FIELD_USR_ID]]
647  , self::ASSIGNMENT_FIELD_ROOT_PRG_ID => ['integer', $row[self::ASSIGNMENT_FIELD_ROOT_PRG_ID]]
648  , self::ASSIGNMENT_FIELD_LAST_CHANGE => ['text', $row[self::ASSIGNMENT_FIELD_LAST_CHANGE]]
649  , self::ASSIGNMENT_FIELD_LAST_CHANGE_BY => ['integer', $row[self::ASSIGNMENT_FIELD_LAST_CHANGE_BY]]
650  , self::ASSIGNMENT_FIELD_RESTART_DATE => ['timestamp', $row[self::ASSIGNMENT_FIELD_RESTART_DATE]]
651  , self::ASSIGNMENT_FIELD_RESTARTED_ASSIGNMENT_ID => ['integer', $row[self::ASSIGNMENT_FIELD_RESTARTED_ASSIGNMENT_ID]]
652  , self::ASSIGNMENT_FIELD_MANUALLY_ASSIGNED => ['integer', $row[self::ASSIGNMENT_FIELD_MANUALLY_ASSIGNED]]
653  ]
654  );
655  }
+ Here is the caller graph for this function:

◆ interimOrguLookup()

ilPRGAssignmentDBRepository::interimOrguLookup ( int  $usr_id)
protected
Deprecated:
; fix ilObjUser::lookupOrgUnitsRepresentation

Definition at line 597 of file class.ilPRGAssignmentDBRepository.php.

References ilObject\_lookupObjId(), ilObject\_lookupTitle(), and OrgUnit\Positions\UserAssignment\ilOrgUnitUserAssignmentRepository\getInstance().

Referenced by buildUserInformation().

597  : string
598  {
600  $orgus = array_values($orgu_repo->findAllUserAssingmentsByUserIds([$usr_id]));
601  if ($orgus) {
602  $orgu_ref_ids = array_map(
603  fn($orgu_assignment) => $orgu_assignment->getOrguId(),
604  $orgus[0]
605  );
606  $orgus = array_map(
607  fn($orgu_ref_id) => ilObject::_lookupTitle(ilObject::_lookupObjId($orgu_ref_id)),
608  $orgu_ref_ids
609  );
610  }
611  return implode(', ', $orgus);
612  }
static _lookupObjId(int $ref_id)
static _lookupTitle(int $obj_id)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ nextId()

ilPRGAssignmentDBRepository::nextId ( )
protected

Definition at line 435 of file class.ilPRGAssignmentDBRepository.php.

Referenced by createFor().

436  {
437  return $this->db->nextId(self::ASSIGNMENT_TABLE);
438  }
+ Here is the caller graph for this function:

◆ prebuildProgressesForAssingment()

ilPRGAssignmentDBRepository::prebuildProgressesForAssingment ( int  $assignment_id)
protected

Definition at line 467 of file class.ilPRGAssignmentDBRepository.php.

References $q, $res, and buildProgressByRow().

Referenced by read().

467  : array
468  {
469  $q = 'SELECT * FROM ' . self::PROGRESS_TABLE
470  . ' WHERE ' . self::PROGRESS_FIELD_ASSIGNMENT_ID . ' = ' . $assignment_id;
471  $res = $this->db->query($q);
472  while ($row = $this->db->fetchAssoc($res)) {
473  $ret[$row[self::PROGRESS_FIELD_PRG_ID]] = $this->buildProgressByRow($row);
474  }
475  return $ret;
476  }
$res
Definition: ltiservices.php:66
$q
Definition: shib_logout.php:21
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ query()

ilPRGAssignmentDBRepository::query (   $filter)
protected

Definition at line 386 of file class.ilPRGAssignmentDBRepository.php.

References $q, and $res.

Referenced by count(), and read().

386  : ilDBStatement
387  {
388  $user_fields_without_udf = array_filter(
389  $this->user_data_fields,
390  static fn($field) => !str_starts_with($field, 'udf_') && $field !== 'org_units'
391  );
392 
393  $q = 'SELECT'
394  . ' ass.' . self::ASSIGNMENT_FIELD_ID . ' AS ' . self::ASSIGNMENT_FIELD_ID
395  . ', ass.' . self::ASSIGNMENT_FIELD_USR_ID . ' AS ' . self::ASSIGNMENT_FIELD_USR_ID
396  . ',' . self::ASSIGNMENT_FIELD_ROOT_PRG_ID
397  . ', ass.' . self::ASSIGNMENT_FIELD_LAST_CHANGE
398  . ', ass.' . self::ASSIGNMENT_FIELD_LAST_CHANGE_BY
399  . ',' . self::ASSIGNMENT_FIELD_RESTART_DATE
400  . ',' . self::ASSIGNMENT_FIELD_RESTARTED_ASSIGNMENT_ID
401  . ',' . self::ASSIGNMENT_FIELD_MANUALLY_ASSIGNED
402  . ',' . self::PROGRESS_FIELD_PRG_ID
403  . ',' . self::PROGRESS_FIELD_POINTS
404  . ',' . self::PROGRESS_FIELD_POINTS_CUR
405  . ',' . self::PROGRESS_FIELD_STATUS
406  . ',' . self::PROGRESS_FIELD_COMPLETION_BY
407  . ',' . self::PROGRESS_FIELD_ASSIGNMENT_DATE
408  . ', pgs.' . self::PROGRESS_FIELD_LAST_CHANGE . ' AS p_' . self::PROGRESS_FIELD_LAST_CHANGE
409  . ', pgs.' . self::PROGRESS_FIELD_LAST_CHANGE_BY . ' AS p_' . self::PROGRESS_FIELD_LAST_CHANGE_BY
410  . ',' . self::PROGRESS_FIELD_COMPLETION_DATE
411  . ',' . self::PROGRESS_FIELD_DEADLINE
412  . ',' . self::PROGRESS_FIELD_VQ_DATE
413  . ',' . self::PROGRESS_FIELD_INVALIDATED
414  . ',' . self::PROGRESS_FIELD_MAIL_SENT_RISKYTOFAIL
415  . ',' . self::PROGRESS_FIELD_MAIL_SENT_WILLEXPIRE
416  . ',' . self::PROGRESS_FIELD_IS_INDIVIDUAL
417 
418  . ', ' . implode(', ', $user_fields_without_udf)
419 
420  . ' FROM ' . self::ASSIGNMENT_TABLE . ' ass '
421  . ' JOIN ' . self::PROGRESS_TABLE . ' pgs '
422  . ' ON ass.' . self::ASSIGNMENT_FIELD_ID . ' = pgs.' . self::PROGRESS_FIELD_ASSIGNMENT_ID
423 
424 
425  . ' JOIN usr_data memberdata ON ass.usr_id = memberdata.usr_id '
426 
427  . ' WHERE TRUE AND ';
428  $q = $q . implode(' AND ', $filter);
429  $q = $q . ' ORDER BY assignment_id, ass.usr_id';
430 
431  $res = $this->db->query($q);
432  return $res;
433  }
$res
Definition: ltiservices.php:66
$q
Definition: shib_logout.php:21
+ Here is the caller graph for this function:

◆ read()

ilPRGAssignmentDBRepository::read ( array  $filter)
protected

Definition at line 446 of file class.ilPRGAssignmentDBRepository.php.

References $res, assignmentByRow(), null, prebuildProgressesForAssingment(), and query().

Referenced by get(), getAboutToExpire(), getAllForNodeIsContained(), getAllForSpecificNode(), getExpiredAndNotInvalidated(), getForUser(), getForUserOnNode(), getPassedDeadline(), and getRiskyToFail().

446  : Generator
447  {
448  $res = $this->query($filter);
449 
450  $current_ass = -1;
451  $ass = null;
452 
453  while ($row = $this->db->fetchAssoc($res)) {
454  if ($row[self::ASSIGNMENT_FIELD_ID] !== $current_ass) {
455  $current_ass = $row[self::ASSIGNMENT_FIELD_ID];
456  if (!is_null($ass)) {
457  yield $ass;
458  }
459  $this->progresses = $this->prebuildProgressesForAssingment((int) $row[self::ASSIGNMENT_FIELD_ID]);
460  $ass = $this->assignmentByRow($row); //amend all progresses based on tree
461  }
462  }
463 
464  yield $ass;
465  }
$res
Definition: ltiservices.php:66
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ resetExpiryInfoSentFor()

ilPRGAssignmentDBRepository::resetExpiryInfoSentFor ( ilPRGAssignment  $ass)

Definition at line 757 of file class.ilPRGAssignmentDBRepository.php.

References ilPRGAssignment\getId(), ilPRGAssignment\getRootId(), and null.

757  : void
758  {
759  $where = [
760  self::PROGRESS_FIELD_ASSIGNMENT_ID => ['integer', $ass->getId()],
761  self::PROGRESS_FIELD_PRG_ID => ['integer', $ass->getRootId()]
762  ];
763 
764  $values = [
765  self::PROGRESS_FIELD_MAIL_SENT_WILLEXPIRE => ['null', null]
766  ];
767  $this->db->update(self::PROGRESS_TABLE, $values, $where);
768  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

◆ resetRiskyToFailSentFor()

ilPRGAssignmentDBRepository::resetRiskyToFailSentFor ( ilPRGAssignment  $ass)

Definition at line 786 of file class.ilPRGAssignmentDBRepository.php.

References ilPRGAssignment\getId(), ilPRGAssignment\getRootId(), and null.

786  : void
787  {
788  $where = [
789  self::PROGRESS_FIELD_ASSIGNMENT_ID => ['integer', $ass->getId()],
790  self::PROGRESS_FIELD_PRG_ID => ['integer', $ass->getRootId()]
791  ];
792 
793  $values = [
794  self::PROGRESS_FIELD_MAIL_SENT_RISKYTOFAIL => ['null', null]
795  ];
796  $this->db->update(self::PROGRESS_TABLE, $values, $where);
797  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

◆ store()

ilPRGAssignmentDBRepository::store ( ilPRGAssignment  $assignment)

Implements PRGAssignmentRepository.

Definition at line 118 of file class.ilPRGAssignmentDBRepository.php.

References ilPRGAssignment\DATE_TIME_FORMAT, ilPRGAssignment\getId(), ilPRGAssignment\getLastChange(), ilPRGAssignment\getLastChangeBy(), ilPRGAssignment\getProgresses(), ilPRGAssignment\getRestartDate(), ilPRGAssignment\getRestartedAssignmentId(), ilPRGAssignment\getRootId(), ilPRGAssignment\getUserId(), ilPRGAssignment\isManuallyAssigned(), null, storeProgressRow(), and updateAssignmentRowDB().

Referenced by ilObjStudyProgramme\removeMemberFromProgrammes().

118  : void
119  {
120  $row = [
121  self::ASSIGNMENT_FIELD_ID => $assignment->getId(),
122  self::ASSIGNMENT_FIELD_USR_ID => $assignment->getUserId(),
123  self::ASSIGNMENT_FIELD_ROOT_PRG_ID => $assignment->getRootId(),
124  self::ASSIGNMENT_FIELD_LAST_CHANGE_BY => $assignment->getLastChangeBy(),
125  self::ASSIGNMENT_FIELD_LAST_CHANGE => $assignment->getLastChange()->format(ilPRGAssignment::DATE_TIME_FORMAT),
126  self::ASSIGNMENT_FIELD_RESTART_DATE => $assignment->getRestartDate() ? $assignment->getRestartDate()->format(ilPRGAssignment::DATE_TIME_FORMAT) : null,
127  self::ASSIGNMENT_FIELD_RESTARTED_ASSIGNMENT_ID => $assignment->getRestartedAssignmentId(),
128  self::ASSIGNMENT_FIELD_MANUALLY_ASSIGNED => $assignment->isManuallyAssigned()
129  ];
130  $this->updateAssignmentRowDB($row);
131  foreach ($assignment->getProgresses() as $pgs) {
132  $this->storeProgressRow(
133  $assignment->getId(),
134  $assignment->getUserId(),
135  $pgs
136  );
137  }
138 
139  $this->events->raiseCollected();
140  }
getProgresses(array &$ret=[], ?ilPRGProgress $pgs=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
storeProgressRow(int $assignment_id, int $usr_id, ilPRGProgress $pgs)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ storeExpiryInfoSentFor()

ilPRGAssignmentDBRepository::storeExpiryInfoSentFor ( ilPRGAssignment  $ass)

Definition at line 741 of file class.ilPRGAssignmentDBRepository.php.

References ilPRGAssignment\getId(), and ilPRGAssignment\getRootId().

741  : void
742  {
743  $where = [
744  self::PROGRESS_FIELD_ASSIGNMENT_ID => ['integer', $ass->getId()],
745  self::PROGRESS_FIELD_PRG_ID => ['integer', $ass->getRootId()]
746  ];
747 
748  $values = [
749  self::PROGRESS_FIELD_MAIL_SENT_WILLEXPIRE => [
750  'timestamp',
751  date('Y-m-d H:i:s')
752  ]
753  ];
754  $this->db->update(self::PROGRESS_TABLE, $values, $where);
755  }
+ Here is the call graph for this function:

◆ storeProgressRow()

ilPRGAssignmentDBRepository::storeProgressRow ( int  $assignment_id,
int  $usr_id,
ilPRGProgress  $pgs 
)
protected

Definition at line 672 of file class.ilPRGAssignmentDBRepository.php.

References $q, ilPRGProgress\DATE_FORMAT, ilPRGProgress\DATE_TIME_FORMAT, ilPRGProgress\getAmountOfPoints(), ilPRGProgress\getAssignmentDate(), ilPRGProgress\getCompletionBy(), ilPRGProgress\getCompletionDate(), ilPRGProgress\getCurrentAmountOfPoints(), ilPRGProgress\getDeadline(), ilPRGProgress\getLastChange(), ilPRGProgress\getLastChangeBy(), ilPRGProgress\getNodeId(), ilPRGProgress\getStatus(), ilPRGProgress\getValidityOfQualification(), ilPRGProgress\hasIndividualModifications(), and ilPRGProgress\isInvalidated().

Referenced by store().

676  {
677  //TODO: move into type?
678  $lastchange = is_null($pgs->getLastChange()) ? 'NULL' : $this->db->quote($pgs->getLastChange()->format(ilPRGProgress::DATE_TIME_FORMAT), 'text');
679  $assign_date = is_null($pgs->getAssignmentDate()) ? 'NULL' : $this->db->quote($pgs->getAssignmentDate()->format(ilPRGProgress::DATE_TIME_FORMAT), 'text');
680  $completion_date = is_null($pgs->getCompletionDate()) ? 'NULL' : $this->db->quote($pgs->getCompletionDate()->format(ilPRGProgress::DATE_TIME_FORMAT), 'text');
681  $deadline = is_null($pgs->getDeadline()) ? 'NULL' : $this->db->quote($pgs->getDeadline()->format(ilPRGProgress::DATE_FORMAT), 'text');
682  $validity = is_null($pgs->getValidityOfQualification()) ? 'NULL' : $this->db->quote($pgs->getValidityOfQualification()->format(ilPRGProgress::DATE_FORMAT), 'text');
683  $invalidated = $pgs->isInvalidated() ? 1 : 0;
684  $individual = $pgs->hasIndividualModifications() ? 1 : 0;
685  $completion = $pgs->getCompletionBy() ?? 'NULL';
686 
687  $q = 'INSERT INTO ' . self::PROGRESS_TABLE
688  . '('
689  . self::PROGRESS_FIELD_ASSIGNMENT_ID . ','
690  . self::PROGRESS_FIELD_USR_ID . ','
691  . self::PROGRESS_FIELD_PRG_ID . ','
692 
693  . self::PROGRESS_FIELD_STATUS . ','
694  . self::PROGRESS_FIELD_POINTS . ','
695  . self::PROGRESS_FIELD_POINTS_CUR . ','
696  . self::PROGRESS_FIELD_COMPLETION_BY . ','
697  . self::PROGRESS_FIELD_LAST_CHANGE_BY . ','
698  . self::PROGRESS_FIELD_LAST_CHANGE . ','
699  . self::PROGRESS_FIELD_ASSIGNMENT_DATE . ','
700  . self::PROGRESS_FIELD_COMPLETION_DATE . ','
701  . self::PROGRESS_FIELD_DEADLINE . ','
702  . self::PROGRESS_FIELD_VQ_DATE . ','
703  . self::PROGRESS_FIELD_INVALIDATED . ','
704  . self::PROGRESS_FIELD_IS_INDIVIDUAL
705 
706  . PHP_EOL . ') VALUES (' . PHP_EOL
707  . $assignment_id
708  . ' ,' . $usr_id
709  . ' ,' . $pgs->getNodeId()
710 
711  . ' ,' . $pgs->getStatus()
712  . ' ,' . $pgs->getAmountOfPoints()
713  . ' ,' . $pgs->getCurrentAmountOfPoints()
714  . ' ,' . $completion
715  . ' ,' . $pgs->getLastChangeBy()
716  . ' ,' . $lastchange
717  . ' ,' . $assign_date
718  . ' ,' . $completion_date
719  . ' ,' . $deadline
720  . ' ,' . $validity
721  . ' ,' . $invalidated
722  . ' ,' . $individual
723  . ')' . PHP_EOL
724  . 'ON DUPLICATE KEY UPDATE' . PHP_EOL
725  . self::PROGRESS_FIELD_STATUS . '=' . $pgs->getStatus() . ','
726  . self::PROGRESS_FIELD_POINTS . '=' . $pgs->getAmountOfPoints() . ','
727  . self::PROGRESS_FIELD_POINTS_CUR . '=' . $pgs->getCurrentAmountOfPoints() . ','
728  . self::PROGRESS_FIELD_COMPLETION_BY . '=' . $completion . ','
729  . self::PROGRESS_FIELD_LAST_CHANGE_BY . '=' . $pgs->getLastChangeBy() . ','
730  . self::PROGRESS_FIELD_LAST_CHANGE . '=' . $lastchange . ','
731  . self::PROGRESS_FIELD_ASSIGNMENT_DATE . '=' . $assign_date . ','
732  . self::PROGRESS_FIELD_COMPLETION_DATE . '=' . $completion_date . ','
733  . self::PROGRESS_FIELD_DEADLINE . '=' . $deadline . ','
734  . self::PROGRESS_FIELD_VQ_DATE . '=' . $validity . ','
735  . self::PROGRESS_FIELD_INVALIDATED . '=' . $invalidated . ','
736  . self::PROGRESS_FIELD_IS_INDIVIDUAL . '=' . $individual
737  ;
738  $this->db->manipulate($q);
739  }
$q
Definition: shib_logout.php:21
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ storeRiskyToFailSentFor()

ilPRGAssignmentDBRepository::storeRiskyToFailSentFor ( ilPRGAssignment  $ass)

Definition at line 770 of file class.ilPRGAssignmentDBRepository.php.

References ilPRGAssignment\getId(), and ilPRGAssignment\getRootId().

770  : void
771  {
772  $where = [
773  self::PROGRESS_FIELD_ASSIGNMENT_ID => ['integer', $ass->getId()],
774  self::PROGRESS_FIELD_PRG_ID => ['integer', $ass->getRootId()]
775  ];
776 
777  $values = [
778  self::PROGRESS_FIELD_MAIL_SENT_RISKYTOFAIL => [
779  'timestamp',
780  date('Y-m-d H:i:s')
781  ]
782  ];
783  $this->db->update(self::PROGRESS_TABLE, $values, $where);
784  }
+ Here is the call graph for this function:

◆ updateAssignmentRowDB()

ilPRGAssignmentDBRepository::updateAssignmentRowDB ( array  $values)
protected

Definition at line 657 of file class.ilPRGAssignmentDBRepository.php.

References $q.

Referenced by store().

658  {
659  $q = 'UPDATE ' . self::ASSIGNMENT_TABLE
660  . ' SET'
661  . ' ' . self::ASSIGNMENT_FIELD_USR_ID . ' = ' . $this->db->quote($values[self::ASSIGNMENT_FIELD_USR_ID], 'integer')
662  . ' ,' . self::ASSIGNMENT_FIELD_ROOT_PRG_ID . ' = ' . $this->db->quote($values[self::ASSIGNMENT_FIELD_ROOT_PRG_ID], 'integer')
663  . ' ,' . self::ASSIGNMENT_FIELD_LAST_CHANGE . ' = ' . $this->db->quote($values[self::ASSIGNMENT_FIELD_LAST_CHANGE], 'text')
664  . ' ,' . self::ASSIGNMENT_FIELD_LAST_CHANGE_BY . ' = ' . $this->db->quote($values[self::ASSIGNMENT_FIELD_LAST_CHANGE_BY], 'integer')
665  . ' ,' . self::ASSIGNMENT_FIELD_RESTART_DATE . ' = ' . $this->db->quote($values[self::ASSIGNMENT_FIELD_RESTART_DATE], 'timestamp')
666  . ' ,' . self::ASSIGNMENT_FIELD_RESTARTED_ASSIGNMENT_ID . ' = ' . $this->db->quote($values[self::ASSIGNMENT_FIELD_RESTARTED_ASSIGNMENT_ID], 'integer')
667  . ' ,' . self::ASSIGNMENT_FIELD_MANUALLY_ASSIGNED . ' = ' . $this->db->quote($values[self::ASSIGNMENT_FIELD_MANUALLY_ASSIGNED], 'integer')
668  . ' WHERE ' . self::ASSIGNMENT_FIELD_ID . ' = ' . $this->db->quote($values[self::ASSIGNMENT_FIELD_ID], 'integer');
669  $this->db->manipulate($q);
670  }
$q
Definition: shib_logout.php:21
+ Here is the caller graph for this function:

Field Documentation

◆ $progresses

array ilPRGAssignmentDBRepository::$progresses = []
protected

<id => ilPRGProgress>

Definition at line 64 of file class.ilPRGAssignmentDBRepository.php.

◆ $user_data_fields

array ilPRGAssignmentDBRepository::$user_data_fields
protected

Definition at line 59 of file class.ilPRGAssignmentDBRepository.php.

◆ ASSIGNMENT_FIELD_ID

const ilPRGAssignmentDBRepository::ASSIGNMENT_FIELD_ID = 'id'

Definition at line 28 of file class.ilPRGAssignmentDBRepository.php.

◆ ASSIGNMENT_FIELD_LAST_CHANGE

const ilPRGAssignmentDBRepository::ASSIGNMENT_FIELD_LAST_CHANGE = 'last_change'

Definition at line 31 of file class.ilPRGAssignmentDBRepository.php.

◆ ASSIGNMENT_FIELD_LAST_CHANGE_BY

const ilPRGAssignmentDBRepository::ASSIGNMENT_FIELD_LAST_CHANGE_BY = 'last_change_by'

Definition at line 32 of file class.ilPRGAssignmentDBRepository.php.

◆ ASSIGNMENT_FIELD_MANUALLY_ASSIGNED

const ilPRGAssignmentDBRepository::ASSIGNMENT_FIELD_MANUALLY_ASSIGNED = 'assigned_manually'

Definition at line 36 of file class.ilPRGAssignmentDBRepository.php.

◆ ASSIGNMENT_FIELD_RESTART_DATE

const ilPRGAssignmentDBRepository::ASSIGNMENT_FIELD_RESTART_DATE = 'restart_date'

Definition at line 33 of file class.ilPRGAssignmentDBRepository.php.

◆ ASSIGNMENT_FIELD_RESTART_MAIL

const ilPRGAssignmentDBRepository::ASSIGNMENT_FIELD_RESTART_MAIL = 'restart_mail_send'

Definition at line 35 of file class.ilPRGAssignmentDBRepository.php.

◆ ASSIGNMENT_FIELD_RESTARTED_ASSIGNMENT_ID

const ilPRGAssignmentDBRepository::ASSIGNMENT_FIELD_RESTARTED_ASSIGNMENT_ID = 'restarted_assignment_id'

Definition at line 34 of file class.ilPRGAssignmentDBRepository.php.

◆ ASSIGNMENT_FIELD_ROOT_PRG_ID

const ilPRGAssignmentDBRepository::ASSIGNMENT_FIELD_ROOT_PRG_ID = 'root_prg_id'

Definition at line 30 of file class.ilPRGAssignmentDBRepository.php.

◆ ASSIGNMENT_FIELD_USR_ID

const ilPRGAssignmentDBRepository::ASSIGNMENT_FIELD_USR_ID = 'usr_id'

Definition at line 29 of file class.ilPRGAssignmentDBRepository.php.

◆ ASSIGNMENT_TABLE

const ilPRGAssignmentDBRepository::ASSIGNMENT_TABLE = 'prg_usr_assignments'

Definition at line 27 of file class.ilPRGAssignmentDBRepository.php.

◆ DATE_FORMAT_ENDOFDAY

const ilPRGAssignmentDBRepository::DATE_FORMAT_ENDOFDAY = 'Y-m-d 23:59:59'

Definition at line 57 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_ASSIGNMENT_DATE

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_ASSIGNMENT_DATE = 'assignment_date'

Definition at line 46 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_ASSIGNMENT_ID

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_ASSIGNMENT_ID = 'assignment_id'

Definition at line 39 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_COMPLETION_BY

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_COMPLETION_BY = 'completion_by'

Definition at line 45 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_COMPLETION_DATE

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_COMPLETION_DATE = 'completion_date'

Definition at line 49 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_DEADLINE

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_DEADLINE = 'deadline'

◆ PROGRESS_FIELD_INVALIDATED

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_INVALIDATED = 'invalidated'

◆ PROGRESS_FIELD_IS_INDIVIDUAL

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_IS_INDIVIDUAL = 'individual'

Definition at line 55 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_LAST_CHANGE

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_LAST_CHANGE = 'last_change'

Definition at line 47 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_LAST_CHANGE_BY

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_LAST_CHANGE_BY = 'last_change_by'

Definition at line 48 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_MAIL_SENT_RISKYTOFAIL

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_MAIL_SENT_RISKYTOFAIL = 'sent_mail_risky_to_fail'

Definition at line 53 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_MAIL_SENT_WILLEXPIRE

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_MAIL_SENT_WILLEXPIRE = 'sent_mail_expires'

Definition at line 54 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_POINTS

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_POINTS = 'points'

Definition at line 42 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_POINTS_CUR

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_POINTS_CUR = 'points_cur'

Definition at line 43 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_PRG_ID

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_PRG_ID = 'prg_id'

Definition at line 41 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_STATUS

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_STATUS = 'status'

◆ PROGRESS_FIELD_USR_ID

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_USR_ID = 'usr_id'

Definition at line 40 of file class.ilPRGAssignmentDBRepository.php.

◆ PROGRESS_FIELD_VQ_DATE

const ilPRGAssignmentDBRepository::PROGRESS_FIELD_VQ_DATE = 'vq_date'

◆ PROGRESS_TABLE

const ilPRGAssignmentDBRepository::PROGRESS_TABLE = 'prg_usr_progress'

Definition at line 38 of file class.ilPRGAssignmentDBRepository.php.


The documentation for this class was generated from the following file: