63 protected int $id = 0;
110 $this->db = $DIC->database();
111 $this->
lng = $DIC->language();
112 $this->
user = $DIC->user();
113 $this->app_event_handler = $DIC[
"ilAppEventHandler"];
115 $this->
access = $DIC->access();
117 $this->
setType(self::TYPE_UPLOAD);
126 $this->string_transform = $DIC->refinery()
139 $ilDB = $DIC->database();
141 $set =
$ilDB->query(
"SELECT * FROM exc_assignment " .
142 " WHERE exc_id = " .
$ilDB->quote($a_exc_id,
"integer") .
143 " ORDER BY order_nr");
147 while ($rec =
$ilDB->fetchAssoc($set)) {
149 $rec[
"order_val"] = $order_val;
152 $ass->initFromDB($rec);
172 $db = $DIC->database();
175 $result_order_val = $db->
query(
" 177 FROM exc_ass_file_order 178 WHERE assignment_id = {$db->quote($a_ass_id, 'integer')} 179 AND filename = {$db->quote($a_file_data['entry'], 'text')} 184 while ($row = $db->
fetchAssoc($result_order_val)) {
185 $order_val = (
int) $row[
'order_nr'];
186 $order_id = (
int) $row[
'id'];
188 return array($order_val, $order_id);
193 return $this->ass_type->usesTeams();
196 public function setId(
int $a_val): void
208 $this->exc_id = $a_val;
218 $this->start_time = $a_val;
228 $this->deadline = $a_val;
242 $this->deadline_mode = $a_val;
252 $this->relative_deadline = $a_val;
262 $this->rel_deadline_last_subm = $a_val;
277 if ($this->ass_type->usesTeams()) {
283 $a_user_id = $team_id;
287 $set =
$ilDB->query(
"SELECT tstamp FROM exc_idl" .
288 " WHERE ass_id = " .
$ilDB->quote($this->getId(),
"integer") .
289 " AND member_id = " .
$ilDB->quote($a_user_id,
"integer") .
290 " AND is_team = " .
$ilDB->quote($is_team,
"integer"));
291 $row =
$ilDB->fetchAssoc($set);
294 return max(($row[
"tstamp"] ?? 0), $this->
getDeadline());
302 $set =
$ilDB->query(
"SELECT MAX(tstamp) FROM exc_idl" .
303 " WHERE ass_id = " .
$ilDB->quote($this->getId(),
"integer"));
304 $row =
$ilDB->fetchAssoc($set);
305 return $row[
"tstamp"] ?? 0;
311 $this->deadline2 = $a_val;
321 $this->instruction = $a_val;
333 $is_html = (strlen($inst) != strlen(strip_tags($inst)));
336 $this->string_transform->makeClickable()->transform($inst)
345 $this->title = $a_val;
355 $this->mandatory = $a_val;
365 $this->order_nr = $a_val;
381 $this->type = $a_value;
383 $this->ass_type = $this->types->getById($a_value);
385 if ($this->ass_type->usesTeams()) {
408 return $this->types->isValidId($a_value);
413 $this->peer = $a_value;
423 $this->peer_min = $a_value;
433 $this->peer_unlock = $a_value;
446 $this->peer_dl = $a_val;
461 $this->peer_valid = $a_value;
471 $this->peer_rating = $a_val;
481 $this->peer_text = $a_val;
491 $this->peer_file = $a_val;
501 $this->peer_personal = $a_val;
511 $a_value = (is_numeric($a_value) && (
int) $a_value > 0)
514 $this->peer_char = $a_value;
524 $this->crit_cat = $a_value;
532 public function getPeerReviewCriteriaCatalogueItems(): array
534 if ($this->crit_cat) {
539 if ($this->peer_rating) {
543 if ($this->peer_text) {
546 if ($this->peer_char) {
547 $crit->setMinChars($this->peer_char);
552 if ($this->peer_file) {
562 $this->feedback_file = $a_value;
575 $this->feedback_cron = $a_value;
586 $this->feedback_date = $a_value;
600 $this->feedback_date_custom = $a_value;
611 $this->team_tutor = $a_value;
622 $this->max_file = $a_value;
633 $this->portfolio_template = $a_val;
649 "SELECT * FROM exc_assignment " .
650 " WHERE id = " .
$ilDB->quote($this->getId(),
"integer")
652 $rec =
$ilDB->fetchAssoc($set);
655 if (is_array($rec)) {
667 $this->
setId((
int) $a_set[
"id"]);
672 $this->
setTitle((
string) $a_set[
"title"]);
676 $this->
setType((
int) $a_set[
"type"]);
716 $next_id =
$ilDB->nextId(
"exc_assignment");
717 $ilDB->insert(
"exc_assignment", array(
718 "id" => array(
"integer", $next_id),
720 "time_stamp" => array(
"integer", $this->
getDeadline()),
723 "title" => array(
"text", $this->
getTitle()),
724 "start_time" => array(
"integer", $this->
getStartTime()),
725 "order_nr" => array(
"integer", $this->
getOrderNr()),
727 "type" => array(
"integer", $this->
getType()),
743 "team_tutor" => array(
"integer", $this->
getTeamTutor()),
744 "max_file" => array(
"integer", $this->
getMaxFile()),
752 $this->
setId($next_id);
754 $exc->updateAllUsersStatus();
755 self::createNewAssignmentRecords($next_id, $exc);
771 "time_stamp" => array(
"integer", $this->
getDeadline()),
774 "title" => array(
"text", $this->
getTitle()),
775 "start_time" => array(
"integer", $this->
getStartTime()),
776 "order_nr" => array(
"integer", $this->
getOrderNr()),
778 "type" => array(
"integer", $this->
getType()),
794 "team_tutor" => array(
"integer", $this->
getTeamTutor()),
795 "max_file" => array(
"integer", $this->
getMaxFile()),
804 "id" => array(
"integer", $this->
getId()),
808 $exc->updateAllUsersStatus();
816 public function delete(
818 bool $update_status = true
824 foreach ($exc_members->getMembers() as $mem) {
826 $submission->deleteAllFiles();
830 "DELETE FROM exc_usr_tutor " .
833 array($this->
getId())
841 $peer_review->resetPeerReviews();
845 "DELETE FROM exc_ass_file_order" .
846 " WHERE assignment_id = " .
$ilDB->quote($this->getId(),
'integer')
850 "DELETE FROM exc_mem_ass_status" .
851 " WHERE ass_id = " .
$ilDB->quote($this->getId(),
'integer')
855 "DELETE FROM exc_assignment WHERE " .
856 " id = " .
$ilDB->quote($this->getId(),
"integer")
859 if ($update_status) {
867 $reminder->deleteReminders($this->
getId());
876 $ilDB = $DIC->database();
880 $set =
$ilDB->query(
"SELECT * FROM exc_assignment " .
881 " WHERE exc_id = " .
$ilDB->quote($a_exc_id,
"integer") .
882 " ORDER BY order_nr");
886 while ($rec =
$ilDB->fetchAssoc($set)) {
888 "id" => (
int) $rec[
"id"],
889 "exc_id" => (
int) $rec[
"exc_id"],
890 "deadline" => (
int) $rec[
"time_stamp"],
891 "deadline2" => (
int) $rec[
"deadline2"],
892 "instruction" => (
string) $rec[
"instruction"],
893 "title" => (
string) $rec[
"title"],
894 "start_time" => (
int) $rec[
"start_time"],
895 "order_val" => $order_val,
896 "mandatory" => (
bool) $rec[
"mandatory"],
897 "type" => (
int) $rec[
"type"],
898 "peer" => (
bool) $rec[
"peer"],
899 "peer_min" => (
int) $rec[
"peer_min"],
900 "peer_dl" => (
int) $rec[
"peer_dl"],
901 "peer_file" => (
bool) $rec[
"peer_file"],
902 "peer_prsl" => (
bool) $rec[
"peer_prsl"],
903 "fb_file" => (
string) $rec[
"fb_file"],
904 "fb_date" => (
int) $rec[
"fb_date"],
905 "fb_cron" => (
bool) $rec[
"fb_cron"],
906 "deadline_mode" => (
int) $rec[
"deadline_mode"],
907 "relative_deadline" => (
int) $rec[
"relative_deadline"],
908 "rel_deadline_last_subm" => (
int) $rec[
"rel_deadline_last_subm"]
925 array $a_crit_cat_map
927 $ass_data = self::getInstancesByExercise($a_old_exc_id);
928 foreach ($ass_data as
$d) {
931 $new_ass->setExerciseId($a_new_exc_id);
932 $new_ass->setTitle($d->getTitle());
933 $new_ass->setDeadline($d->getDeadline());
934 $new_ass->setExtendedDeadline($d->getExtendedDeadline());
935 $new_ass->setInstruction($d->getInstruction());
936 $new_ass->setMandatory($d->getMandatory());
937 $new_ass->setOrderNr($d->getOrderNr());
938 $new_ass->setStartTime($d->getStartTime());
939 $new_ass->setType($d->getType());
940 $new_ass->setPeerReview($d->getPeerReview());
941 $new_ass->setPeerReviewMin($d->getPeerReviewMin());
942 $new_ass->setPeerReviewDeadline($d->getPeerReviewDeadline());
943 $new_ass->setPeerReviewFileUpload($d->hasPeerReviewFileUpload());
944 $new_ass->setPeerReviewPersonalized($d->hasPeerReviewPersonalized());
945 $new_ass->setPeerReviewValid($d->getPeerReviewValid());
946 $new_ass->setPeerReviewChars($d->getPeerReviewChars());
947 $new_ass->setPeerReviewText($d->hasPeerReviewText());
948 $new_ass->setPeerReviewRating($d->hasPeerReviewRating());
949 $new_ass->setPeerReviewCriteriaCatalogue($d->getPeerReviewCriteriaCatalogue());
950 $new_ass->setPeerReviewSimpleUnlock($d->getPeerReviewSimpleUnlock());
951 $new_ass->setFeedbackFile($d->getFeedbackFile());
952 $new_ass->setFeedbackDate($d->getFeedbackDate());
953 $new_ass->setFeedbackDateCustom($d->getFeedbackDateCustom());
954 $new_ass->setFeedbackCron($d->hasFeedbackCron());
955 $new_ass->setTeamTutor($d->getTeamTutor());
956 $new_ass->setMaxFile($d->getMaxFile());
957 $new_ass->setMinCharLimit($d->getMinCharLimit());
958 $new_ass->setMaxCharLimit($d->getMaxCharLimit());
959 $new_ass->setPortfolioTemplateId($d->getPortfolioTemplateId());
960 $new_ass->setDeadlineMode($d->getDeadlineMode());
961 $new_ass->setRelativeDeadline($d->getRelativeDeadline());
962 $new_ass->setRelDeadlineLastSubmission($d->getRelDeadlineLastSubmission());
965 if ($d->getPeerReviewCriteriaCatalogue() &&
966 array_key_exists($d->getPeerReviewCriteriaCatalogue(), $a_crit_cat_map)) {
967 $new_ass->setPeerReviewCriteriaCatalogue($a_crit_cat_map[$d->getPeerReviewCriteriaCatalogue()]);
976 $new_web_storage->
create();
977 if (is_dir($old_web_storage->getAbsolutePath())) {
980 $order = $d->getInstructionFilesOrder();
981 foreach ($order as $file) {
989 if (is_dir($old_storage->getGlobalFeedbackPath())) {
998 if ($rmd_sub->getReminderStatus()) {
1001 $new_rmd_sub->setReminderStart($rmd_sub->getReminderStart());
1002 $new_rmd_sub->setReminderEnd($rmd_sub->getReminderEnd());
1003 $new_rmd_sub->setReminderFrequency($rmd_sub->getReminderFrequency());
1004 $new_rmd_sub->setReminderMailTemplate($rmd_sub->getReminderMailTemplate());
1005 $new_rmd_sub->save();
1011 $ass_type = $d->getAssignmentType();
1018 $this->log->debug(
"getting files from class.ilExAssignment using ilFSWebStorageExercise");
1020 return $storage->getFiles();
1027 $set =
$ilDB->query(
1028 "SELECT filename, order_nr, id FROM exc_ass_file_order " .
1029 " WHERE assignment_id = " .
$ilDB->quote($this->getId(),
"integer")
1033 while ($rec =
$ilDB->fetchAssoc($set)) {
1034 $data[$rec[
'filename']] = $rec;
1045 $ilDB = $DIC->database();
1047 $set =
$ilDB->query(
1048 "SELECT MAX(order_nr) mnr FROM exc_assignment " .
1049 " WHERE exc_id = " .
$ilDB->quote($a_exc_id,
"integer")
1051 if ($rec =
$ilDB->fetchAssoc($set)) {
1052 return (
int) $rec[
"mnr"];
1061 $ilDB = $DIC->database();
1063 $query =
"SELECT id FROM exc_assignment " .
1064 "WHERE start_time <= " .
$ilDB->quote(time(),
'integer') .
' ' .
1065 "AND time_stamp >= " .
$ilDB->quote(time(),
'integer') .
' ' .
1066 "AND id = " .
$ilDB->quote($a_ass_id,
'integer');
1069 return (
bool)
$res->numRows();
1076 $ilDB = $DIC->database();
1077 $query =
"SELECT exc_id FROM exc_assignment " .
1078 "WHERE id = " .
$ilDB->quote($a_ass_id,
'integer');
1081 return (
int) (
$res[
"exc_id"] ?? 0);
1084 private static function lookup(
int $a_id,
string $a_field): string
1088 $ilDB = $DIC->database();
1090 $set =
$ilDB->query(
1091 "SELECT " . $a_field .
" FROM exc_assignment " .
1092 " WHERE id = " .
$ilDB->quote($a_id,
"integer")
1095 $rec =
$ilDB->fetchAssoc($set);
1097 return $rec[$a_field] ??
"";
1102 return self::lookup($a_id,
"title");
1107 return self::lookup($a_id,
"type");
1115 $ilDB = $DIC->database();
1119 foreach ($a_order as $k => $v) {
1122 "UPDATE exc_assignment SET " .
1123 " order_nr = " .
$ilDB->quote($nr,
"integer") .
1124 " WHERE id = " .
$ilDB->quote((
int) $k,
"integer") .
1125 " AND exc_id = " .
$ilDB->quote($a_ex_id,
"integer")
1135 $ilDB = $DIC->database();
1137 $set =
$ilDB->query(
1138 "SELECT id FROM exc_assignment " .
1139 " WHERE exc_id = " .
$ilDB->quote($a_ex_id,
"integer") .
1140 " ORDER BY time_stamp" 1143 while ($rec =
$ilDB->fetchAssoc($set)) {
1145 "UPDATE exc_assignment SET " .
1146 " order_nr = " .
$ilDB->quote($nr,
"integer") .
1147 " WHERE id = " .
$ilDB->quote($rec[
"id"],
"integer")
1158 $ilDB = $DIC->database();
1160 $set =
$ilDB->query(
1161 "SELECT count(*) cntm FROM exc_assignment " .
1162 " WHERE exc_id = " .
$ilDB->quote($a_ex_id,
"integer") .
1163 " AND mandatory = " .
$ilDB->quote(1,
"integer")
1165 $rec =
$ilDB->fetchAssoc($set);
1166 return (
int) $rec[
"cntm"];
1174 $ilDB = $DIC->database();
1176 $set =
$ilDB->query(
1177 "SELECT count(*) cntm FROM exc_assignment " .
1178 " WHERE exc_id = " .
$ilDB->quote($a_ex_id,
"integer")
1180 $rec =
$ilDB->fetchAssoc($set);
1181 return $rec[
"cntm"];
1189 $ilDB = $DIC->database();
1191 $set =
$ilDB->query(
1192 "SELECT * FROM exc_assignment " .
1193 " WHERE exc_id = " .
$ilDB->quote($a_ex_id,
"integer") .
1194 " AND id = " .
$ilDB->quote($a_ass_id,
"integer")
1196 if (
$ilDB->fetchAssoc($set)) {
1209 $set =
$ilDB->query(
"SELECT ud.usr_id, ud.lastname, ud.firstname, ud.login" .
1210 " FROM exc_members excm" .
1211 " JOIN usr_data ud ON (ud.usr_id = excm.usr_id)" .
1212 " WHERE excm.obj_id = " .
$ilDB->quote($this->getExerciseId(),
"integer"));
1213 while ($rec =
$ilDB->fetchAssoc($set)) {
1214 $mem[$rec[
"usr_id"]] =
1216 "name" => $rec[
"lastname"] .
", " . $rec[
"firstname"],
1217 "login" => $rec[
"login"],
1218 "usr_id" => $rec[
"usr_id"],
1219 "lastname" => $rec[
"lastname"],
1220 "firstname" => $rec[
"firstname"]
1227 if (!$this->ass_type->usesTeams()) {
1228 foreach ($idl as $user_id => $v) {
1229 if (!isset($mem[$user_id])) {
1234 "name" =>
$name[
"lastname"] .
", " .
$name[
"firstname"],
1235 "login" => $name[
"login"],
1236 "usr_id" => $user_id,
1237 "lastname" => $name[
"lastname"],
1238 "firstname" => $name[
"firstname"]
1245 $q =
"SELECT * FROM exc_mem_ass_status " .
1246 "WHERE ass_id = " .
$ilDB->quote($this->
getId(),
"integer");
1247 $set =
$ilDB->query($q);
1248 while ($rec =
$ilDB->fetchAssoc($set)) {
1249 if (isset($mem[$rec[
"usr_id"]])) {
1252 $mem[$rec[
"usr_id"]][
"sent_time"] = $rec[
"sent_time"];
1253 $mem[$rec[
"usr_id"]][
"submission"] = $sub->getLastSubmission();
1254 $mem[$rec[
"usr_id"]][
"status_time"] = $rec[
"status_time"];
1255 $mem[$rec[
"usr_id"]][
"feedback_time"] = $rec[
"feedback_time"];
1256 $mem[$rec[
"usr_id"]][
"notice"] = $rec[
"notice"];
1257 $mem[$rec[
"usr_id"]][
"status"] = $rec[
"status"];
1258 $mem[$rec[
"usr_id"]][
"mark"] = $rec[
"mark"];
1259 $mem[$rec[
"usr_id"]][
"comment"] = $rec[
"u_comment"];
1271 string $a_grade =
"" 1274 $ilDB = $DIC->database();
1277 if (in_array($a_grade, array(
"notgraded",
"passed",
"failed"))) {
1278 $and_grade =
" AND status = " .
$ilDB->quote($a_grade,
"text");
1281 $q =
"SELECT * FROM exc_mem_ass_status " .
1282 "WHERE ass_id = " .
$ilDB->quote($this->
getId(),
"integer") .
1283 " AND usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
1286 $set =
$ilDB->query($q);
1289 while ($rec =
$ilDB->fetchAssoc($set)) {
1292 $data[
"sent_time"] = $rec[
"sent_time"];
1293 $data[
"submission"] = $sub->getLastSubmission();
1294 $data[
"status_time"] = $rec[
"status_time"];
1295 $data[
"feedback_time"] = $rec[
"feedback_time"];
1296 $data[
"notice"] = $rec[
"notice"];
1297 $data[
"status"] = $rec[
"status"];
1298 $data[
"mark"] = $rec[
"mark"];
1299 $data[
"comment"] = $rec[
"u_comment"];
1312 $ilDB = $DIC->database();
1314 $ass_data = self::getAssignmentDataOfExercise($a_exc_id);
1315 foreach ($ass_data as $ass) {
1317 $ilDB->replace(
"exc_mem_ass_status", array(
1318 "ass_id" => array(
"integer", $ass[
"id"]),
1319 "usr_id" => array(
"integer", $a_user_id)
1321 "status" => array(
"text",
"notgraded")
1333 $ilDB = $DIC->database();
1336 $mems = $exmem->getMembers();
1338 foreach ($mems as $mem) {
1339 $ilDB->replace(
"exc_mem_ass_status", array(
1340 "ass_id" => array(
"integer", $a_ass_id),
1341 "usr_id" => array(
"integer", $mem)
1343 "status" => array(
"text",
"notgraded")
1357 $storage->uploadAssignmentFiles($a_files);
1373 $deliverFilename = trim(str_replace(
" ",
"_", $this->
getTitle() .
"_" . $this->
getId()));
1375 $deliverFilename =
"multi_feedback_" . $deliverFilename;
1384 $mfdir = $tmpdir .
"/" . $deliverFilename;
1389 $mems = $exmem->getMembers();
1392 'edit_submissions_grades',
1393 'edit_submissions_grades',
1397 foreach ($mems as $mem) {
1399 $subdir =
$name[
"lastname"] .
"_" .
$name[
"firstname"] .
"_" .
$name[
"login"] .
"_" .
$name[
"user_id"];
1406 $tmpzipfile = $tmpdir .
"/multi_feedback.zip";
1423 if (!is_file($a_file[
"tmp_name"])) {
1428 $mfu = $storage->getMultiFeedbackUploadPath(
$ilUser->getId());
1433 $subdir =
"notfound";
1434 foreach ($subdirs as $s => $j) {
1435 if ($j[
"type"] ==
"dir" && substr($s, 0, 14) ==
"multi_feedback") {
1440 if (!is_dir($mfu .
"/" . $subdir)) {
1455 if ($a_user_id == 0) {
1456 $a_user_id =
$ilUser->getId();
1459 $mf_files = array();
1464 $mems = $exmem->getMembers();
1468 $mfu = $storage->getMultiFeedbackUploadPath($a_user_id);
1472 $subdir =
"notfound";
1473 foreach ($subdirs as $s => $j) {
1474 if ($j[
"type"] ==
"dir" && substr($s, 0, 14) ==
"multi_feedback") {
1480 foreach ($items as $k =>
$i) {
1482 if (
$i[
"type"] ==
"dir" && !in_array($k, array(
".",
".."))) {
1484 $parts = explode(
"_",
$i[
"entry"]);
1486 if (in_array($user_id, $mems)) {
1490 foreach ($files as $k2 =>
$f) {
1492 if (
$f[
"type"] ==
"file" && substr($k2, 0, 1) !=
".") {
1493 $mf_files[] = array(
1494 "lastname" =>
$name[
"lastname"],
1495 "firstname" =>
$name[
"firstname"],
1496 "login" =>
$name[
"login"],
1497 "user_id" =>
$name[
"user_id"],
1498 "full_path" => $mfu .
"/" . $subdir .
"/" . $k .
"/" . $k2,
1516 $mfu = $storage->getMultiFeedbackUploadPath(
$ilUser->getId());
1532 $fstorage->create();
1535 foreach ($mf_files as
$f) {
1536 $user_id = $f[
"user_id"];
1537 $file_path = $f[
"full_path"];
1538 $file_name = $f[
"file"];
1541 if (is_array($a_files[$user_id] ??
false) && in_array(md5($file_name), $a_files[$user_id])) {
1543 $feedback_id = $submission->getFeedbackId();
1544 $noti_rec_ids = $submission->getUserIds();
1547 $fb_path = $fstorage->getFeedbackPath($feedback_id);
1548 $target = $fb_path .
"/" . $file_name;
1549 if (is_file($target)) {
1555 if ($noti_rec_ids) {
1556 foreach ($noti_rec_ids as $user_id) {
1558 $member_status->setFeedback(
true);
1559 $member_status->update();
1585 $dl_id = $this->
getId() .
"0";
1586 $fbdl_id = $this->
getId() .
"1";
1588 $context_ids = array($dl_id, $fbdl_id);
1591 if ($a_event !=
"delete") {
1596 $app->setSubtitle(
"cal_exc_deadline");
1598 $app->setFullday(
false);
1610 $app->setSubtitle(
"cal_exc_peer_review_deadline");
1612 $app->setFullday(
false);
1619 $ilAppEventHandler->raise(
1621 $a_event .
'Assignment',
1624 'obj_id' => $exc->
getId(),
1625 'context_ids' => $context_ids,
1626 'appointments' => $apps)
1634 $ilDB = $DIC->database();
1638 $set =
$ilDB->query(
"SELECT id,fb_file,time_stamp,deadline2,fb_date FROM exc_assignment" .
1639 " WHERE fb_cron = " .
$ilDB->quote(1,
"integer") .
1640 " AND (fb_date = " .
$ilDB->quote(self::FEEDBACK_DATE_DEADLINE,
"integer") .
1641 " AND time_stamp IS NOT NULL" .
1642 " AND time_stamp > " .
$ilDB->quote(0,
"integer") .
1643 " AND time_stamp < " .
$ilDB->quote(time(),
"integer") .
1644 " AND fb_cron_done = " .
$ilDB->quote(0,
"integer") .
1645 ") OR (fb_date = " .
$ilDB->quote(self::FEEDBACK_DATE_CUSTOM,
"integer") .
1646 " AND fb_date_custom IS NOT NULL" .
1647 " AND fb_date_custom > " .
$ilDB->quote(0,
"integer") .
1648 " AND fb_date_custom < " .
$ilDB->quote(time(),
"integer") .
1649 " AND fb_cron_done = " .
$ilDB->quote(0,
"integer") .
")");
1653 while ($row =
$ilDB->fetchAssoc($set)) {
1654 if ($row[
'fb_date'] == self::FEEDBACK_DATE_DEADLINE) {
1655 $max = max($row[
'time_stamp'], $row[
'deadline2']);
1656 if (trim($row[
"fb_file"]) && $max <= time()) {
1657 $res[] = $row[
"id"];
1659 } elseif ($row[
'fb_date'] == self::FEEDBACK_DATE_CUSTOM) {
1660 if (trim($row[
"fb_file"] ??
"") && ($row[
'fb_date_custom'] ?? 0) <= time()) {
1661 $res[] = $row[
"id"];
1674 int $a_user_id = null
1678 $ilDB = $DIC->database();
1680 $ass =
new self($a_ass_id);
1683 if (!$ass->hasFeedbackCron() || !$ass->getFeedbackFile()) {
1689 $set =
$ilDB->query(
"SELECT fb_cron_done" .
1690 " FROM exc_assignment" .
1691 " WHERE id = " .
$ilDB->quote($a_ass_id,
"integer"));
1692 $row =
$ilDB->fetchAssoc($set);
1693 if ($row[
"fb_cron_done"]) {
1699 $ntf->setLangModules(array(
"exc"));
1700 $ntf->setObjId($ass->getExerciseId());
1701 $ntf->setSubjectLangId(
"exc_feedback_notification_subject");
1702 $ntf->setIntroductionLangId(
"exc_feedback_notification_body");
1703 $ntf->addAdditionalInfo(
"exc_assignment", $ass->getTitle());
1704 $ntf->setGotoLangId(
"exc_feedback_notification_link");
1705 $ntf->setReasonLangId(
"exc_feedback_notification_reason");
1710 $ilDB->manipulate(
"UPDATE exc_assignment" .
1711 " SET fb_cron_done = " .
$ilDB->quote(1,
"integer") .
1712 " WHERE id = " .
$ilDB->quote($a_ass_id,
"integer"));
1714 $ntf->sendMail(array($a_user_id));
1732 $deadline = max($this->deadline, $this->deadline2, $idl);
1733 return ($deadline - time() <= 0);
1741 $idl = $a_include_personal
1746 $deadline = max($this->deadline, $this->deadline2, $idl);
1750 if ($idl && $deadline == $idl) {
1751 return ($deadline - time() <= 0);
1755 return ($deadline > 0 &&
1769 return ($date_custom - time() <= 0);
1781 return (time() - $this->start_time <= 0);
1792 return $storage->getGlobalFeedbackPath();
1819 return $path .
"/" . $file;
1829 $a_user_id =
$ilUser->getId();
1831 if (!array_key_exists($a_user_id, $this->member_status)) {
1834 return $this->member_status[$a_user_id];
1849 $id = $file[
"returned_id"];
1859 if ($file[
"late"] &&
1862 $uploaded < $deadline)) {
1866 elseif (!$file[
"late"] &&
1869 $uploaded > $deadline) {
1873 if ($late !== null) {
1874 $ilDB->manipulate(
"UPDATE exc_returned" .
1875 " SET late = " .
$ilDB->quote($late,
"integer") .
1876 " WHERE returned_id = " .
$ilDB->quote($id,
"integer"));
1891 if (!is_numeric($id)) {
1892 $id = substr($id, 1);
1907 $set =
$ilDB->query(
"SELECT * FROM exc_idl" .
1908 " WHERE ass_id = " .
$ilDB->quote($this->getId(),
"integer"));
1909 while ($row =
$ilDB->fetchAssoc($set)) {
1910 if ($row[
"is_team"]) {
1911 $row[
"member_id"] =
"t" . $row[
"member_id"];
1914 $res[$row[
"member_id"]] = $row[
"tstamp"];
1927 if (!$this->ass_type->usesTeams() &&
1931 if ($peer_review->hasPeerReviewGroups()) {
1945 $db = $DIC->database();
1947 asort($a_order, SORT_NUMERIC);
1950 foreach (array_keys($a_order) as $k) {
1953 "UPDATE exc_ass_file_order SET " .
1954 " order_nr = " . $db->
quote($nr,
"integer") .
1955 " WHERE id = " . $db->
quote((
int) $k,
"integer") .
1956 " AND assignment_id = " . $db->
quote($a_ass_id,
"integer")
1968 $db = $DIC->database();
1969 $id = $db->
nextId(
"exc_ass_file_order");
1971 "exc_ass_file_order",
1973 "id" => [
"integer", $id],
1974 "order_nr" => [
"integer", $a_order_nr],
1975 "assignment_id" => [
"integer", $a_ass_id],
1976 "filename" => [
"text", $a_filename]
1989 $db = $DIC->database();
1995 if (self::instructionFileExistsInDb(
$filename, $a_ass_id) == 0) {
1996 if ($a_order_nr == 0) {
1997 $order_val = self::instructionFileOrderGetMax($a_ass_id);
1998 $order = $order_val + 10;
2000 $order = $a_order_nr;
2003 $id = $db->nextID(
'exc_ass_file_order');
2004 $db->
manipulate(
"INSERT INTO exc_ass_file_order " .
2005 "(id, assignment_id, filename, order_nr) VALUES (" .
2006 $db->
quote($id,
"integer") .
"," .
2007 $db->
quote($a_ass_id,
"integer") .
"," .
2009 $db->
quote($order,
"integer") .
2024 $db = $DIC->database();
2027 foreach ($a_file as $v) {
2029 "DELETE FROM exc_ass_file_order " .
2030 "WHERE filename = " . $db->
quote($v,
'text') .
2031 " AND assignment_id = " . $db->
quote($a_ass_id,
'integer')
2043 $db = $DIC->database();
2047 "DELETE FROM exc_ass_file_order" .
2048 " WHERE assignment_id = " . $db->
quote($a_ass_id,
'integer') .
2049 " AND filename = " . $db->
quote($a_new_name,
'text')
2053 "UPDATE exc_ass_file_order SET" .
2054 " filename = " . $db->
quote($a_new_name,
'text') .
2055 " WHERE assignment_id = " . $db->
quote($a_ass_id,
'integer') .
2056 " AND filename = " . $db->
quote($a_old_name,
'text')
2067 $db = $DIC->database();
2070 $result = $db->
query(
2071 "SELECT id FROM exc_ass_file_order" .
2072 " WHERE assignment_id = " . $db->
quote($a_ass_id,
'integer') .
2073 " AND filename = " . $db->
quote($a_filename,
'text')
2086 $files = array_map(
function ($v) {
2090 $set = $db->
query(
"SELECT * FROM exc_ass_file_order " .
2091 " WHERE assignment_id = " . $db->
quote($this->getId(),
"integer") .
2092 " ORDER BY order_nr");
2094 $numbered_files = array();
2097 if (in_array($rec[
"filename"], $files)) {
2099 "UPDATE exc_ass_file_order SET " .
2100 " order_nr = " . $db->
quote($order_nr,
"integer") .
2101 " WHERE assignment_id = " . $db->
quote($this->
getId(),
"integer") .
2102 " AND id = " . $db->
quote($rec[
"id"],
"integer")
2105 $numbered_files[] = $rec[
"filename"];
2108 "DELETE FROM exc_ass_file_order " .
2109 " WHERE assignment_id = " . $db->
quote($this->getId(),
"integer") .
2110 " AND id = " . $db->
quote($rec[
"id"],
"integer")
2114 foreach ($files as
$f) {
2115 if (!in_array($f, $numbered_files)) {
2116 self::instructionFileInsertOrder($f, $this->
getId());
2122 array $a_entries = array()
2127 foreach ($a_entries as $k =>
$e) {
2128 $a_entries[$k][
"order_val"] = $order[
$e[
"file"]][
"order_nr"] ?? 0;
2129 $a_entries[$k][
"order_id"] = $order[$e[
"file"]][
"id"] ??
"";
2139 $db = $DIC->database();
2143 "SELECT max(order_nr) as max_order FROM exc_ass_file_order WHERE assignment_id = %s",
2145 array($db->
quote($a_ass_id,
'integer'))
2150 $order_val = (
int) $row[
'max_order'];
2159 $this->min_char_limit = $a_val;
2170 $this->max_char_limit = $a_val;
2188 $calculated_deadlines = array(
2195 $type = $ts[
"is_team"]
2199 $calculated_deadlines[
$type][$ts[
"member_id"]] = array(
2200 "calculated_deadline" => $ts[
"starting_ts"] + ($this->
getRelativeDeadline() * 24 * 60 * 60)
2204 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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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) ...
numRows(ilDBStatement $statement)
getInstructionPresentation()
insert(string $table_name, array $values)
static getLogger(string $a_component_id)
Get component logger.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static createNewUserRecords(int $a_user_id, int $a_exc_id)
canParticipantReceiveFeedback(int $part_id)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setMinCharLimit(int $a_val)
setFeedbackFile(?string $a_value)
isValidType(int $a_value)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
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)
sendMultiFeedbackStructureFile(ilObjExercise $exercise)
Create member status record for a new assignment for all participants.
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.
uploadMultiFeedbackFile(array $a_file)
static createNewAssignmentRecords(int $a_ass_id, ilObjExercise $a_exc)
initFromDB(array $a_set)
Import DB record.
setPeerReviewMin(int $a_value)
getGlobalFeedbackFilePath()
getMemberStatus(?int $a_user_id=null)
static countMandatory(int $a_ex_id)
setPeerReviewFileUpload(bool $a_val)
afterDeadlineStrict(bool $a_include_personal=true)
setPeerReviewSimpleUnlock(bool $a_value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static lookupTitle(int $a_id)
sendFeedbackFileNotification(string $a_feedback_file, array $user_ids, int $a_ass_id, bool $a_is_text_feedback=false)
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)
static rCopy(string $a_sdir, string $a_tdir, bool $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
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)
recalculateLateSubmissions()
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)
static unzip(string $path_to_zip_file, bool $overwrite_existing=false, bool $unpack_flat=false)
setExerciseId(int $a_val)
const PEER_REVIEW_VALID_ONE
static getSafeFilename(string $a_initial_filename)
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
static getASCIIFilename(string $a_filename)
static lookupMaxOrderNrForEx(int $a_exc_id)
setTeamTutor(bool $a_value)
uploadAssignmentFiles(array $a_files)
Upload assignment files (from creation form)
updateAllUsersStatus()
Update status of all users.
static getAssignmentDataOfExercise(int $a_exc_id)
cloneSpecificProperties(ilExAssignment $source, ilExAssignment $target)
filterUserIdsByRbacOrPositionOfCurrentUser(string $rbac_perm, string $pos_perm, int $ref_id, array $user_ids)
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
getMultiFeedbackFiles(int $a_user_id=0)
Get multi feedback files (of uploader)
setPeerReviewRating(bool $a_val)
setExtendedDeadline(?int $a_val)
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 delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
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.
handleGlobalFeedbackFileUpload(array $a_file)
static getDir(string $a_dir, bool $a_rec=false, ?string $a_sub_dir="")
get directory
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
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)
getAbsolutePath()
Calculates the full path on the filesystem.
saveMultiFeedbackFiles(array $a_files, ilObjExercise $a_exc)
setPeerReviewPersonalized(bool $a_val)
deleteGlobalFeedbackFile()
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)
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
const FEEDBACK_DATE_DEADLINE
getRelDeadlineLastSubmission()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
clearMultiFeedbackDirectory()
Clear multi feedback directory.
const TEAMS_FORMED_BY_PARTICIPANTS
create()
Create directory.
getPeerReviewSimpleUnlock()
static zip(string $a_dir, string $a_file, bool $compress_content=false)
zips given directory/file into given zip.file
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
hasPeerReviewFileUpload()
const FEEDBACK_DATE_CUSTOM
static rename(string $a_source, string $a_target)
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)
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)
getGlobalFeedbackFileStoragePath()
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...
static getAllAssignmentFiles(int $a_exc_id, int $a_ass_id)
__construct($a_id=0)
Constructor.
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
static sendFeedbackNotifications(int $a_ass_id, int $a_user_id=null)
static getInstance(int $a_ass_id, int $a_participant_id, bool $a_is_team=false)
fixInstructionFileOrdering()
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...