62 protected \ILIAS\Exercise\InternalDomainService
$domain;
71 protected int $id = 0;
118 $this->domain = $DIC->exercise()->internal()->domain();
119 $this->db = $DIC->database();
120 $this->
lng = $DIC->language();
121 $this->
user = $DIC->user();
122 $this->app_event_handler = $DIC[
"ilAppEventHandler"];
124 $this->
access = $DIC->access();
125 $this->domain = $DIC->exercise()->internal()->domain();
127 $this->
setType(self::TYPE_UPLOAD);
136 $this->string_transform = $DIC->refinery()
149 $ilDB = $DIC->database();
151 $set =
$ilDB->query(
"SELECT * FROM exc_assignment " .
152 " WHERE exc_id = " .
$ilDB->quote($a_exc_id,
"integer") .
153 " ORDER BY order_nr");
157 while ($rec =
$ilDB->fetchAssoc($set)) {
159 $rec[
"order_val"] = $order_val;
162 $ass->initFromDB($rec);
182 $db = $DIC->database();
185 $result_order_val = $db->
query(
" 187 FROM exc_ass_file_order 188 WHERE assignment_id = {$db->quote($a_ass_id, 'integer')} 189 AND filename = {$db->quote($a_file_data['entry'], 'text')} 194 while ($row = $db->
fetchAssoc($result_order_val)) {
195 $order_val = (
int) $row[
'order_nr'];
196 $order_id = (
int) $row[
'id'];
198 return array($order_val, $order_id);
203 return $this->ass_type->usesTeams();
206 public function setId(
int $a_val): void
218 $this->exc_id = $a_val;
228 $this->start_time = $a_val;
238 $this->deadline = $a_val;
252 $this->deadline_mode = $a_val;
262 $this->relative_deadline = $a_val;
272 $this->rel_deadline_last_subm = $a_val;
287 if ($this->ass_type->usesTeams()) {
293 $a_user_id = $team_id;
297 $set =
$ilDB->query(
"SELECT tstamp FROM exc_idl" .
298 " WHERE ass_id = " .
$ilDB->quote($this->getId(),
"integer") .
299 " AND member_id = " .
$ilDB->quote($a_user_id,
"integer") .
300 " AND is_team = " .
$ilDB->quote($is_team,
"integer"));
301 $row =
$ilDB->fetchAssoc($set);
304 return max(($row[
"tstamp"] ?? 0), $this->
getDeadline());
312 $set =
$ilDB->query(
"SELECT MAX(tstamp) FROM exc_idl" .
313 " WHERE ass_id = " .
$ilDB->quote($this->getId(),
"integer"));
314 $row =
$ilDB->fetchAssoc($set);
315 return $row[
"tstamp"] ?? 0;
321 $this->deadline2 = $a_val;
331 $this->instruction = $a_val;
343 $is_html = (strlen($inst) != strlen(strip_tags($inst)));
346 $this->string_transform->makeClickable()->transform($inst)
355 $this->title = $a_val;
365 $this->mandatory = $a_val;
375 $this->order_nr = $a_val;
391 $this->type = $a_value;
393 $this->ass_type = $this->types->getById($a_value);
395 if ($this->ass_type->usesTeams()) {
418 return $this->types->isValidId($a_value);
423 $this->peer = $a_value;
433 $this->peer_min = $a_value;
443 $this->peer_unlock = $a_value;
456 $this->peer_dl = $a_val;
471 $this->peer_valid = $a_value;
481 $this->peer_rating = $a_val;
491 $this->peer_text = $a_val;
501 $this->peer_file = $a_val;
511 $this->peer_personal = $a_val;
521 $a_value = (is_numeric($a_value) && (
int) $a_value > 0)
524 $this->peer_char = $a_value;
534 $this->crit_cat = $a_value;
542 public function getPeerReviewCriteriaCatalogueItems(): array
544 if ($this->crit_cat) {
549 if ($this->peer_rating) {
553 if ($this->peer_text) {
556 if ($this->peer_char) {
557 $crit->setMinChars($this->peer_char);
562 if ($this->peer_file) {
572 $this->feedback_file = $a_value;
585 $this->feedback_cron = $a_value;
596 $this->feedback_date = $a_value;
610 $this->feedback_date_custom = $a_value;
621 $this->team_tutor = $a_value;
632 $this->max_file = $a_value;
643 $this->portfolio_template = $a_val;
659 "SELECT * FROM exc_assignment " .
660 " WHERE id = " .
$ilDB->quote($this->getId(),
"integer")
662 $rec =
$ilDB->fetchAssoc($set);
665 if (is_array($rec)) {
677 $this->
setId((
int) $a_set[
"id"]);
682 $this->
setTitle((
string) $a_set[
"title"]);
686 $this->
setType((
int) $a_set[
"type"]);
726 $next_id =
$ilDB->nextId(
"exc_assignment");
727 $ilDB->insert(
"exc_assignment", array(
728 "id" => array(
"integer", $next_id),
730 "time_stamp" => array(
"integer", $this->
getDeadline()),
733 "title" => array(
"text", $this->
getTitle()),
734 "start_time" => array(
"integer", $this->
getStartTime()),
735 "order_nr" => array(
"integer", $this->
getOrderNr()),
737 "type" => array(
"integer", $this->
getType()),
753 "team_tutor" => array(
"integer", $this->
getTeamTutor()),
754 "max_file" => array(
"integer", $this->
getMaxFile()),
762 $this->
setId($next_id);
764 $exc->updateAllUsersStatus();
766 $this->domain->assignment()->instructionFiles($next_id)->createCollection();
768 self::createNewAssignmentRecords($next_id, $exc);
784 "time_stamp" => array(
"integer", $this->
getDeadline()),
787 "title" => array(
"text", $this->
getTitle()),
788 "start_time" => array(
"integer", $this->
getStartTime()),
789 "order_nr" => array(
"integer", $this->
getOrderNr()),
791 "type" => array(
"integer", $this->
getType()),
807 "team_tutor" => array(
"integer", $this->
getTeamTutor()),
808 "max_file" => array(
"integer", $this->
getMaxFile()),
817 "id" => array(
"integer", $this->
getId()),
821 $exc->updateAllUsersStatus();
829 public function delete(
831 bool $update_user_status = true
837 foreach ($exc_members->getMembers() as $mem) {
839 $submission->deleteAllFiles();
843 "DELETE FROM exc_usr_tutor " .
846 array($this->
getId())
852 $peer_review->resetPeerReviews();
856 "DELETE FROM exc_ass_file_order" .
857 " WHERE assignment_id = " .
$ilDB->quote($this->getId(),
'integer')
861 "DELETE FROM exc_mem_ass_status" .
862 " WHERE ass_id = " .
$ilDB->quote($this->getId(),
'integer')
866 "DELETE FROM exc_assignment WHERE " .
867 " id = " .
$ilDB->quote($this->getId(),
"integer")
870 if ($update_user_status) {
879 $reminder->deleteReminders($this->
getId());
882 $this->domain->team()->deleteTeamsOfAssignment($this->
getId());
885 $this->domain->assignment()->instructionFiles($this->
getId())
886 ->deleteCollection();
895 $ilDB = $DIC->database();
899 $set =
$ilDB->query(
"SELECT * FROM exc_assignment " .
900 " WHERE exc_id = " .
$ilDB->quote($a_exc_id,
"integer") .
901 " ORDER BY order_nr");
905 while ($rec =
$ilDB->fetchAssoc($set)) {
907 "id" => (
int) $rec[
"id"],
908 "exc_id" => (
int) $rec[
"exc_id"],
909 "deadline" => (
int) $rec[
"time_stamp"],
910 "deadline2" => (
int) $rec[
"deadline2"],
911 "instruction" => (
string) $rec[
"instruction"],
912 "title" => (
string) $rec[
"title"],
913 "start_time" => (
int) $rec[
"start_time"],
914 "order_val" => $order_val,
915 "mandatory" => (
bool) $rec[
"mandatory"],
916 "type" => (
int) $rec[
"type"],
917 "peer" => (
bool) $rec[
"peer"],
918 "peer_min" => (
int) $rec[
"peer_min"],
919 "peer_dl" => (
int) $rec[
"peer_dl"],
920 "peer_file" => (
bool) $rec[
"peer_file"],
921 "peer_prsl" => (
bool) $rec[
"peer_prsl"],
922 "fb_file" => (
string) $rec[
"fb_file"],
923 "fb_date" => (
int) $rec[
"fb_date"],
924 "fb_cron" => (
bool) $rec[
"fb_cron"],
925 "deadline_mode" => (
int) $rec[
"deadline_mode"],
926 "relative_deadline" => (
int) $rec[
"relative_deadline"],
927 "rel_deadline_last_subm" => (
int) $rec[
"rel_deadline_last_subm"]
944 array $a_crit_cat_map
948 $ass_domain = $DIC->exercise()->internal()->domain()->assignment();
949 $ass_data = self::getInstancesByExercise($a_old_exc_id);
950 foreach ($ass_data as
$d) {
953 $new_ass->setExerciseId($a_new_exc_id);
954 $new_ass->setTitle($d->getTitle());
955 $new_ass->setDeadline($d->getDeadline());
956 $new_ass->setExtendedDeadline($d->getExtendedDeadline());
957 $new_ass->setInstruction($d->getInstruction());
958 $new_ass->setMandatory($d->getMandatory());
959 $new_ass->setOrderNr($d->getOrderNr());
960 $new_ass->setStartTime($d->getStartTime());
961 $new_ass->setType($d->getType());
962 $new_ass->setPeerReview($d->getPeerReview());
963 $new_ass->setPeerReviewMin($d->getPeerReviewMin());
964 $new_ass->setPeerReviewDeadline($d->getPeerReviewDeadline());
965 $new_ass->setPeerReviewFileUpload($d->hasPeerReviewFileUpload());
966 $new_ass->setPeerReviewPersonalized($d->hasPeerReviewPersonalized());
967 $new_ass->setPeerReviewValid($d->getPeerReviewValid());
968 $new_ass->setPeerReviewChars($d->getPeerReviewChars());
969 $new_ass->setPeerReviewText($d->hasPeerReviewText());
970 $new_ass->setPeerReviewRating($d->hasPeerReviewRating());
971 $new_ass->setPeerReviewCriteriaCatalogue($d->getPeerReviewCriteriaCatalogue());
972 $new_ass->setPeerReviewSimpleUnlock($d->getPeerReviewSimpleUnlock());
973 $new_ass->setFeedbackFile($d->getFeedbackFile());
974 $new_ass->setFeedbackDate($d->getFeedbackDate());
975 $new_ass->setFeedbackDateCustom($d->getFeedbackDateCustom());
976 $new_ass->setFeedbackCron($d->hasFeedbackCron());
977 $new_ass->setTeamTutor($d->getTeamTutor());
978 $new_ass->setMaxFile($d->getMaxFile());
979 $new_ass->setMinCharLimit($d->getMinCharLimit());
980 $new_ass->setMaxCharLimit($d->getMaxCharLimit());
981 $new_ass->setPortfolioTemplateId($d->getPortfolioTemplateId());
982 $new_ass->setDeadlineMode($d->getDeadlineMode());
983 $new_ass->setRelativeDeadline($d->getRelativeDeadline());
984 $new_ass->setRelDeadlineLastSubmission($d->getRelDeadlineLastSubmission());
987 if ($d->getPeerReviewCriteriaCatalogue() &&
988 array_key_exists($d->getPeerReviewCriteriaCatalogue(), $a_crit_cat_map)) {
989 $new_ass->setPeerReviewCriteriaCatalogue($a_crit_cat_map[$d->getPeerReviewCriteriaCatalogue()]);
995 $ass_domain->instructionFiles($d->getId())->cloneTo($new_ass->getId());
998 $ass_domain->sampleSolution($d->getId())->cloneTo($new_ass->getId());
1005 if ($rmd_sub->getReminderStatus()) {
1008 $new_rmd_sub->setReminderStart($rmd_sub->getReminderStart());
1009 $new_rmd_sub->setReminderEnd($rmd_sub->getReminderEnd());
1010 $new_rmd_sub->setReminderFrequency($rmd_sub->getReminderFrequency());
1011 $new_rmd_sub->setReminderMailTemplate($rmd_sub->getReminderMailTemplate());
1012 $new_rmd_sub->save();
1018 $ass_type = $d->getAssignmentType();
1025 return $this->domain->assignment()->instructionFiles($this->
getId())->getFiles();
1034 $set =
$ilDB->query(
1035 "SELECT filename, order_nr, id FROM exc_ass_file_order " .
1036 " WHERE assignment_id = " .
$ilDB->quote($this->getId(),
"integer")
1040 while ($rec =
$ilDB->fetchAssoc($set)) {
1041 $data[$rec[
'filename']] = $rec;
1054 $ilDB = $DIC->database();
1056 $set =
$ilDB->query(
1057 "SELECT MAX(order_nr) mnr FROM exc_assignment " .
1058 " WHERE exc_id = " .
$ilDB->quote($a_exc_id,
"integer")
1060 if ($rec =
$ilDB->fetchAssoc($set)) {
1061 return (
int) $rec[
"mnr"];
1070 $ilDB = $DIC->database();
1072 $query =
"SELECT id FROM exc_assignment " .
1073 "WHERE start_time <= " .
$ilDB->quote(time(),
'integer') .
' ' .
1074 "AND time_stamp >= " .
$ilDB->quote(time(),
'integer') .
' ' .
1075 "AND id = " .
$ilDB->quote($a_ass_id,
'integer');
1078 return (
bool)
$res->numRows();
1085 $ilDB = $DIC->database();
1086 $query =
"SELECT exc_id FROM exc_assignment " .
1087 "WHERE id = " .
$ilDB->quote($a_ass_id,
'integer');
1090 return (
int) (
$res[
"exc_id"] ?? 0);
1093 private static function lookup(
int $a_id,
string $a_field): string
1097 $ilDB = $DIC->database();
1099 $set =
$ilDB->query(
1100 "SELECT " . $a_field .
" FROM exc_assignment " .
1101 " WHERE id = " .
$ilDB->quote($a_id,
"integer")
1104 $rec =
$ilDB->fetchAssoc($set);
1106 return $rec[$a_field] ??
"";
1111 return self::lookup($a_id,
"title");
1116 return (
int) self::lookup($a_id,
"type");
1124 $ilDB = $DIC->database();
1128 foreach ($a_order as $k => $v) {
1131 "UPDATE exc_assignment SET " .
1132 " order_nr = " .
$ilDB->quote($nr,
"integer") .
1133 " WHERE id = " .
$ilDB->quote((
int) $k,
"integer") .
1134 " AND exc_id = " .
$ilDB->quote($a_ex_id,
"integer")
1144 $ilDB = $DIC->database();
1146 $set =
$ilDB->query(
1147 "SELECT id FROM exc_assignment " .
1148 " WHERE exc_id = " .
$ilDB->quote($a_ex_id,
"integer") .
1149 " ORDER BY time_stamp" 1152 while ($rec =
$ilDB->fetchAssoc($set)) {
1154 "UPDATE exc_assignment SET " .
1155 " order_nr = " .
$ilDB->quote($nr,
"integer") .
1156 " WHERE id = " .
$ilDB->quote($rec[
"id"],
"integer")
1167 $ilDB = $DIC->database();
1169 $set =
$ilDB->query(
1170 "SELECT count(*) cntm FROM exc_assignment " .
1171 " WHERE exc_id = " .
$ilDB->quote($a_ex_id,
"integer") .
1172 " AND mandatory = " .
$ilDB->quote(1,
"integer")
1174 $rec =
$ilDB->fetchAssoc($set);
1175 return (
int) $rec[
"cntm"];
1183 $ilDB = $DIC->database();
1185 $set =
$ilDB->query(
1186 "SELECT count(*) cntm FROM exc_assignment " .
1187 " WHERE exc_id = " .
$ilDB->quote($a_ex_id,
"integer")
1189 $rec =
$ilDB->fetchAssoc($set);
1190 return $rec[
"cntm"];
1198 $ilDB = $DIC->database();
1200 $set =
$ilDB->query(
1201 "SELECT * FROM exc_assignment " .
1202 " WHERE exc_id = " .
$ilDB->quote($a_ex_id,
"integer") .
1203 " AND id = " .
$ilDB->quote($a_ass_id,
"integer")
1205 if (
$ilDB->fetchAssoc($set)) {
1218 $set =
$ilDB->query(
"SELECT ud.usr_id, ud.lastname, ud.firstname, ud.login" .
1219 " FROM exc_members excm" .
1220 " JOIN usr_data ud ON (ud.usr_id = excm.usr_id)" .
1221 " WHERE excm.obj_id = " .
$ilDB->quote($this->getExerciseId(),
"integer"));
1222 while ($rec =
$ilDB->fetchAssoc($set)) {
1223 $mem[$rec[
"usr_id"]] =
1225 "name" => $rec[
"lastname"] .
", " . $rec[
"firstname"],
1226 "login" => $rec[
"login"],
1227 "usr_id" => $rec[
"usr_id"],
1228 "lastname" => $rec[
"lastname"],
1229 "firstname" => $rec[
"firstname"]
1236 if (!$this->ass_type->usesTeams()) {
1243 "name" => $name[
"lastname"] .
", " . $name[
"firstname"],
1244 "login" => $name[
"login"],
1245 "usr_id" => $user_id,
1246 "lastname" => $name[
"lastname"],
1247 "firstname" => $name[
"firstname"]
1254 $q =
"SELECT * FROM exc_mem_ass_status " .
1255 "WHERE ass_id = " .
$ilDB->quote($this->
getId(),
"integer");
1257 while ($rec =
$ilDB->fetchAssoc($set)) {
1258 if (isset($mem[$rec[
"usr_id"]])) {
1261 $mem[$rec[
"usr_id"]][
"sent_time"] = $rec[
"sent_time"];
1262 $mem[$rec[
"usr_id"]][
"submission"] = $sub->getLastSubmission();
1263 $mem[$rec[
"usr_id"]][
"status_time"] = $rec[
"status_time"];
1264 $mem[$rec[
"usr_id"]][
"feedback_time"] = $rec[
"feedback_time"];
1265 $mem[$rec[
"usr_id"]][
"notice"] = $rec[
"notice"];
1266 $mem[$rec[
"usr_id"]][
"status"] = $rec[
"status"];
1267 $mem[$rec[
"usr_id"]][
"mark"] = $rec[
"mark"];
1268 $mem[$rec[
"usr_id"]][
"comment"] = $rec[
"u_comment"];
1280 string $a_grade =
"" 1283 $ilDB = $DIC->database();
1286 if (in_array($a_grade, array(
"notgraded",
"passed",
"failed"))) {
1287 $and_grade =
" AND status = " .
$ilDB->quote($a_grade,
"text");
1290 $q =
"SELECT * FROM exc_mem_ass_status " .
1291 "WHERE ass_id = " .
$ilDB->quote($this->
getId(),
"integer") .
1292 " AND usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
1298 while ($rec =
$ilDB->fetchAssoc($set)) {
1301 $data[
"sent_time"] = $rec[
"sent_time"];
1302 $data[
"submission"] = $sub->getLastSubmission();
1303 $data[
"status_time"] = $rec[
"status_time"];
1304 $data[
"feedback_time"] = $rec[
"feedback_time"];
1305 $data[
"notice"] = $rec[
"notice"];
1306 $data[
"status"] = $rec[
"status"];
1307 $data[
"mark"] = $rec[
"mark"];
1308 $data[
"comment"] = $rec[
"u_comment"];
1321 $ilDB = $DIC->database();
1322 $ass_domain = $DIC->exercise()->internal()->domain()->assignment();
1324 $ass_data = self::getAssignmentDataOfExercise($a_exc_id);
1325 foreach ($ass_data as $ass) {
1327 $ilDB->replace(
"exc_mem_ass_status", array(
1328 "ass_id" => array(
"integer", $ass[
"id"]),
1329 "usr_id" => array(
"integer", $a_user_id)
1331 "status" => array(
"text",
"notgraded")
1333 if (!$ass_domain->tutorFeedbackFile((
int) $ass[
"id"])->hasCollection($a_user_id)) {
1334 $ass_domain->tutorFeedbackFile((
int) $ass[
"id"])->createCollection($a_user_id);
1346 $ilDB = $DIC->database();
1347 $ass_domain = $DIC->exercise()->internal()->domain()->assignment();
1350 $mems = $exmem->getMembers();
1352 foreach ($mems as $mem) {
1353 $ilDB->replace(
"exc_mem_ass_status", array(
1354 "ass_id" => array(
"integer", $a_ass_id),
1355 "usr_id" => array(
"integer", $mem)
1357 "status" => array(
"text",
"notgraded")
1359 if (!$ass_domain->tutorFeedbackFile($a_ass_id)->hasCollection($mem)) {
1360 $ass_domain->tutorFeedbackFile($a_ass_id)->createCollection($mem);
1376 $dl_id = $this->
getId() .
"0";
1377 $fbdl_id = $this->
getId() .
"1";
1379 $context_ids = array($dl_id, $fbdl_id);
1382 if ($a_event !=
"delete") {
1387 $app->setSubtitle(
"cal_exc_deadline");
1389 $app->setFullday(
false);
1401 $app->setSubtitle(
"cal_exc_peer_review_deadline");
1403 $app->setFullday(
false);
1410 $ilAppEventHandler->raise(
1411 'components/ILIAS/Exercise',
1412 $a_event .
'Assignment',
1415 'obj_id' => $exc->
getId(),
1416 'context_ids' => $context_ids,
1417 'appointments' => $apps)
1426 $log->
debug(
"Get feedback notifications.");
1428 $ilDB = $DIC->database();
1432 $set =
$ilDB->query(
"SELECT id,fb_file,time_stamp,deadline2,fb_date FROM exc_assignment" .
1433 " WHERE fb_cron = " .
$ilDB->quote(1,
"integer") .
1434 " AND (fb_date = " .
$ilDB->quote(self::FEEDBACK_DATE_DEADLINE,
"integer") .
1435 " AND time_stamp IS NOT NULL" .
1436 " AND time_stamp > " .
$ilDB->quote(0,
"integer") .
1437 " AND time_stamp < " .
$ilDB->quote(time(),
"integer") .
1438 " AND fb_cron_done = " .
$ilDB->quote(0,
"integer") .
1439 ") OR (fb_date = " .
$ilDB->quote(self::FEEDBACK_DATE_CUSTOM,
"integer") .
1440 " AND fb_date_custom IS NOT NULL" .
1441 " AND fb_date_custom > " .
$ilDB->quote(0,
"integer") .
1442 " AND fb_date_custom < " .
$ilDB->quote(time(),
"integer") .
1443 " AND fb_cron_done = " .
$ilDB->quote(0,
"integer") .
")");
1447 while ($row =
$ilDB->fetchAssoc($set)) {
1448 $log->
debug(
"check assignment " . $row[
'id'] .
", fb_file " . $row[
"fb_file"]);
1449 if ($row[
'fb_date'] == self::FEEDBACK_DATE_DEADLINE) {
1450 $max = max($row[
'time_stamp'], $row[
'deadline2']);
1451 if (trim($row[
"fb_file"]) && $max <= time()) {
1452 $log->
debug(
"...adding(1)");
1453 $res[] = $row[
"id"];
1455 } elseif ($row[
'fb_date'] == self::FEEDBACK_DATE_CUSTOM) {
1456 if (trim($row[
"fb_file"] ??
"") && ($row[
'fb_date_custom'] ?? 0) <= time()) {
1457 $log->
debug(
"...adding(2)");
1458 $res[] = $row[
"id"];
1471 ?
int $a_user_id =
null 1475 $ilDB = $DIC->database();
1478 $ass =
new self($a_ass_id);
1481 if (!$ass->hasFeedbackCron() || !$ass->getFeedbackFile()) {
1482 $log->
debug(
"return(1)");
1488 $set =
$ilDB->query(
"SELECT fb_cron_done" .
1489 " FROM exc_assignment" .
1490 " WHERE id = " .
$ilDB->quote($a_ass_id,
"integer"));
1491 $row =
$ilDB->fetchAssoc($set);
1492 if ($row[
"fb_cron_done"]) {
1493 $log->
debug(
"return(2)");
1499 $ntf->setLangModules(array(
"exc"));
1500 $ntf->setObjId($ass->getExerciseId());
1501 $ntf->setSubjectLangId(
"exc_feedback_notification_subject");
1502 $ntf->setIntroductionLangId(
"exc_feedback_notification_body");
1503 $ntf->addAdditionalInfo(
"exc_assignment", $ass->getTitle());
1504 $ntf->setGotoLangId(
"exc_feedback_notification_link");
1505 $ntf->setReasonLangId(
"exc_feedback_notification_reason");
1511 $ilDB->manipulate(
"UPDATE exc_assignment" .
1512 " SET fb_cron_done = " .
$ilDB->quote(1,
"integer") .
1513 " WHERE id = " .
$ilDB->quote($a_ass_id,
"integer"));
1515 $log->
debug(
"send to user: " . $a_user_id);
1516 $ntf->sendMailAndReturnRecipients(array($a_user_id));
1534 $deadline = max($this->deadline, $this->deadline2, $idl);
1535 return ($deadline - time() <= 0);
1543 $idl = $a_include_personal
1548 $deadline = max($this->deadline, $this->deadline2, $idl);
1552 if ($idl && $deadline == $idl) {
1553 return ($deadline - time() <= 0);
1557 return ($deadline > 0 &&
1571 return ($date_custom - time() <= 0);
1583 return (time() - $this->start_time <= 0);
1596 $rcid = $this->domain->assignment()->sampleSolution($ass_id)->importFromLegacyUpload($a_file);
1598 return ($rcid !==
"");
1607 $a_user_id = $ilUser->
getId();
1609 if (!array_key_exists($a_user_id, $this->member_status)) {
1612 return $this->member_status[$a_user_id];
1624 if (!is_numeric($id)) {
1625 $id = substr($id, 1);
1640 $set =
$ilDB->query(
"SELECT * FROM exc_idl" .
1641 " WHERE ass_id = " .
$ilDB->quote($this->getId(),
"integer"));
1642 while ($row =
$ilDB->fetchAssoc($set)) {
1643 if ($row[
"is_team"]) {
1644 $row[
"member_id"] =
"t" . $row[
"member_id"];
1647 $res[$row[
"member_id"]] = $row[
"tstamp"];
1659 $set =
$ilDB->query(
"SELECT * FROM exc_idl" .
1660 " WHERE ass_id = " .
$ilDB->quote($this->getId(),
"integer") .
1661 " AND requested = " .
$ilDB->quote(1,
"integer"));
1662 while ($row =
$ilDB->fetchAssoc($set)) {
1663 if ($row[
"is_team"]) {
1664 $row[
"member_id"] =
"t" . $row[
"member_id"];
1667 $res[$row[
"member_id"]] = $row[
"requested"];
1680 if (!$this->ass_type->usesTeams() &&
1684 if ($peer_review->hasPeerReviewGroups()) {
1698 $db = $DIC->database();
1700 asort($a_order, SORT_NUMERIC);
1703 foreach (array_keys($a_order) as $k) {
1706 "UPDATE exc_ass_file_order SET " .
1707 " order_nr = " . $db->
quote($nr,
"integer") .
1708 " WHERE id = " . $db->
quote((
int) $k,
"integer") .
1709 " AND assignment_id = " . $db->
quote($a_ass_id,
"integer")
1721 $db = $DIC->database();
1722 $id = $db->
nextId(
"exc_ass_file_order");
1724 "exc_ass_file_order",
1726 "id" => [
"integer", $id],
1727 "order_nr" => [
"integer", $a_order_nr],
1728 "assignment_id" => [
"integer", $a_ass_id],
1729 "filename" => [
"text", $a_filename]
1742 $db = $DIC->database();
1748 if (self::instructionFileExistsInDb(
$filename, $a_ass_id) == 0) {
1749 if ($a_order_nr == 0) {
1750 $order_val = self::instructionFileOrderGetMax($a_ass_id);
1751 $order = $order_val + 10;
1753 $order = $a_order_nr;
1756 $id = $db->nextID(
'exc_ass_file_order');
1757 $db->
manipulate(
"INSERT INTO exc_ass_file_order " .
1758 "(id, assignment_id, filename, order_nr) VALUES (" .
1759 $db->
quote($id,
"integer") .
"," .
1760 $db->
quote($a_ass_id,
"integer") .
"," .
1762 $db->
quote($order,
"integer") .
1777 $db = $DIC->database();
1780 foreach ($a_file as $v) {
1782 "DELETE FROM exc_ass_file_order " .
1783 "WHERE filename = " . $db->
quote($v,
'text') .
1784 " AND assignment_id = " . $db->
quote($a_ass_id,
'integer')
1796 $db = $DIC->database();
1800 "DELETE FROM exc_ass_file_order" .
1801 " WHERE assignment_id = " . $db->
quote($a_ass_id,
'integer') .
1802 " AND filename = " . $db->
quote($a_new_name,
'text')
1806 "UPDATE exc_ass_file_order SET" .
1807 " filename = " . $db->
quote($a_new_name,
'text') .
1808 " WHERE assignment_id = " . $db->
quote($a_ass_id,
'integer') .
1809 " AND filename = " . $db->
quote($a_old_name,
'text')
1820 $db = $DIC->database();
1823 $result = $db->
query(
1824 "SELECT id FROM exc_ass_file_order" .
1825 " WHERE assignment_id = " . $db->
quote($a_ass_id,
'integer') .
1826 " AND filename = " . $db->
quote($a_filename,
'text')
1843 $set = $db->
query(
"SELECT * FROM exc_ass_file_order " .
1844 " WHERE assignment_id = " . $db->
quote($this->getId(),
"integer") .
1845 " ORDER BY order_nr");
1847 $numbered_files = array();
1850 if (in_array($rec[
"filename"], $files)) {
1852 "UPDATE exc_ass_file_order SET " .
1853 " order_nr = " . $db->
quote($order_nr,
"integer") .
1854 " WHERE assignment_id = " . $db->
quote($this->
getId(),
"integer") .
1855 " AND id = " . $db->
quote($rec[
"id"],
"integer")
1858 $numbered_files[] = $rec[
"filename"];
1861 "DELETE FROM exc_ass_file_order " .
1862 " WHERE assignment_id = " . $db->
quote($this->getId(),
"integer") .
1863 " AND id = " . $db->
quote($rec[
"id"],
"integer")
1867 foreach ($files as
$f) {
1868 if (!in_array($f, $numbered_files)) {
1869 self::instructionFileInsertOrder($f, $this->
getId());
1875 array $a_entries = array()
1880 foreach ($a_entries as $k =>
$e) {
1881 $a_entries[$k][
"order_val"] = $order[
$e[
"file"]][
"order_nr"] ?? 0;
1882 $a_entries[$k][
"order_id"] = $order[$e[
"file"]][
"id"] ??
"";
1892 $db = $DIC->database();
1896 "SELECT max(order_nr) as max_order FROM exc_ass_file_order WHERE assignment_id = %s",
1898 array($db->
quote($a_ass_id,
'integer'))
1903 $order_val = (
int) $row[
'max_order'];
1912 $this->min_char_limit = $a_val;
1923 $this->max_char_limit = $a_val;
1941 $calculated_deadlines = array(
1948 $type = $ts[
"is_team"]
1952 $calculated_deadlines[
$type][$ts[
"member_id"]] = array(
1953 "calculated_deadline" => $ts[
"starting_ts"] + ($this->
getRelativeDeadline() * 24 * 60 * 60)
1957 return $calculated_deadlines;
setStartTime(?int $a_val)
getLastPersonalDeadline()
static cloneAssignmentsOfExercise(int $a_old_exc_id, int $a_new_exc_id, array $a_crit_cat_map)
Clone assignments of exercise.
setRelativeDeadline(int $a_val)
get(int $a_format, string $a_format_str='', string $a_tz='')
get formatted date
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS Refinery String Group $string_transform
const TEAMS_FORMED_BY_RANDOM
getInstructionFilesOrder()
ilAppEventHandler $app_event_handler
static instructionFileOrderGetMax(int $a_ass_id)
const FEEDBACK_DATE_SUBMISSION
getType()
Get type this will most probably become an non public function in the future (or become obsolete) ...
static deleteForAssignment(int $ass_id)
numRows(ilDBStatement $statement)
getInstructionPresentation()
insert(string $table_name, array $values)
static getLogger(string $a_component_id)
Get component logger.
static createNewUserRecords(int $a_user_id, int $a_exc_id)
canParticipantReceiveFeedback(int $part_id)
setMinCharLimit(int $a_val)
setFeedbackFile(?string $a_value)
isValidType(int $a_value)
setPeerReviewValid(int $a_value)
Set peer review validation.
fetchAssoc(ilDBStatement $statement)
setType(int $a_value)
Set type this will most probably become an non public function in the future (or become obsolete) ...
setFeedbackDateCustom(int $a_value)
Set (global) feedback file availability using a custom date.
static getPendingFeedbackNotifications()
static getInstancesByParentId(int $a_parent_id)
handleGlobalFeedbackFileUpload(int $ass_id, array $a_file)
static count(int $a_ex_id)
ilExAssignmentTypes $types
getExerciseMemberAssignmentData(int $a_user_id, string $a_grade="")
Get submission data for an specific user,exercise and assignment.
static createNewAssignmentRecords(int $a_ass_id, ilObjExercise $a_exc)
initFromDB(array $a_set)
Import DB record.
setPeerReviewMin(int $a_value)
getMemberStatus(?int $a_user_id=null)
static countMandatory(int $a_ex_id)
setPeerReviewFileUpload(bool $a_val)
afterDeadlineStrict(bool $a_include_personal=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static lookupTitle(int $a_id)
static saveAssOrderOfExercise(int $a_ex_id, array $a_order)
static lookupType(int $a_id)
static _lookupName(int $a_user_id)
lookup user name
setDeadlineMode(int $a_val)
Set deadline mode.
setMaxCharLimit(int $a_val)
int $feedback_date_custom
Apointment templates are used for automatic generated apointments.
quote($value, string $type)
setFeedbackCron(bool $a_value)
Toggle (global) feedback file cron.
static orderAssByDeadline(int $a_ex_id)
static getInstanceByType(string $a_type)
const TYPE_UPLOAD
direct checks against const should be avoided, use type objects instead
const PEER_REVIEW_VALID_ALL
setLimit(int $limit, int $offset=0)
const TEAMS_FORMED_BY_TUTOR
setInstruction(string $a_val)
setExerciseId(int $a_val)
const PEER_REVIEW_VALID_ONE
static getSafeFilename(string $a_initial_filename)
static lookupMaxOrderNrForEx(int $a_exc_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static sendFeedbackNotifications(int $a_ass_id, ?int $a_user_id=null)
setTeamTutor(bool $a_value)
updateAllUsersStatus()
Update status of all users.
static getAssignmentDataOfExercise(int $a_exc_id)
cloneSpecificProperties(ilExAssignment $source, ilExAssignment $target)
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
setPeerReviewRating(bool $a_val)
setExtendedDeadline(?int $a_val)
const DEADLINE_ABSOLUTE_INDIVIDUAL
static instructionFileGetFileOrderData(array $a_file_data, int $a_ass_id)
hasPeerReviewPersonalized()
static renameInstructionFile(string $a_old_name, string $a_new_name, int $a_ass_id)
int $rel_deadline_last_subm
getCalculatedDeadlines()
Get calculated deadlines for user/team members.
nextId(string $table_name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static raiseContentChanged(int $obj_id)
static instructionFileExistsInDb(string $a_filename, int $a_ass_id)
getPersonalDeadline(int $a_user_id)
setMandatory(bool $a_val)
setFeedbackDate(int $a_value)
query(string $query)
Run a (read-only) Query on the database.
static getTeamId(int $a_assignment_id, int $a_user_id, bool $a_create_on_demand=false)
setPortfolioTemplateId(int $a_val)
setPeerReviewDeadline(int $a_val)
setRelDeadlineLastSubmission(int $a_val)
static instructionFileDeleteOrder(int $a_ass_id, array $a_file)
static instructionFileInsertOrder(string $a_filename, int $a_ass_id, int $a_order_nr=0)
queryF(string $query, array $types, array $values)
setIndividualDeadline(string $id, ilDateTime $date)
setPeerReviewPersonalized(bool $a_val)
static insertFileOrderNr(int $a_ass_id, string $a_filename, int $a_order_nr)
static getInstancesByExercise(int $a_exc_id)
static saveInstructionFilesOrderOfAssignment(int $a_ass_id, array $a_order)
const FEEDBACK_DATE_DEADLINE
getRelDeadlineLastSubmission()
const TEAMS_FORMED_BY_PARTICIPANTS
getPeerReviewSimpleUnlock()
setPeerReviewSimpleUnlock(int $a_value)
handleCalendarEntries(string $a_event, ilObjExercise $exc)
Handle calendar entries for deadline(s)
setPeerReviewChars(?int $a_value)
setPeerReviewText(bool $a_val)
const PEER_REVIEW_VALID_NONE
Exercise submission //TODO: This class has many static methods related to delivered "files"...
hasPeerReviewFileUpload()
const FEEDBACK_DATE_CUSTOM
static _getMembers(int $a_obj_id)
static getStartingTimestamps(int $a_ass_id)
Get starting timestamp data for an assignment.
const TEAMS_FORMED_BY_ASSIGNMENT
setMaxFile(?int $a_value)
debug(string $message, array $context=[])
fileAddOrder(array $a_entries=array())
manipulate(string $query)
Run a (write) Query on the database.
static isInExercise(int $a_ass_id, int $a_ex_id)
ilExAssignmentTypeInterface $ass_type
setPeerReview(bool $a_value)
getPeerReviewCriteriaCatalogue()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static lookupAssignmentOnline(int $a_ass_id)
setReminderStatus(?bool $a_status)
Set reminder for users without submission.
static lookup(int $a_id, string $a_field)
setPeerReviewCriteriaCatalogue(?int $a_value)
static lookupExerciseId(int $a_ass_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct($a_id=0)
Constructor.
ILIAS Exercise InternalDomainService $domain
static getInstance(int $a_ass_id, int $a_participant_id, bool $a_is_team=false)
fixInstructionFileOrdering()