52 bool $a_is_tutor =
false,
53 bool $a_public_submissions =
false 56 $this->main_tpl = $DIC->ui()->mainTemplate();
58 $this->
user = $DIC->user();
59 $this->db = $DIC->database();
60 $this->
lng = $DIC->language();
61 $this->
ctrl = $DIC->ctrl();
63 $this->assignment = $a_ass;
67 $this->user_id = $a_user_id;
68 $this->is_tutor = $a_is_tutor;
69 $this->public_submissions = $a_public_submissions;
77 $this->team = $a_team;
81 if ($this->assignment->getPeerReview()) {
88 return $this->assignment->getAssignmentType()->getSubmissionType();
113 if ($this->peer_review) {
114 $valid = $this->peer_review->isFeedbackValidForPassed($user_id);
131 return $this->team->getMembers();
135 return array($this->user_id);
141 return "t" . $this->team->getId();
149 return (
bool) count($this->
getFiles(null,
true));
166 if (count($submitted) > 0) {
167 $submitted = array_pop($submitted);
169 if (is_file($submitted[
'filename'])) {
170 return $submitted[
'filename'];
181 return array_pop($files);
189 $this->state->isSubmissionAllowed());
199 $this->public_submissions) {
204 if ($this->peer_review) {
206 foreach ($this->peer_review->getPeerReviewsByPeerId($this->getUserId()) as $giver) {
207 if ($giver[
"giver_id"] ==
$ilUser->getId()) {
223 if ($this->assignment->hasTeam() &&
224 !$this->team->getId()) {
230 public function isInTeam(
int $a_user_id = null): bool
237 return in_array($a_user_id, $this->
getUserIds());
249 return ($this->peer_review &&
250 $this->peer_review->hasPeerReviewAccess($this->user_id));
261 $max <=
sizeof($this->
getFiles())) {
275 $dl = $this->state->getOfficialDeadline();
277 return ($dl && $dl < time());
282 return new ilFSStorageExercise($this->assignment->getExerciseId(), $this->assignment->getId());
287 if ($this->ass_type->isSubmissionAssignedToTeam()) {
288 $storage_id = $this->
getTeam()->getId();
301 array $a_http_post_files,
310 if ($this->ass_type->isSubmissionAssignedToTeam()) {
311 $team_id = $this->
getTeam()->getId();
322 $deliver_result = $this->
initStorage()->uploadFile($a_http_post_files, $storage_id, $unzip);
324 if ($deliver_result) {
325 $next_id =
$ilDB->nextId(
"exc_returned");
327 "INSERT INTO exc_returned " .
328 "(returned_id, obj_id, user_id, filename, filetitle, mimetype, ts, ass_id, late, team_id) " .
329 "VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
330 $ilDB->quote($next_id,
"integer"),
331 $ilDB->quote($this->assignment->getExerciseId(),
"integer"),
332 $ilDB->quote($user_id,
"integer"),
333 $ilDB->quote($deliver_result[
"fullname"],
"text"),
335 $ilDB->quote($deliver_result[
"mimetype"],
"text"),
337 $ilDB->quote($this->assignment->getId(),
"integer"),
338 $ilDB->quote($this->isLate(),
"integer"),
339 $ilDB->quote($team_id,
"integer")
344 $this->team->writeLog(
346 $a_http_post_files[
"name"]
376 $max_num = $this->assignment->getMaxFile();
378 $current_num = count($this->
getFiles());
379 $zip_num = count($filearray[
"file"]);
380 if ($current_num + $zip_num > $max_num) {
382 $this->main_tpl->setOnScreenMessage(
'failure', $lng->
txt(
"exc_upload_error") .
" [Zip1]",
true);
389 $a_http_post_files[
"type"] =
"other";
390 $a_http_post_files[
"tmp_name"] = $filearray[
"path"][
$key] .
"/" .
$filename;
391 $a_http_post_files[
"error"] = 0;
392 $a_http_post_files[
"size"] = filesize($filearray[
"path"][
$key] .
"/" .
$filename);
394 if (!$this->
uploadFile($a_http_post_files,
true)) {
396 $this->main_tpl->setOnScreenMessage(
'failure', $lng->
txt(
"exc_upload_error") .
" [Zip2]",
true);
402 $this->main_tpl->setOnScreenMessage(
'failure', $e->getMessage());
418 $ilDB = $DIC->database();
421 $path = $storage->getAbsoluteSubmissionPath();
425 $query =
"SELECT * FROM exc_returned WHERE ass_id = " .
426 $ilDB->quote($a_ass_id,
"integer");
432 $storage_id = $row[
"team_id"];
434 $storage_id = $row[
"user_id"];
437 $row[
"timestamp"] = $row[
"ts"];
438 $row[
"filename"] =
$path .
"/" . $storage_id .
"/" . basename($row[
"filename"]);
455 $ilDB = $DIC->database();
458 $path = $storage->getAbsoluteSubmissionPath();
462 $query =
"SELECT * FROM exc_returned WHERE ass_id = " .
463 $ilDB->quote($a_ass_id,
"integer") .
464 " AND user_id IN (" . implode(
',', $a_users) .
")";
470 $storage_id = $row[
"team_id"];
472 $storage_id = $row[
"user_id"];
475 $row[
"timestamp"] = $row[
"ts"];
476 $row[
"filename"] =
$path .
"/" . $storage_id .
"/" . basename($row[
"filename"]);
488 array $a_file_ids = null,
489 bool $a_only_valid =
false,
490 string $a_min_timestamp = null,
491 bool $print_versions =
false 495 $sql =
"SELECT * FROM exc_returned" .
502 $sql .=
" AND " .
$ilDB->in(
"returned_id", $a_file_ids,
false,
"integer");
505 if ($a_min_timestamp) {
506 $sql .=
" AND ts > " .
$ilDB->quote($a_min_timestamp,
"timestamp");
509 $result =
$ilDB->query($sql);
511 $delivered_files = array();
512 if (
$ilDB->numRows($result)) {
515 while ($row =
$ilDB->fetchAssoc($result)) {
519 !(trim($row[
"atext"]))) {
523 $row[
"owner_id"] = $row[
"user_id"];
524 $row[
"timestamp"] = $row[
"ts"];
525 $row[
"timestamp14"] = substr($row[
"ts"], 0, 4) .
526 substr($row[
"ts"], 5, 2) . substr($row[
"ts"], 8, 2) .
527 substr($row[
"ts"], 11, 2) . substr($row[
"ts"], 14, 2) .
528 substr($row[
"ts"], 17, 2);
530 if ($this->
getAssignment()->getAssignmentType()->isSubmissionAssignedToTeam()) {
531 $storage_id = $row[
"team_id"];
533 $storage_id = $row[
"user_id"];
537 $row[
"filename"] =
$path .
538 "/" . $storage_id .
"/" . basename($row[
"filename"]);
541 if (is_file($row[
"filename"]) || (!$this->assignment->getAssignmentType()->usesFileUpload())) {
542 $delivered_files[] = $row;
548 if (in_array($this->assignment->getType(), [
553 $delivered_files = array_filter($delivered_files,
function (
$i) use ($print_versions) {
554 $is_print_version =
false;
555 if (substr(
$i[
"filetitle"], strlen(
$i[
"filetitle"]) - 5) ==
"print") {
556 $is_print_version =
true;
558 if (substr(
$i[
"filetitle"], strlen(
$i[
"filetitle"]) - 9) ==
"print.zip") {
559 $is_print_version =
true;
561 return ($is_print_version == $print_versions);
565 return $delivered_files;
583 $q =
"SELECT exc_returned.returned_id AS id " .
584 "FROM exc_usr_tutor, exc_returned " .
585 "WHERE exc_returned.ass_id = exc_usr_tutor.ass_id " .
586 " AND exc_returned.user_id = exc_usr_tutor.usr_id " .
589 " AND exc_usr_tutor.tutor_id = " .
$ilDB->quote($tutor,
"integer") .
590 " AND exc_usr_tutor.download_time < exc_returned.ts ";
592 $new_up_set =
$ilDB->query($q);
595 while ($new_up_rec =
$ilDB->fetchAssoc($new_up_set)) {
596 $new_up[] = $new_up_rec[
"id"];
610 $ilDB = $DIC->database();
612 $set =
$ilDB->query(
"SELECT obj_id" .
613 " FROM exc_returned" .
614 " WHERE returned_id = " .
$ilDB->quote($a_returned_id,
"integer"));
615 $row =
$ilDB->fetchAssoc($set);
616 return (
int) $row[
"obj_id"];
629 $ilDB = $DIC->database();
631 $set =
$ilDB->query(
"SELECT obj_id, ass_id" .
632 " FROM exc_returned" .
633 " WHERE user_id = " .
$ilDB->quote($a_user_id,
"integer") .
634 " AND filetitle = " .
$ilDB->quote($a_filetitle,
"text"));
636 while ($row =
$ilDB->fetchAssoc($set)) {
637 $res[$row[
"ass_id"]] = $row;
646 foreach ($this->
getFiles() as $item) {
647 $files[] = $item[
"returned_id"];
650 foreach ($this->
getFiles(null,
false, null,
true) as $item) {
651 $files[] = $item[
"returned_id"];
671 if ($file_id_array === []) {
675 if ($file_id_array !== []) {
676 $result =
$ilDB->query(
"SELECT * FROM exc_returned" .
677 " WHERE " .
$ilDB->in(
"returned_id", $file_id_array,
false,
"integer") .
680 if (
$ilDB->numRows($result)) {
681 $result_array = array();
682 while ($row =
$ilDB->fetchAssoc($result)) {
683 $row[
"timestamp"] = $row[
"ts"];
684 $result_array[] = $row;
688 $ilDB->manipulate(
"DELETE FROM exc_returned" .
689 " WHERE " .
$ilDB->in(
"returned_id", $file_id_array,
false,
"integer") .
694 foreach ($result_array as $value) {
695 if ($value[
"filename"]) {
697 $this->team->writeLog(
703 if ($this->
getAssignment()->getAssignmentType()->isSubmissionAssignedToTeam()) {
704 $storage_id = $value[
"team_id"];
706 $storage_id = $value[
"user_id"];
709 $filename =
$path .
"/" . $storage_id .
"/" . basename($value[
"filename"]);
728 $submission =
new self($ass, $a_user_id);
729 $submission->deleteAllFiles();
732 $team = $submission->getTeam();
738 $member_status = $ass->getMemberStatus($a_user_id);
739 $member_status->setStatus(
"notgraded");
740 $member_status->update();
754 $q =
"SELECT download_time FROM exc_usr_tutor WHERE " .
756 $ilDB->in(
"usr_id", $a_user_ids,
"",
"integer") .
" AND " .
757 " tutor_id = " .
$ilDB->quote(
$ilUser->getId(),
"integer") .
758 " ORDER BY download_time DESC";
759 $lu_set =
$ilDB->query($q);
760 $lu_rec =
$ilDB->fetchAssoc($lu_set);
761 return $lu_rec[
"download_time"] ??
"";
765 array $a_file_ids = null,
766 bool $a_only_new =
false,
767 bool $a_peer_review_mask_filename =
false 773 $is_team = $this->assignment->hasTeam();
775 $download_time = null;
780 if ($this->is_tutor) {
784 if ($a_peer_review_mask_filename) {
787 foreach ($this->peer_review->getPeerReviewsByGiver(
$ilUser->getId()) as $idx => $item) {
788 if ($item[
"peer_id"] == $this->
getUserId()) {
797 $files = $this->
getFiles($a_file_ids,
false, $download_time);
800 if (count($files) == 1) {
801 $file = array_pop($files);
803 switch ($this->assignment->getType()) {
808 $this->assignment->getTitle() .
" - " .
809 $file[
"filetitle"][
"firstname"] .
" " .
810 $file[
"filetitle"][
"lastname"] .
" (" .
811 $file[
"filetitle"][
"login"] .
").zip";
817 $this->assignment->getTitle() .
" (Team " . $this->
getTeam()->getId() .
").zip";
824 if ($a_peer_review_mask_filename) {
825 $title_a = explode(
".", $file[
"filetitle"]);
826 $suffix = array_pop($title_a);
827 $file[
"filetitle"] = $this->assignment->getTitle() .
"_peer" . $peer_id .
"." . $suffix;
828 } elseif ($file[
"late"]) {
829 $file[
"filetitle"] = $lng->
txt(
"exc_late_submission") .
" - " .
833 $this->
downloadSingleFile($file[
"user_id"], $file[
"filename"], $file[
"filetitle"], $file[
"team_id"]);
835 $array_files = array();
836 foreach ($files as $seq => $file) {
837 if ($this->assignment->getAssignmentType()->isSubmissionAssignedToTeam()) {
838 $storage_id = $file[
"team_id"];
840 $storage_id = $file[
"user_id"];
843 $src = basename($file[
"filename"]);
844 if ($a_peer_review_mask_filename) {
845 $src_a = explode(
".", $src);
846 $suffix = array_pop($src_a);
847 $tgt = $this->assignment->getTitle() .
"_peer" . $peer_id .
848 "_" . (++$seq) .
"." . $suffix;
850 $array_files[$storage_id][] = array(
855 $array_files[$storage_id][] = array(
857 "late" => $file[
"late"]
880 $exc_id = $this->assignment->getExerciseId();
881 $ass_id = $this->assignment->getId();
885 "DELETE FROM exc_usr_tutor " .
886 "WHERE ass_id = %s AND usr_id = %s AND tutor_id = %s",
887 array(
"integer",
"integer",
"integer"),
888 array($ass_id, $user_id,
$ilUser->getId())
892 "INSERT INTO exc_usr_tutor (ass_id, obj_id, usr_id, tutor_id, download_time) VALUES " .
893 "(%s, %s, %s, %s, %s)",
894 array(
"integer",
"integer",
"integer",
"integer",
"timestamp"),
906 if ($this->ass_type->isSubmissionAssignedToTeam()) {
907 $storage_id = $a_team_id;
909 $storage_id = $a_user_id;
912 $filename = $this->
initStorage()->getAbsoluteSubmissionPath() .
913 "/" . $storage_id .
"/" . basename($filename);
921 bool $a_multi_user =
false 924 $a_user_id = (
int) $a_user_id;
933 $tmpzipfile = $tmpfile .
".zip";
939 $deliverFilename = str_replace(
" ",
"_", $assTitle);
940 if ($a_user_id > 0 && !$a_multi_user) {
942 $deliverFilename .=
"_" . $userName[
"lastname"] .
"_" . $userName[
"firstname"];
944 $deliverFilename .=
"_files";
946 $orgDeliverFilename = trim($deliverFilename);
949 chdir($tmpdir .
"/" . $deliverFilename);
952 $parsed_files = $duplicates = array();
953 foreach ($a_filenames as $storage_id => $files) {
954 $pathname =
$path .
"/" . $storage_id;
958 if (isset($filename[
"tgt"])) {
959 $newFilename = $filename[
"tgt"];
960 $filename = $filename[
"src"];
962 $late = $filename[
"late"];
963 $filename = $filename[
"src"];
966 $newFilename = trim($filename);
967 $pos = strpos($newFilename,
"_");
968 if ($pos !==
false) {
969 $newFilename = substr($newFilename, $pos + 1);
972 $chkName = strtolower($newFilename);
973 if (array_key_exists($chkName, $duplicates)) {
974 $suffix = strrpos($newFilename,
".");
975 $newFilename = substr($newFilename, 0, $suffix) .
976 " (" . (++$duplicates[$chkName]) .
")" .
977 substr($newFilename, $suffix);
979 $duplicates[$chkName] = 1;
983 $newFilename = $lng->
txt(
"exc_late_submission") .
" - " .
989 $newFilename = $tmpdir . DIRECTORY_SEPARATOR . $deliverFilename . DIRECTORY_SEPARATOR . $newFilename;
991 $oldFilename = $pathname . DIRECTORY_SEPARATOR .
$filename;
992 if (!copy($oldFilename, $newFilename)) {
993 echo
'Could not copy ' . $oldFilename .
' to ' . $newFilename;
995 touch($newFilename, filectime($oldFilename));
997 $deliverFilename . DIRECTORY_SEPARATOR . basename($newFilename)
1024 $lng = $DIC->language();
1032 $savepath = $storage->getAbsoluteSubmissionPath();
1040 if (!is_dir($savepath)) {
1046 $tmpdir = $storage->getTempPath();
1052 foreach (array_keys($members) as
$id) {
1053 $directory = $savepath . DIRECTORY_SEPARATOR .
$id;
1056 if ($dirsize > disk_free_space($tmpdir)) {
1060 $ass_type = $a_ass->
getType();
1069 $team_dirs = array();
1072 foreach ($members as $id => $item) {
1073 $user_files = $item[
"files"] ?? null;
1074 $sourcedir = $savepath . DIRECTORY_SEPARATOR .
$id;
1075 if (!is_dir($sourcedir)) {
1081 if (is_array($team_map) &&
1082 array_key_exists($id, $team_map)) {
1083 $team_id = $team_map[
$id];
1084 if (!array_key_exists($team_id, $team_dirs)) {
1085 $team_dir = $lng->
txt(
"exc_team") .
" " . $team_id;
1087 $team_dirs[$team_id] = $team_dir;
1089 $team_dir = $team_dirs[$team_id] . DIRECTORY_SEPARATOR;
1096 if ($targetdir ==
"") {
1100 $targetdir = self::getDirectoryNameFromUserData($id);
1102 $targetdir = $team_dir . $targetdir;
1106 $log->debug(
"Creation target directory: " . $targetdir);
1109 $log->debug(
"Scanning source directory: " . $sourcedir);
1110 $sourcefiles = scandir($sourcedir);
1111 $duplicates = array();
1112 foreach ($sourcefiles as $sourcefile) {
1113 if ($sourcefile ==
"." || $sourcefile ==
"..") {
1117 $targetfile = trim(basename($sourcefile));
1118 $pos = strpos($targetfile,
"_");
1119 if ($pos !==
false) {
1120 $targetfile = substr($targetfile, $pos + 1);
1123 if ($a_ass->
getAssignmentType()->getSubmissionType() == self::TYPE_REPO_OBJECT) {
1126 $targetfile = $obj_type .
"_" . $obj_id .
".zip";
1131 if (array_key_exists($targetfile, $duplicates)) {
1132 $suffix = strrpos($targetfile,
".");
1133 $targetfile = substr($targetfile, 0, $suffix) .
1134 " (" . (++$duplicates[$targetfile]) .
")" .
1135 substr($targetfile, $suffix);
1137 $duplicates[$targetfile] = 1;
1141 if (isset($user_files)) {
1142 foreach ($user_files as $file) {
1143 if (basename($file[
"filename"]) == $sourcefile) {
1144 if ($file[
"late"]) {
1145 $targetfile = $lng->
txt(
"exc_late_submission") .
" - " .
1154 $targetfile = $targetdir . DIRECTORY_SEPARATOR . $targetfile;
1155 $sourcefile = $sourcedir . DIRECTORY_SEPARATOR . $sourcefile;
1157 $log->debug(
"Copying: " . $sourcefile .
" -> " . $targetfile);
1159 if (!copy($sourcefile, $targetfile)) {
1160 throw new ilExerciseException(
"Could not copy " . basename($sourcefile) .
" to '" . $targetfile .
"'.");
1163 touch($targetfile, filectime($sourcefile));
1168 $log->debug(
"Unzipping: " . $targetfile);
1169 $log->debug(
"Current directory is: " . getcwd());
1172 unlink($targetfile);
1182 $path_final_zip_file = $to_path . DIRECTORY_SEPARATOR . $tmpzipfile;
1184 if (file_exists($tmpdir . DIRECTORY_SEPARATOR . $tmpzipfile)) {
1185 copy($tmpzipfile, $path_final_zip_file);
1193 unlink($path_final_zip_file);
1202 bool $a_team_mode =
false 1206 if ($this->
getAssignment()->getAssignmentType()->isSubmissionAssignedToTeam()) {
1207 $team_id = $this->
getTeam()->getId();
1208 $where =
" team_id = " .
$ilDB->quote($team_id,
"integer") .
" ";
1211 $where =
" " .
$ilDB->in(
"user_id", $this->
getUserIds(),
"",
"integer") .
" ";
1213 $where =
" user_id = " .
$ilDB->quote($this->
getUserId(),
"integer");
1228 $ilDB->setLimit(1, 0);
1230 $q =
"SELECT obj_id,user_id,ts FROM exc_returned" .
1231 " WHERE ass_id = " .
$ilDB->quote($this->assignment->getId(),
"integer") .
1233 " AND (filename IS NOT NULL OR atext IS NOT NULL)" .
1234 " AND ts IS NOT NULL" .
1235 " ORDER BY ts DESC";
1236 $usr_set =
$ilDB->query($q);
1237 $array =
$ilDB->fetchAssoc($usr_set);
1238 return ($array[
"ts"] ?? null);
1247 $this->db->setLimit(1, 0);
1249 $q =
"SELECT web_dir_access_time FROM exc_returned" .
1250 " WHERE ass_id = " . $this->db->quote($this->assignment->getId(),
"integer") .
1251 " AND (filename IS NOT NULL OR atext IS NOT NULL)" .
1252 " AND web_dir_access_time IS NOT NULL" .
1254 " ORDER BY web_dir_access_time DESC";
1256 $res = $this->db->query($q);
1260 return $data[
"web_dir_access_time"] ?? null;
1275 string $a_text = null
1279 if ($this->
getAssignment()->getAssignmentType()->isSubmissionAssignedToTeam()) {
1281 $team_id = $this->
getTeam()->getId();
1295 throw new ilExerciseException(
"Repository object $a_wsp_id is already assigned to another assignment.");
1299 $next_id =
$ilDB->nextId(
"exc_returned");
1301 "INSERT INTO exc_returned " .
1302 "(returned_id, obj_id, user_id, filetitle, ass_id, ts, atext, late, team_id) " .
1303 "VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)",
1304 $ilDB->quote($next_id,
"integer"),
1305 $ilDB->quote($this->assignment->getExerciseId(),
"integer"),
1306 $ilDB->quote($user_id,
"integer"),
1307 $ilDB->quote($a_wsp_id,
"text"),
1308 $ilDB->quote($this->assignment->getId(),
"integer"),
1310 $ilDB->quote($a_text,
"text"),
1312 $ilDB->quote($team_id,
"integer")
1340 if (!trim($a_text)) {
1348 $files = array_shift($files);
1349 $id = $files[
"returned_id"];
1351 $ilDB->manipulate(
"UPDATE exc_returned" .
1352 " SET atext = " .
$ilDB->quote($a_text,
"text") .
1354 ", late = " .
$ilDB->quote($this->
isLate(),
"integer") .
1355 " WHERE returned_id = " .
$ilDB->quote(
$id,
"integer"));
1375 $result[
"files"][
"count"] =
"---";
1385 $result[
"last_submission"][
"txt"] = $lng->
txt(
"exc_last_submission");
1386 $result[
"last_submission"][
"value"] = $last_sub;
1389 $ilCtrl->setParameterByClass(
"ilexsubmissionfilegui",
"member_id", $this->
getUserId());
1392 switch ($this->assignment->getType()) {
1400 foreach ($all_files as $file) {
1401 if ($file[
"late"]) {
1407 $result[
"files"][
"txt"] = $lng->
txt(
"exc_files_returned");
1408 if ($late_files !== 0) {
1409 $result[
"files"][
"txt"] .=
' - <span class="warning">' . $lng->
txt(
"exc_late_submission") .
" (" . $late_files .
")</span>";
1411 $sub_cnt = count($all_files);
1414 $sub_cnt .=
" " . sprintf($lng->
txt(
"cnt_new"), count($new));
1417 $result[
"files"][
"count"] = $sub_cnt;
1421 $result[
"files"][
"download_url"] =
1422 $ilCtrl->getLinkTargetByClass(
"ilexsubmissionfilegui",
"downloadReturned");
1424 if (count($new) <= 0) {
1425 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_download_files");
1427 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_download_all_files");
1432 $result[
"files"][
"download_new_url"] =
1433 $ilCtrl->getLinkTargetByClass(
"ilexsubmissionfilegui",
"downloadNewReturned");
1435 $result[
"files"][
"download_new_txt"] = $lng->
txt(
"exc_tbl_action_download_new_files");
1441 $result[
"files"][
"txt"] = $lng->
txt(
"exc_blog_returned");
1443 if ($blogs !== []) {
1444 $blogs = array_pop($blogs);
1445 if ($blogs && substr($blogs[
"filename"], -1) !=
"/") {
1446 if ($blogs[
"late"]) {
1447 $result[
"files"][
"txt"] .=
' - <span class="warning">' . $lng->
txt(
"exc_late_submission") .
"</span>";
1450 $result[
"files"][
"count"] = 1;
1452 $result[
"files"][
"download_url"] =
1453 $ilCtrl->getLinkTargetByClass(
"ilexsubmissionfilegui",
"downloadReturned");
1455 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_download_files");
1461 $result[
"files"][
"txt"] = $lng->
txt(
"exc_portfolio_returned");
1463 if ($portfolios !== []) {
1464 $portfolios = array_pop($portfolios);
1465 if ($portfolios && substr($portfolios[
"filename"], -1) !=
"/") {
1466 if ($portfolios[
"late"]) {
1467 $result[
"files"][
"txt"] .=
' - <span class="warning">' . $lng->
txt(
"exc_late_submission") .
"</span>";
1470 $result[
"files"][
"count"] = 1;
1472 $result[
"files"][
"download_url"] =
1473 $ilCtrl->getLinkTargetByClass(
"ilexsubmissionfilegui",
"downloadReturned");
1475 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_download_files");
1481 $result[
"files"][
"txt"] = $lng->
txt(
"exc_files_returned_text");
1483 if ($files !== []) {
1484 $result[
"files"][
"count"] = 1;
1486 $files = array_shift($files);
1487 if (trim($files[
"atext"]) !==
'' && trim($files[
"atext"]) !==
'0') {
1488 if ($files[
"late"]) {
1489 $result[
"files"][
"txt"] .=
' - <span class="warning">' . $lng->
txt(
"exc_late_submission") .
"</span>";
1492 $result[
"files"][
"download_url"] =
1493 $ilCtrl->getLinkTargetByClass(
"ilexsubmissiontextgui",
"showAssignmentText");
1495 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_text_assignment_show");
1501 $result[
"files"][
"txt"] = $lng->
txt(
"exc_wiki_returned");
1504 $objs = array_pop($objs);
1505 if ($objs && substr($objs[
"filename"], -1) !=
"/") {
1506 if ($objs[
"late"]) {
1507 $result[
"files"][
"txt"] .=
' - <span class="warning">' . $lng->
txt(
"exc_late_submission") .
"</span>";
1510 $result[
"files"][
"count"] = 1;
1512 $result[
"files"][
"download_url"] =
1513 $ilCtrl->getLinkTargetByClass(
"ilexsubmissionfilegui",
"downloadReturned");
1515 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_download_files");
1521 $ilCtrl->setParameterByClass(
"ilexsubmissionfilegui",
"member_id",
"");
1531 array $a_assignment_types = array()
1535 $db = $DIC->database();
1537 $query =
"SELECT * FROM exc_returned r LEFT JOIN exc_assignment a" .
1538 " ON (r.ass_id = a.id) " .
1539 " WHERE r.filetitle = " . $db->
quote($a_filename,
"string");
1541 if (is_array($a_assignment_types) && $a_assignment_types !== []) {
1542 $query .=
" AND " . $db->
in(
"a.type", $a_assignment_types,
false,
"integer");
1559 trim($userName[
"lastname"]) .
"_" .
1560 trim($userName[
"firstname"]) .
"_" .
1561 trim($userName[
"login"]) .
"_" .
1562 $userName[
"user_id"]
1572 $ilDB = $DIC->database();
1574 $participants = array();
1575 $query =
"SELECT user_id FROM exc_returned WHERE ass_id = " .
1576 $ilDB->quote($a_ass_id,
"integer") .
1578 $ilDB->quote($a_exercise_id,
"integer");
1582 while ($row =
$ilDB->fetchAssoc(
$res)) {
1583 $participants[] = $row[
'user_id'];
1586 return $participants;
downloadFiles(array $a_file_ids=null, bool $a_only_new=false, bool $a_peer_review_mask_filename=false)
updateTextSubmission(string $a_text)
Handle text assignment submissions.
getFiles(array $a_file_ids=null, bool $a_only_valid=false, string $a_min_timestamp=null, bool $print_versions=false)
Get submission items (not only files)
removeTeamMember(int $a_user_id, ?int $a_exc_ref_id=null)
getType()
Get type this will most probably become an non public function in the future (or become obsolete) ...
static getLogger(string $a_component_id)
Get component logger.
static downloadAllAssignmentFiles(ilExAssignment $a_ass, array $members, string $to_path)
Download all submitted files of an assignment (all user)
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...
fetchAssoc(ilDBStatement $statement)
hasSubmittedPrintVersion()
static utf8_encode(string $string)
utf8-encodes string if it is not a valid utf8-string.
static processZipFile(string $a_directory, string $a_file, bool $structure)
static lookupTitle(int $a_id)
ilGlobalTemplateInterface $main_tpl
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
ilExcAssMemberState $state
static lookupType(int $a_id)
static _lookupName(int $a_user_id)
lookup user name
ilExPeerReview $peer_review
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getValidFilename(string $a_filename)
quote($value, string $type)
static escapeShellArg(string $a_arg)
static getInstanceByUserId(int $a_assignment_id, int $a_user_id, bool $a_create_on_demand=false)
processUploadedZipFile(string $fileTmp)
processes error handling etc for uploaded archive
const TYPE_UPLOAD
direct checks against const should be avoided, use type objects instead
static now()
Return current timestamp in Y-m-d H:i:s format.
getLastDownloadTime(array $a_user_ids)
static getAssignmentParticipants(int $a_exercise_id, int $a_ass_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static unzip(string $path_to_zip_file, bool $overwrite_existing=false, bool $unpack_flat=false)
static _lookupObjId(int $ref_id)
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)
downloadMultipleFiles(array $a_filenames, ?int $a_user_id, bool $a_multi_user=false)
__construct(ilExAssignment $a_ass, int $a_user_id, ilExAssignmentTeam $a_team=null, bool $a_is_tutor=false, bool $a_public_submissions=false)
const TEAM_LOG_REMOVE_FILE
getTableUserWhere(bool $a_team_mode=false)
addResourceObject(string $a_wsp_id, string $a_text=null)
Add personal resource or repository object (ref_id) to assigment.
static _lookupTitle(int $obj_id)
static recursive_dirscan(string $dir, array &$arr)
Recursively scans a given directory and writes path and filename into referenced array.
static dirsize(string $directory)
get size of a directory or a file.
getDownloadedFilesInfoForTableGUIS()
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
ilExAssignment $assignment
static getInstanceByIds(int $a_ass_id, int $a_user_id=0)
getLastSubmission()
TODO -> get rid of getTableUserWhere and move to repository class Get the date of the last submission...
static lookupExerciseIdForReturnedId(int $a_returned_id)
Get exercise from submission id (used in ilObjMediaObject)
query(string $query)
Run a (read-only) Query on the database.
static getAssignmentFilesByUsers(int $a_exc_id, int $a_ass_id, array $a_users)
static getAssignmentTeamMap(int $a_ass_id)
getLastOpeningHTMLView()
TODO -> get rid of getTableUserWhere and move to repository class Get a mysql timestamp from the last...
static getDirectoryNameFromUserData(int $a_user_id)
in(string $field, array $values, bool $negate=false, string $type="")
static getInstancesByExercise(int $a_exc_id)
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
uploadFile(array $a_http_post_files, bool $unzip=false)
Save submitted file of user.
create()
Create directory.
isSubmissionAssignedToTeam()
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
ilExAssignmentTypes $ass_types
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilExAssignmentTypeInterface $ass_type
static deleteUser(int $a_exc_id, int $a_user_id)
Delete all delivered files of user.
lookupNewFiles(int $a_tutor=null)
Check how much files have been uploaded by the learner after the last download of the tutor...
static _lookupType(int $id, bool $reference=false)
isInTeam(int $a_user_id=null)
static findUserFiles(int $a_user_id, string $a_filetitle)
Check if given file was assigned Used in Blog/Portfolio.
downloadSingleFile(int $a_user_id, string $filename, string $filetitle, int $a_team_id=0)
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)
updateTutorDownloadTime()
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
deleteSelectedFiles(array $file_id_array)
Deletes already delivered files.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getSubmissionsForFilename(string $a_filename, array $a_assignment_types=array())
Get assignment return entries for a filename.