34 protected \ILIAS\Exercise\Submission\SubmissionManager
$sub_manager;
35 protected \ILIAS\Exercise\InternalDomainService
$domain;
56 bool $a_is_tutor =
false,
57 bool $a_public_submissions =
false 60 $this->main_tpl = $DIC->ui()->mainTemplate();
62 $this->
user = $DIC->user();
63 $this->db = $DIC->database();
64 $this->
lng = $DIC->language();
65 $this->
ctrl = $DIC->ctrl();
67 $this->assignment = $a_ass;
71 $this->user_id = $a_user_id;
72 $this->is_tutor = $a_is_tutor;
73 $this->public_submissions = $a_public_submissions;
82 $this->team = $a_team;
86 if ($this->assignment->getPeerReview()) {
89 $this->domain = $DIC->exercise()->internal()->domain();
90 $this->sub_manager = $DIC->exercise()->internal()->domain()->submission(
97 return $this->assignment->getAssignmentType()->getSubmissionType();
122 if ($this->peer_review) {
123 $valid = $this->peer_review->isFeedbackValidForPassed($user_id);
140 return $this->team->getMembers();
144 return array($this->user_id);
153 return "t" . $this->team->getId();
161 return (
bool) $this->sub_manager->getSubmissionsOfUser(
175 return $this->sub_manager->getSubmissionsOfUser(
186 return $this->sub_manager->getSubmissionsOfUser($this->
getUserId())->current();
192 $this->state->isSubmissionAllowed());
202 $this->public_submissions) {
207 if ($this->peer_review) {
209 foreach ($this->peer_review->getPeerReviewsByPeerId($this->getUserId()) as $giver) {
210 if ($giver[
"giver_id"] == $ilUser->getId()) {
226 if ($this->assignment->hasTeam() &&
227 !$this->team->getId()) {
238 $a_user_id = $ilUser->
getId();
240 return in_array($a_user_id, $this->
getUserIds());
247 return ($ilUser->getId() == $this->
getUserId());
252 return ($this->peer_review &&
253 $this->peer_review->hasPeerReviewAccess($this->user_id));
263 $cnt_sub = $this->sub_manager->countSubmissionsOfUser(
281 $dl = $this->state->getOfficialDeadline();
283 return ($dl && $dl < time());
288 if ($this->ass_type->isSubmissionAssignedToTeam()) {
289 $storage_id = $this->
getTeam()->getId();
311 $q =
"SELECT exc_returned.returned_id AS id " .
312 "FROM exc_usr_tutor, exc_returned " .
313 "WHERE exc_returned.ass_id = exc_usr_tutor.ass_id " .
314 " AND exc_returned.user_id = exc_usr_tutor.usr_id " .
317 " AND exc_usr_tutor.tutor_id = " .
$ilDB->quote($tutor,
"integer") .
318 " AND exc_usr_tutor.download_time < exc_returned.ts ";
320 $new_up_set =
$ilDB->query(
$q);
323 while ($new_up_rec =
$ilDB->fetchAssoc($new_up_set)) {
324 $new_up[] = $new_up_rec[
"id"];
338 $ilDB = $DIC->database();
340 $set =
$ilDB->query(
"SELECT obj_id" .
341 " FROM exc_returned" .
342 " WHERE returned_id = " .
$ilDB->quote($a_returned_id,
"integer"));
343 $row =
$ilDB->fetchAssoc($set);
344 return (
int) $row[
"obj_id"];
357 $ilDB = $DIC->database();
359 $set =
$ilDB->query(
"SELECT obj_id, ass_id" .
360 " FROM exc_returned" .
361 " WHERE user_id = " .
$ilDB->quote($a_user_id,
"integer") .
362 " AND filetitle = " .
$ilDB->quote($a_filetitle,
"text"));
364 while ($row =
$ilDB->fetchAssoc($set)) {
365 $res[$row[
"ass_id"]] = $row;
372 $this->sub_manager->deleteAllSubmissionsOfUser($this->
getUserId());
447 $db = $DIC->database();
450 $submission =
new self($ass, $a_user_id);
451 $submission->deleteAllFiles();
454 $team = $submission->getTeam();
460 $member_status = $ass->getMemberStatus($a_user_id);
461 $member_status->setStatus(
"notgraded");
462 $member_status->update();
465 "DELETE FROM exc_usr_tutor " .
466 "WHERE ass_id = %s AND usr_id = %s",
467 array(
"integer",
"integer"),
468 array($ass->getId(), $a_user_id)
483 $q =
"SELECT download_time FROM exc_usr_tutor WHERE " .
485 $ilDB->in(
"usr_id", $a_user_ids,
"",
"integer") .
" AND " .
486 " tutor_id = " .
$ilDB->quote($ilUser->getId(),
"integer") .
487 " ORDER BY download_time DESC";
489 $lu_rec =
$ilDB->fetchAssoc($lu_set);
490 return $lu_rec[
"download_time"] ??
"";
493 public function downloadFiles(
494 ?array $a_file_ids =
null,
495 bool $a_only_new =
false,
496 bool $a_peer_review_mask_filename =
false 502 $is_team = $this->assignment->hasTeam();
504 $download_time =
null;
509 if ($this->is_tutor) {
513 if ($a_peer_review_mask_filename) {
516 foreach ($this->peer_review->getPeerReviewsByGiver($ilUser->getId()) as $idx => $item) {
517 if ($item[
"peer_id"] == $this->
getUserId()) {
526 $subs = iterator_to_array($this->sub_manager->getSubmissionsOfUser(
533 if (count($subs) > 0) {
534 if (count($subs) == 1) {
536 $sub = current($subs);
538 $title = $sub->getTitle();
540 switch ($this->assignment->getType()) {
545 $this->assignment->getTitle() .
" - " .
546 $name[
"firstname"] .
" " .
547 $name[
"lastname"] .
" (" .
548 $name[
"login"] .
").zip";
554 $this->assignment->getTitle() .
" (Team " . $this->
getTeam()->getId() .
").zip";
561 if ($a_peer_review_mask_filename) {
562 $title_a = explode(
".", $sub->getTitle());
563 $suffix = array_pop($title_a);
564 $title = $this->assignment->getTitle() .
"_peer" . $peer_id .
"." . $suffix;
565 } elseif ($sub->getLate()) {
566 $title = $lng->
txt(
"exc_late_submission") .
" - " .
572 $this->sub_manager->deliverSubmissions(
575 $a_peer_review_mask_filename,
592 $exc_id = $this->assignment->getExerciseId();
593 $ass_id = $this->assignment->getId();
597 "DELETE FROM exc_usr_tutor " .
598 "WHERE ass_id = %s AND usr_id = %s AND tutor_id = %s",
599 array(
"integer",
"integer",
"integer"),
600 array(
$ass_id, $user_id, $ilUser->getId())
604 "INSERT INTO exc_usr_tutor (ass_id, obj_id, usr_id, tutor_id, download_time) VALUES " .
605 "(%s, %s, %s, %s, %s)",
606 array(
"integer",
"integer",
"integer",
"integer",
"timestamp"),
616 $this->domain->submission($this->assignment->getId())->deliverFile(
628 if ($this->
getAssignment()->getAssignmentType()->isSubmissionAssignedToTeam()) {
629 $team_id = $this->
getTeam()->getId();
630 $where =
" team_id = " .
$ilDB->quote($team_id,
"integer") .
" ";
632 $where =
" " .
$ilDB->in(
"user_id", $this->
getUserIds(),
"",
"integer") .
" ";
646 $ilDB->setLimit(1, 0);
648 $q =
"SELECT obj_id,user_id,ts FROM exc_returned" .
649 " WHERE ass_id = " .
$ilDB->quote($this->assignment->getId(),
"integer") .
651 " AND (filename IS NOT NULL OR atext IS NOT NULL)" .
652 " AND ts IS NOT NULL" .
655 $array =
$ilDB->fetchAssoc($usr_set);
656 return ($array[
"ts"] ??
null);
665 $this->db->setLimit(1, 0);
667 $q =
"SELECT web_dir_access_time FROM exc_returned" .
668 " WHERE ass_id = " . $this->db->quote($this->assignment->getId(),
"integer") .
669 " AND (filename IS NOT NULL OR atext IS NOT NULL)" .
670 " AND web_dir_access_time IS NOT NULL" .
672 " ORDER BY web_dir_access_time DESC";
674 $res = $this->db->query(
$q);
678 return $data[
"web_dir_access_time"] ??
null;
693 ?
string $a_text =
null 697 if ($this->
getAssignment()->getAssignmentType()->isSubmissionAssignedToTeam()) {
699 $team_id = $this->
getTeam()->getId();
713 throw new ilExerciseException(
"Repository object $a_wsp_id is already assigned to another assignment.");
717 $next_id =
$ilDB->nextId(
"exc_returned");
719 "INSERT INTO exc_returned " .
720 "(returned_id, obj_id, user_id, filetitle, ass_id, ts, atext, late, team_id) " .
721 "VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)",
722 $ilDB->quote($next_id,
"integer"),
723 $ilDB->quote($this->assignment->getExerciseId(),
"integer"),
724 $ilDB->quote($user_id,
"integer"),
725 $ilDB->quote($a_wsp_id,
"text"),
726 $ilDB->quote($this->assignment->getId(),
"integer"),
728 $ilDB->quote($a_text,
"text"),
730 $ilDB->quote($team_id,
"integer")
732 $ilDB->manipulate($query);
756 if (!trim($a_text)) {
757 $this->sub_manager->deleteAllSubmissionsOfUser($this->
getUserId());
761 $sub = $this->sub_manager->getSubmissionsOfUser($this->
getUserId())->current();
768 $ilDB->manipulate(
"UPDATE exc_returned" .
769 " SET atext = " .
$ilDB->quote($a_text,
"text") .
771 ", late = " .
$ilDB->quote($this->
isLate(),
"integer") .
772 " WHERE returned_id = " .
$ilDB->quote(
$id,
"integer"));
786 public function getDownloadedFilesInfoForTableGUIS(): array
792 $result[
"files"][
"count"] =
"---";
802 $result[
"last_submission"][
"txt"] = $lng->
txt(
"exc_last_submission");
803 $result[
"last_submission"][
"value"] = $last_sub;
806 $ilCtrl->setParameterByClass(
"ilexsubmissionfilegui",
"member_id", $this->
getUserId());
809 switch ($this->assignment->getType()) {
815 $subs = $this->sub_manager->getSubmissionsOfUser($this->
getUserId());
818 foreach ($subs as $sub) {
819 if ($sub->getLate()) {
826 $result[
"files"][
"txt"] = $lng->
txt(
"exc_files_returned");
827 if ($late_files !== 0) {
828 $result[
"files"][
"txt"] .=
' - <span class="warning">' . $lng->
txt(
"exc_late_submission") .
" (" . $late_files .
")</span>";
833 $sub_cnt .=
" " . sprintf($lng->
txt(
"cnt_new"), count($new));
836 $result[
"files"][
"count"] = $sub_cnt;
840 $result[
"files"][
"download_url"] =
841 $ilCtrl->getLinkTargetByClass(
"ilexsubmissionfilegui",
"downloadReturned");
843 if (count($new) <= 0) {
844 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_download_files");
846 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_download_all_files");
851 $result[
"files"][
"download_new_url"] =
852 $ilCtrl->getLinkTargetByClass(
"ilexsubmissionfilegui",
"downloadNewReturned");
854 $result[
"files"][
"download_new_txt"] = $lng->
txt(
"exc_tbl_action_download_new_files");
860 $result[
"files"][
"txt"] = $lng->
txt(
"exc_blog_returned");
862 $sub = $this->sub_manager->getSubmissionsOfUser($this->
getUserId())->current();
864 if ($sub->getRid() !=
"") {
865 if ($sub->getLate()) {
866 $result[
"files"][
"txt"] .=
' - <span class="warning">' . $lng->
txt(
"exc_late_submission") .
"</span>";
869 $result[
"files"][
"count"] = 1;
871 $result[
"files"][
"download_url"] =
872 $ilCtrl->getLinkTargetByClass(
"ilexsubmissionfilegui",
"downloadReturned");
874 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_download_files");
880 $result[
"files"][
"txt"] = $lng->
txt(
"exc_portfolio_returned");
882 $sub = $this->sub_manager->getSubmissionsOfUser($this->
getUserId())->current();
884 if ($sub->getRid() !=
"") {
885 if ($sub->getLate()) {
886 $result[
"files"][
"txt"] .=
' - <span class="warning">' . $lng->
txt(
"exc_late_submission") .
"</span>";
889 $result[
"files"][
"count"] = 1;
891 $result[
"files"][
"download_url"] =
892 $ilCtrl->getLinkTargetByClass(
"ilexsubmissionfilegui",
"downloadReturned");
894 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_download_files");
900 $result[
"files"][
"txt"] = $lng->
txt(
"exc_files_returned_text");
901 $sub = $this->sub_manager->getSubmissionsOfUser($this->
getUserId())->current();
903 $result[
"files"][
"count"] = 1;
905 if (trim($sub->getText()) !==
'' && trim($sub->getText()) !==
'0') {
906 if ($sub->getLate()) {
907 $result[
"files"][
"txt"] .=
' - <span class="warning">' . $lng->
txt(
"exc_late_submission") .
"</span>";
910 $result[
"files"][
"download_url"] =
911 $ilCtrl->getLinkTargetByClass(
"ilexsubmissiontextgui",
"showAssignmentText");
913 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_text_assignment_show");
919 $result[
"files"][
"txt"] = $lng->
txt(
"exc_wiki_returned");
920 $sub = $this->sub_manager->getSubmissionsOfUser($this->
getUserId())->current();
922 if ($sub->getRid() !=
"") {
923 if ($sub->getLate()) {
924 $result[
"files"][
"txt"] .=
' - <span class="warning">' . $lng->
txt(
"exc_late_submission") .
"</span>";
927 $result[
"files"][
"count"] = 1;
929 $result[
"files"][
"download_url"] =
930 $ilCtrl->getLinkTargetByClass(
"ilexsubmissionfilegui",
"downloadReturned");
932 $result[
"files"][
"download_txt"] = $lng->
txt(
"exc_tbl_action_download_files");
938 $ilCtrl->setParameterByClass(
"ilexsubmissionfilegui",
"member_id",
"");
948 array $a_assignment_types = array()
952 $db = $DIC->database();
954 $query =
"SELECT * FROM exc_returned r LEFT JOIN exc_assignment a" .
955 " ON (r.ass_id = a.id) " .
956 " WHERE r.filetitle = " . $db->
quote($a_filename,
"string");
958 if (is_array($a_assignment_types) && $a_assignment_types !== []) {
959 $query .=
" AND " . $db->
in(
"a.type", $a_assignment_types,
false,
"integer");
962 $set = $db->
query($query);
979 trim($userName[
"lastname"]) .
"_" .
980 trim($userName[
"firstname"]) .
"_" .
981 trim($userName[
"login"]) .
"_" .
992 $ilDB = $DIC->database();
994 $participants = array();
995 $query =
"SELECT user_id FROM exc_returned WHERE ass_id = " .
996 $ilDB->quote($a_ass_id,
"integer") .
998 $ilDB->quote($a_exercise_id,
"integer");
1002 while ($row =
$ilDB->fetchAssoc(
$res)) {
1003 $participants[] = $row[
'user_id'];
1006 return $participants;
1010 string $a_directory,
1016 $lng = $DIC->language();
1018 $pathinfo = pathinfo($a_file);
1019 $file = $pathinfo[
"basename"];
1022 if (($pathinfo[
"extension"] ??
'') ===
'') {
1030 $DIC->legacyArchives()->unzip(
1031 $a_directory .
"/" . $file,
1037 unlink($a_directory .
"/" . $file);
1045 if (empty($filearray)) {
1047 $lng->
txt(
"archive_broken"),
1053 foreach ($filearray[
"file"] as $key => $value) {
1055 if (substr($value, 0, 1) ==
"." || stristr(
1056 $filearray[
"path"][$key],
1059 unlink($filearray[
"path"][$key] . $value);
1060 unset($filearray[
"path"][$key]);
1061 unset($filearray[
"file"][$key]);
1068 unlink($filearray[
'path'][$key]);
1070 $lng->
txt(
"file_is_infected") .
"<br />" . $vir[1],
1073 } elseif ($vir[1] !=
"") {
1084 foreach (array_count_values($filearray[
"file"]) as $key => $value) {
1086 if ($value !=
"1") {
1090 if (strlen($doublettes) > 0) {
1092 $lng->
txt(
"exc_upload_error") .
"<br />" . $lng->
txt(
1093 "zip_structure_error" 1099 $mac_dir = $a_directory .
"/__MACOSX";
1100 if (file_exists($mac_dir)) {
lookupNewFiles(?int $a_tutor=null)
Check how much files have been uploaded by the learner after the last download of the tutor...
updateTextSubmission(string $a_text)
Handle text assignment submissions.
removeTeamMember(int $a_user_id, ?int $a_exc_ref_id=null)
addResourceObject(string $a_wsp_id, ?string $a_text=null)
Add personal resource or repository object (ref_id) to assigment.
getFeedbackId()
used for the legacy storage path of feedbacks only
manipulateF(string $query, array $types, array $values)
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)
static virusHandling(string $a_file, string $a_orig_name='', bool $a_clean=true)
ilGlobalTemplateInterface $main_tpl
ilExcAssMemberState $state
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...
isInTeam(?int $a_user_id=null)
quote($value, string $type)
static getInstanceByUserId(int $a_assignment_id, int $a_user_id, bool $a_create_on_demand=false)
static processZipFile(string $a_directory, string $a_file, bool $structure)
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...
getSubmittedEntry(bool $print=false)
downloadSingleFile(Submission $sub, string $title)
static getASCIIFilename(string $a_filename)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ILIAS Exercise InternalDomainService $domain
static _lookupTitle(int $obj_id)
ILIAS Exercise Submission SubmissionManager $sub_manager
static recursive_dirscan(string $dir, array &$arr)
Recursively scans a given directory and writes path and filename into referenced array.
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...
$structure
TOTAL STRUCTURE.
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 moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
__construct(ilExAssignment $a_ass, int $a_user_id, ?ilExAssignmentTeam $a_team=null, bool $a_is_tutor=false, bool $a_public_submissions=false)
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 int $INFECTED_FILE
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
ilExAssignmentTypes $ass_types
Exercise submission //TODO: This class has many static methods related to delivered "files"...
ilExAssignmentTypeInterface $ass_type
static deleteUser(int $a_exc_id, int $a_user_id)
Deletes already delivered files.
static int $DOUBLETTES_FOUND
static findUserFiles(int $a_user_id, string $a_filetitle)
Check if given file was assigned Used in Blog/Portfolio.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
updateTutorDownloadTime()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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.