65 $this->
lng = $DIC->language();
66 $this->
lng->loadLanguageModule(
'exc');
68 $this->ass_types_with_files = array(
75 $this->
logger = $DIC->logger()->exc();
115 $this->exercise_id = $input[0]->getValue();
116 $this->exercise_ref_id = $input[1]->getValue();
117 $assignment_id = $input[2]->getValue();
118 $participant_id = $input[3]->getValue();
119 $this->user_id = $input[4]->getValue();
120 $final_directory =
"";
123 if ($assignment_id > 0) {
128 if ($participant_id > 0) {
131 foreach ($assignments as $assignment) {
138 $out->setValue($final_directory);
148 $dir = $this->target_directory .
"/" . $a_directory;
154 copy($a_file, $dir .
"/" . basename($a_file));
174 foreach ($this->title_columns as $title) {
175 $this->excel->setCell(1, $col, $title);
195 $path = $this->temp_dir . DIRECTORY_SEPARATOR;
196 if ($this->participant_id > 0) {
198 $path .= $user_dir . DIRECTORY_SEPARATOR;
209 $this->
logger->dump(
"lang key => " . $this->
lng->getLangKey());
210 $this->submissions_directory = $this->target_directory . DIRECTORY_SEPARATOR . $this->
lng->txt(
"exc_ass_submission_zip");
222 public function collectSubmissionFiles():
void 228 if ($this->participant_id > 0) {
229 $exc_members_id = array($this->participant_id);
231 $exc_members_id =
$exercise->members_obj->getMembers();
235 $exc_members_id = $filter->filterParticipantsByAccess();
237 foreach ($exc_members_id as $member_id) {
239 $submission->updateTutorDownloadTime();
244 foreach ($submission->getFiles() as $file) {
245 $members[$file[
"user_id"]][
"files"][$file[
"returned_id"]] = $file;
250 $members[$member_id][
"name"] = $tmp_obj->getFirstname() .
" " . $tmp_obj->getLastname();
272 protected function addCriteriaToExcel(
278 $submission =
new ilExSubmission($this->assignment, $participant_id);
283 $values = $submission->getPeerReview()->getPeerReviewValues($feedback_giver, $participant_id);
285 foreach ($this->criteria_items as $item) {
289 $crit_id = $item->getId();
290 $crit_type = $item->getType();
291 $crit_title = $item->getTitle();
292 if ($crit_title ==
"") {
293 $crit_title = $item->getTranslatedType();
296 if (!in_array($crit_title, $this->title_columns)) {
297 $this->title_columns[] = $crit_title;
299 switch ($crit_type) {
301 if ($values[$crit_id] == 1) {
302 $this->excel->setCell($row, $col, $this->
lng->txt(
"yes"));
303 } elseif ($values[$crit_id] == -1) {
304 $this->excel->setCell($row, $col, $this->
lng->txt(
"no"));
318 $sub_obj_type =
"peer";
320 $sub_obj_type .=
"_" . $crit_id;
323 $this->assignment->getId(),
329 if ($rating_int = round((
int) $rating)) {
330 $this->excel->setCell($row, $col, $rating_int);
336 $this->excel->setCell($row, $col, $values[$crit_id]);
338 $this->excel->setCell($row, $col, $values[
'text']);
348 $crit_file_obj->setPeerReviewContext($this->assignment, $feedback_giver, $participant_id);
349 $files = $crit_file_obj->getFiles();
351 $extra_crit_column = 0;
352 foreach ($files as $file) {
353 if ($extra_crit_column !== 0) {
354 $this->title_columns[] = $crit_title .
"_" . $extra_crit_column;
356 $extra_crit_column++;
359 $this->excel->setCell($row, $col,
"./" . $dir . DIRECTORY_SEPARATOR . basename($file));
360 $this->excel->addLink($row, $col,
'./' . $dir . DIRECTORY_SEPARATOR . basename($file));
361 $this->excel->setColors($this->excel->getCoordByColumnAndRow($col, $row), self::BG_COLOR, self::LINK_COLOR);
373 $dir = self::FBK_DIRECTORY . DIRECTORY_SEPARATOR .
386 $ilDB = $DIC->database();
389 if ($this->participant_id > 0) {
393 $query =
"SELECT MAX(max_num) AS max" .
394 " FROM (SELECT COUNT(user_id) AS max_num FROM exc_returned" .
395 " WHERE obj_id=" . $a_obj_id .
". AND ass_id=" . $a_ass_id . $and .
" AND mimetype IS NOT NULL" .
396 " GROUP BY user_id) AS COUNTS";
399 $row =
$ilDB->fetchAssoc($set);
400 return (
int) $row[
'max'];
407 array $a_submission_file
409 $user_id = $a_submission_file[
'user_id'];
412 $filepath =
'./' . $this->
lng->txt(
"exc_ass_submission_zip") . DIRECTORY_SEPARATOR . $targetdir . DIRECTORY_SEPARATOR;
413 switch ($this->assignment->getType()) {
415 $filepath .= $a_submission_file[
'filetitle'];
421 if (!$wsp_tree->getRootId()) {
422 $wsp_tree->createTreeForUser($user_id);
424 $node = $wsp_tree->getNodeData((
int) $a_submission_file[
'filetitle']);
425 $filepath .=
"blog_" . $node[
'obj_id'] . DIRECTORY_SEPARATOR .
"index.html";
429 $filepath .=
"prt_" . $a_submission_file[
'filetitle'] . DIRECTORY_SEPARATOR .
"index.html";
435 $this->excel->addLink($a_row, $a_col, $filepath);
449 $ass_has_feedback =
false;
450 $ass_has_criteria =
false;
454 $assignment_type = $this->assignment->getType();
460 if (!isset($this->temp_dir)) {
466 if (in_array($assignment_type, $this->ass_types_with_files)) {
468 $this->collectSubmissionFiles();
471 $first_excel_column_for_review = 0;
474 if ($this->assignment->getPeerReview()) {
475 $ass_has_feedback =
true;
479 $first_excel_column_for_review = self::FIRST_DEFAULT_REVIEW_COLUMN;
482 if ($this->
isExcelNeeded($assignment_type, $ass_has_feedback)) {
487 $this->excel->addSheet($this->sanitized_title);
491 $this->title_columns = array(
492 $this->
lng->txt(
'lastname'),
493 $this->
lng->txt(
'firstname'),
494 $this->
lng->txt(
'login'),
495 $this->
lng->txt(
'exc_last_submission')
497 switch ($assignment_type) {
499 $this->title_columns[] = $this->
lng->txt(
"exc_submission_text");
504 $first_excel_column_for_review++;
505 $this->title_columns[] = $this->
lng->txt(
"exc_team");
508 if ($num_columns_submission > 1) {
509 for (
$i = 1;
$i <= $num_columns_submission;
$i++) {
510 $this->title_columns[] = $this->
lng->txt(
"exc_submission_file") .
" " .
$i;
513 $this->title_columns[] = $this->
lng->txt(
"exc_submission_file");
516 $first_excel_column_for_review += $num_columns_submission - 1;
519 $this->title_columns[] = $this->
lng->txt(
"exc_submission");
522 if ($ass_has_feedback) {
523 $this->title_columns[] = $this->
lng->txt(
"exc_peer_review_giver");
524 $this->title_columns[] = $this->
lng->txt(
'exc_last_submission');
529 if ($this->criteria_items = $this->assignment->getPeerReviewCriteriaCatalogueItems()) {
530 $ass_has_criteria =
true;
533 if ($this->participant_id > 0) {
534 $participants = array($this->participant_id);
540 $participants = $filter->filterParticipantsByAccess();
544 foreach ($participants as $participant_id) {
545 $submission =
new ilExSubmission($this->assignment, $participant_id);
546 $submission_files = $submission->getFiles();
548 if ($submission_files !== []) {
550 $this->excel->setCell($row, self::PARTICIPANT_LASTNAME_COLUMN, $participant_name[
'lastname']);
551 $this->excel->setCell($row, self::PARTICIPANT_FIRSTNAME_COLUMN, $participant_name[
'firstname']);
552 $this->excel->setCell($row, self::PARTICIPANT_LOGIN_COLUMN, $participant_name[
'login']);
555 if (!in_array($assignment_type, $this->ass_types_with_files)) {
556 foreach ($submission_files as $submission_file) {
557 $this->excel->setCell($row, self::SUBMISSION_DATE_COLUMN, $submission_file[
'timestamp']);
558 $this->excel->setCell($row, self::FIRST_DEFAULT_SUBMIT_COLUMN, $submission_file[
'atext']);
561 $col = self::FIRST_DEFAULT_SUBMIT_COLUMN;
564 $this->excel->setCell($row, $col, (
string) $team_id);
567 foreach ($submission_files as $submission_file) {
568 $this->excel->setCell($row, self::SUBMISSION_DATE_COLUMN, $submission_file[
'timestamp']);
571 $this->excel->setCell($row, $col, $this->
lng->txt(
"open"));
573 $this->excel->setCell($row, $col, $submission_file[
'filetitle']);
575 $this->excel->setColors($this->excel->getCoordByColumnAndRow($col, $row), self::BG_COLOR, self::LINK_COLOR);
577 $this->
addLink($row, $col, $submission_file);
583 if ($ass_has_feedback) {
584 if ($col < $first_excel_column_for_review) {
585 $col = $first_excel_column_for_review;
588 if ($peer_review !== null) {
589 $reviews = $peer_review->getPeerReviewsByPeerId($participant_id);
593 $current_review_row = 0;
594 foreach ($reviews as $review) {
596 if ($review[
'tstamp']) {
597 $current_review_row++;
598 if ($current_review_row > 1) {
599 for (
$i = 0;
$i < $first_excel_column_for_review;
$i++) {
600 $cell_to_copy = $this->excel->getCell($row,
$i);
601 $this->excel->setCell($row + 1,
$i, $cell_to_copy);
602 if (
$i >= self::FIRST_DEFAULT_SUBMIT_COLUMN) {
603 $this->excel->setColors($this->excel->getCoordByColumnAndRow(
$i, $row + 1), self::BG_COLOR, self::LINK_COLOR);
609 $feedback_giver = $review[
'giver_id'];
613 $this->excel->setCell(
616 $feedback_giver_name[
'lastname'] .
", " . $feedback_giver_name[
'firstname'] .
" [" . $feedback_giver_name[
'login'] .
"]" 619 $this->excel->setCell($row, $col + 1, $review[
'tstamp']);
621 if ($ass_has_criteria) {
622 $this->addCriteriaToExcel($feedback_giver, $participant_id, $row, $col + 1);
633 $this->excel->writeToFile($this->target_directory .
"/" . $this->sanitized_title);
645 $ilDB = $DIC->database();
648 $set =
$ilDB->query(
"SELECT usr_id" .
649 " FROM exc_mem_ass_status" .
650 " WHERE ass_id = " .
$ilDB->quote($this->assignment->getId(),
"integer"));
652 while ($rec =
$ilDB->fetchAssoc($set)) {
656 $members[] = $rec[
'usr_id'];
getAssignmentMembersIds()
get ONLY the members ids for this assignment
static downloadAllAssignmentFiles(ilExAssignment $a_ass, array $members, string $to_path)
Download all submitted files of an assignment (all user)
ilExAssignment $assignment
__construct()
Constructor.
isExcelNeeded(int $a_ass_type, bool $a_has_fbk)
static _lookupName(int $a_user_id)
lookup user name
collectAssignmentData(int $assignment_id)
write assignment data to excel file
const PARTICIPANT_LASTNAME_COLUMN
const FIRST_DEFAULT_SUBMIT_COLUMN
static getInstanceByType(string $a_type)
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 makeDirParents(string $a_dir)
Create a new directory and all parent directories.
createSubmissionsDirectory()
Create the directory with the assignment title.
const TYPE_UPLOAD
direct checks against const should be avoided, use type objects instead
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getASCIIFilename(string $a_filename)
createTargetDirectory()
Create the directory with the assignment title.
const SUBMISSION_DATE_COLUMN
array $ass_types_with_files
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
addLink(int $a_row, int $a_col, array $a_submission_file)
addColumnTitles()
Set the Excel column titles.
static createDirectory(string $a_dir, int $a_mod=0755)
create directory
string $submissions_directory
run(array $input, Observer $observer)
run the job
createUniqueTempDirectory()
static getTeamId(int $a_assignment_id, int $a_user_id, bool $a_create_on_demand=false)
copyFileToSubDirectory(string $a_directory, string $a_file)
Copy a file in the Feedback_files directory TODO use the new filesystem.
static userExists(array $a_usr_ids=array())
getFeedbackDirectory(int $participant_id, int $feedback_giver)
see also bug https://mantis.ilias.de/view.php?id=30999
getExpectedTimeOfTaskInSeconds()
static getDirectoryNameFromUserData(int $a_user_id)
static getInstancesByExercise(int $a_exc_id)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
const FIRST_DEFAULT_REVIEW_COLUMN
static getRatingForUserAndObject(int $a_obj_id, string $a_obj_type, int $a_sub_obj_id, string $a_sub_obj_type, int $a_user_id, int $a_category_id=null)
Get rating for a user and an object.
const PARTICIPANT_LOGIN_COLUMN
const PARTICIPANT_FIRSTNAME_COLUMN
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getExtraColumnsForSubmissionFiles(int $a_obj_id, int $a_ass_id)
Get the number of max amount of files submitted by a single user in the assignment.
static getInstanceById(int $a_id)