46 protected \ILIAS\Exercise\Team\TeamManager
$team;
71 $this->
lng = $DIC->language();
72 $this->
lng->loadLanguageModule(
'exc');
74 $this->ass_types_with_files = array(
81 $this->
logger = $DIC->logger()->exc();
82 $this->domain = $DIC->exercise()->internal()->domain();
83 $this->peer_review = $this->domain->peerReview();
84 $this->team = $DIC->exercise()->internal()->domain()->team();
125 $this->exercise_id = $input[0]->getValue();
126 $this->exercise_ref_id = $input[1]->getValue();
127 $assignment_id = $input[2]->getValue();
128 $participant_id = $input[3]->getValue();
129 $this->user_id = $input[4]->getValue();
130 $selected_participants = $input[5]->getValue();
131 $this->
logger->debug(
"Collect files. assignment id: " . $assignment_id .
", selected participants: " . $selected_participants);
132 if (trim($selected_participants) ===
"") {
133 $this->selected_participants =
null;
135 $this->selected_participants = explode(
",", $selected_participants);
137 $final_directory =
"";
140 if ($assignment_id > 0) {
145 if ($participant_id > 0) {
148 foreach ($assignments as $assignment) {
155 $out->setValue($final_directory);
165 $crit_file_manager = $this->peer_review->criteriaFile($this->assignment->getId());
166 $dir = $this->target_directory .
"/" . $a_directory;
172 $f = fopen($dir .
"/" . basename($file->getTitle()),
'wb');
173 fwrite(
$f, $crit_file_manager->getStream($file->getRid())->getContents());
194 foreach ($this->title_columns as $title) {
195 $this->excel->setCell(1, $col, $title);
215 $path = $this->temp_dir . DIRECTORY_SEPARATOR;
216 if ($this->participant_id > 0) {
218 $path .= $user_dir . DIRECTORY_SEPARATOR;
229 $this->
logger->dump(
"lang key => " . $this->
lng->getLangKey());
230 $this->submissions_directory = $this->target_directory . DIRECTORY_SEPARATOR . $this->
lng->txt(
"exc_ass_submission_zip");
248 if ($this->participant_id > 0) {
249 $exc_members_id = array($this->participant_id);
251 $exc_members_id =
$exercise->members_obj->getMembers();
255 $exc_members_id = $filter->filterParticipantsByAccess();
258 foreach ($exc_members_id as $member_id) {
259 if (!is_null($this->selected_participants) && !in_array($member_id, $this->selected_participants)) {
262 $user_ids[] = $member_id;
265 $this->domain->submission($this->assignment->getId())
266 ->copySubmissionsToDir(
268 $this->submissions_directory
287 protected function addCriteriaToExcel(
293 $submission =
new ilExSubmission($this->assignment, $participant_id);
298 $values = $submission->getPeerReview()->getPeerReviewValues($feedback_giver, $participant_id);
300 foreach ($this->criteria_items as $item) {
304 $crit_id = $item->getId();
305 $crit_type = $item->getType();
306 $crit_title = $item->getTitle();
307 if ($crit_title ==
"") {
308 $crit_title = $item->getTranslatedType();
311 if (!in_array($crit_title, $this->title_columns)) {
312 $this->title_columns[] = $crit_title;
314 switch ($crit_type) {
316 if ($values[$crit_id] == 1) {
317 $this->excel->setCell($row, $col, $this->
lng->txt(
"yes"));
318 } elseif ($values[$crit_id] == -1) {
319 $this->excel->setCell($row, $col, $this->
lng->txt(
"no"));
333 $sub_obj_type =
"peer";
335 $sub_obj_type .=
"_" . $crit_id;
338 $this->assignment->getId(),
344 if ($rating_int = round((
int) $rating)) {
345 $this->excel->setCell($row, $col, $rating_int);
351 $this->excel->setCell($row, $col, $values[$crit_id]);
353 $this->excel->setCell($row, $col, $values[
'text']);
363 $crit_file_obj->setPeerReviewContext($this->assignment, $feedback_giver, $participant_id);
364 $files = $crit_file_obj->getFiles();
366 $extra_crit_column = 0;
367 foreach ($files as $file) {
368 if ($extra_crit_column !== 0) {
369 $this->title_columns[] = $crit_title .
"_" . $extra_crit_column;
371 $extra_crit_column++;
374 $this->excel->setCell($row, $col,
"./" . $dir . DIRECTORY_SEPARATOR . basename($file->getTitle()));
375 $this->excel->addLink($row, $col,
'./' . $dir . DIRECTORY_SEPARATOR . basename($file->getTitle()));
376 $this->excel->setColors($this->excel->getCoordByColumnAndRow($col, $row), self::BG_COLOR, self::LINK_COLOR);
388 $dir = self::FBK_DIRECTORY . DIRECTORY_SEPARATOR .
400 $subm = $this->domain->submission($a_ass_id);
401 return $subm->getMaxAmountOfSubmittedFiles(
402 $this->participant_id
415 $filepath =
'./' . $this->
lng->txt(
"exc_ass_submission_zip") . DIRECTORY_SEPARATOR . $targetdir . DIRECTORY_SEPARATOR;
416 switch ($this->assignment->getType()) {
424 if (!$wsp_tree->getRootId()) {
425 $wsp_tree->createTreeForUser($user_id);
427 $node = $wsp_tree->getNodeData((
int) $sub->
getTitle());
428 $filepath .=
"blog_" . $node[
'obj_id'] . DIRECTORY_SEPARATOR .
"index.html";
432 $filepath .=
"prt_" . $sub->
getTitle() . DIRECTORY_SEPARATOR .
"index.html";
438 $this->excel->addLink($a_row, $a_col, $filepath);
452 $ass_has_feedback =
false;
453 $ass_has_criteria =
false;
457 $assignment_type = $this->assignment->getType();
463 if (!isset($this->temp_dir)) {
469 if (in_array($assignment_type, $this->ass_types_with_files)) {
474 $first_excel_column_for_review = 0;
477 if ($this->assignment->getPeerReview()) {
478 $ass_has_feedback =
true;
482 $first_excel_column_for_review = self::FIRST_DEFAULT_REVIEW_COLUMN;
485 if ($this->
isExcelNeeded($assignment_type, $ass_has_feedback)) {
490 $this->excel->addSheet($this->sanitized_title);
494 $this->title_columns = array(
495 $this->
lng->txt(
'lastname'),
496 $this->
lng->txt(
'firstname'),
497 $this->
lng->txt(
'login'),
498 $this->
lng->txt(
'exc_last_submission')
500 switch ($assignment_type) {
502 $this->title_columns[] = $this->
lng->txt(
"exc_submission_text");
507 $first_excel_column_for_review++;
508 $this->title_columns[] = $this->
lng->txt(
"exc_team");
511 if ($num_columns_submission > 1) {
512 for ($i = 1; $i <= $num_columns_submission; $i++) {
513 $this->title_columns[] = $this->
lng->txt(
"exc_submission_file") .
" " . $i;
516 $this->title_columns[] = $this->
lng->txt(
"exc_submission_file");
519 $first_excel_column_for_review += $num_columns_submission - 1;
522 $this->title_columns[] = $this->
lng->txt(
"exc_submission");
525 if ($ass_has_feedback) {
526 $this->title_columns[] = $this->
lng->txt(
"exc_peer_review_giver");
527 $this->title_columns[] = $this->
lng->txt(
'exc_last_submission');
532 if ($this->criteria_items = $this->assignment->getPeerReviewCriteriaCatalogueItems()) {
533 $ass_has_criteria =
true;
536 if ($this->participant_id > 0) {
537 $participants = array($this->participant_id);
543 $participants = $filter->filterParticipantsByAccess();
547 foreach ($participants as $participant_id) {
548 if (!is_null($this->selected_participants) && !in_array($participant_id, $this->selected_participants)) {
552 $submissions = $this->domain->submission($this->assignment->getId())
553 ->getSubmissionsOfUser($participant_id);
555 if ($submissions->current()) {
557 $this->excel->setCell($row, self::PARTICIPANT_LASTNAME_COLUMN, $participant_name[
'lastname']);
558 $this->excel->setCell($row, self::PARTICIPANT_FIRSTNAME_COLUMN, $participant_name[
'firstname']);
559 $this->excel->setCell($row, self::PARTICIPANT_LOGIN_COLUMN, $participant_name[
'login']);
562 if (!in_array($assignment_type, $this->ass_types_with_files)) {
563 foreach ($submissions as $sub) {
564 $this->excel->setCell($row, self::SUBMISSION_DATE_COLUMN, $sub->getTimestamp());
565 $this->excel->setCell($row, self::FIRST_DEFAULT_SUBMIT_COLUMN, $sub->getText());
568 $col = self::FIRST_DEFAULT_SUBMIT_COLUMN;
570 $team_id = $this->team->getTeamForMember($this->assignment->getId(),
$participant_id);
571 $this->excel->setCell($row, $col, (
string) $team_id);
574 foreach ($submissions as $sub) {
575 $this->excel->setCell($row, self::SUBMISSION_DATE_COLUMN, $sub->getTimestamp());
578 $this->excel->setCell($row, $col, $this->
lng->txt(
"open"));
580 $this->excel->setCell($row, $col, $sub->getTitle());
582 $this->excel->setColors($this->excel->getCoordByColumnAndRow($col, $row), self::BG_COLOR, self::LINK_COLOR);
584 $this->
addLink($row, $col, $sub);
590 if ($ass_has_feedback) {
591 if ($col < $first_excel_column_for_review) {
592 $col = $first_excel_column_for_review;
595 if ($peer_review !==
null) {
596 $reviews = $peer_review->getPeerReviewsByPeerId($participant_id);
600 $current_review_row = 0;
601 foreach ($reviews as $review) {
603 if ($review[
'tstamp']) {
604 $current_review_row++;
605 if ($current_review_row > 1) {
606 for ($i = 0; $i < $first_excel_column_for_review; $i++) {
607 $cell_to_copy = $this->excel->getCell($row, $i);
608 $this->excel->setCell($row + 1, $i, $cell_to_copy);
609 if ($i >= self::FIRST_DEFAULT_SUBMIT_COLUMN) {
610 $this->excel->setColors($this->excel->getCoordByColumnAndRow($i, $row + 1), self::BG_COLOR, self::LINK_COLOR);
616 $feedback_giver = $review[
'giver_id'];
620 $this->excel->setCell(
623 $feedback_giver_name[
'lastname'] .
", " . $feedback_giver_name[
'firstname'] .
" [" . $feedback_giver_name[
'login'] .
"]" 626 $this->excel->setCell($row, $col + 1, $review[
'tstamp']);
628 if ($ass_has_criteria) {
629 $this->addCriteriaToExcel($feedback_giver, $participant_id, $row, $col + 1);
640 $this->excel->writeToFile($this->target_directory .
"/" . $this->sanitized_title);
652 $ilDB = $DIC->database();
655 $set =
$ilDB->query(
"SELECT usr_id" .
656 " FROM exc_mem_ass_status" .
657 " WHERE ass_id = " .
$ilDB->quote($this->assignment->getId(),
"integer"));
659 while ($rec =
$ilDB->fetchAssoc($set)) {
663 $members[] = $rec[
'usr_id'];
ILIAS Exercise Team TeamManager $team
getAssignmentMembersIds()
get ONLY the members ids for this assignment
ILIAS Exercise PeerReview DomainService $peer_review
addLink(int $a_row, int $a_col, Submission $sub)
ilExAssignment $assignment
Interface Observer Contains several chained tasks and infos about them.
__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...
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)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
createTargetDirectory()
Create the directory with the assignment title.
const SUBMISSION_DATE_COLUMN
array $ass_types_with_files
static userExists(array $a_usr_ids=[])
addColumnTitles()
Set the Excel column titles.
static createDirectory(string $a_dir, int $a_mod=0755)
create directory
array $selected_participants
string $submissions_directory
run(array $input, Observer $observer)
run the job
createUniqueTempDirectory()
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)
collectSubmissionFiles()
Store the zip file which contains all submission files in the target directory.
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.
const FIRST_DEFAULT_REVIEW_COLUMN
const PARTICIPANT_LOGIN_COLUMN
InternalDomainService $domain
const PARTICIPANT_FIRSTNAME_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.
Exercise submission //TODO: This class has many static methods related to delivered "files"...
copyFileToSubDirectory(string $a_directory, \ILIAS\Exercise\PeerReview\Criteria\CriteriaFile $file)
Copy a file in the Feedback_files directory TODO use the new filesystem.
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)