Commit | Line | Data |
---|---|---|
33e4dea6 DM |
1 | <?php |
2 | ||
53fad4b9 DM |
3 | // This file is part of Moodle - http://moodle.org/ |
4 | // | |
33e4dea6 DM |
5 | // Moodle is free software: you can redistribute it and/or modify |
6 | // it under the terms of the GNU General Public License as published by | |
7 | // the Free Software Foundation, either version 3 of the License, or | |
8 | // (at your option) any later version. | |
9 | // | |
10 | // Moodle is distributed in the hope that it will be useful, | |
11 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | // GNU General Public License for more details. | |
53fad4b9 | 14 | // |
33e4dea6 DM |
15 | // You should have received a copy of the GNU General Public License |
16 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
17 | ||
33e4dea6 | 18 | /** |
51508f25 | 19 | * View a single (usually the own) submission, submit own work. |
33e4dea6 DM |
20 | * |
21 | * @package mod-workshop | |
22 | * @copyright 2009 David Mudrak <david.mudrak@gmail.com> | |
23 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
24 | */ | |
25 | ||
26 | require_once(dirname(dirname(dirname(__FILE__))).'/config.php'); | |
127032fe | 27 | require_once(dirname(__FILE__).'/locallib.php'); |
33e4dea6 | 28 | |
c1e883bb DM |
29 | $cmid = required_param('cmid', PARAM_INT); // course module id |
30 | $id = optional_param('id', 0, PARAM_INT); // submission id | |
31 | $edit = optional_param('edit', false, PARAM_BOOL); // open for editing? | |
ac239eba | 32 | $assess = optional_param('assess', false, PARAM_BOOL); // instant assessment required |
33e4dea6 | 33 | |
c1e883bb DM |
34 | $cm = get_coursemodule_from_id('workshop', $cmid, 0, false, MUST_EXIST); |
35 | $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST); | |
33e4dea6 DM |
36 | |
37 | require_login($course, false, $cm); | |
33e4dea6 | 38 | if (isguestuser()) { |
b8ead2e6 | 39 | print_error('guestsarenotallowed'); |
33e4dea6 DM |
40 | } |
41 | ||
51508f25 DM |
42 | $workshop = $DB->get_record('workshop', array('id' => $cm->instance), '*', MUST_EXIST); |
43 | $workshop = new workshop($workshop, $cm, $course); | |
44 | ||
a6855934 | 45 | $PAGE->set_url($workshop->submission_url(), array('cmid' => $cmid, 'id' => $id, 'edit' => $edit)); |
33e4dea6 | 46 | |
127032fe | 47 | if ($id) { // submission is specified |
51508f25 | 48 | $submission = $workshop->get_submission_by_id($id); |
127032fe | 49 | } else { // no submission specified |
0dc47fb9 | 50 | if (!$submission = $workshop->get_submission_by_author($USER->id)) { |
7a789aa8 | 51 | $submission = new stdclass(); |
127032fe | 52 | $submission->id = null; |
00aca3c1 | 53 | $submission->authorid = $USER->id; |
53fad4b9 | 54 | } |
33e4dea6 | 55 | } |
c1e883bb | 56 | |
00aca3c1 | 57 | $ownsubmission = $submission->authorid == $USER->id; |
67cd00ba DM |
58 | $canviewall = has_capability('mod/workshop:viewallsubmissions', $workshop->context); |
59 | $cansubmit = has_capability('mod/workshop:submit', $workshop->context); | |
ac239eba | 60 | $canallocate = has_capability('mod/workshop:allocate', $workshop->context); |
090a7907 | 61 | $canoverride = (($workshop->phase == workshop::PHASE_EVALUATION) and has_capability('mod/workshop:overridegrades', $workshop->context)); |
00aca3c1 | 62 | $isreviewer = $DB->record_exists('workshop_assessments', array('submissionid' => $submission->id, 'reviewerid' => $USER->id)); |
cff28ef0 | 63 | $editable = ($cansubmit and $ownsubmission and $workshop->submitting_allowed()); |
514d8c22 DM |
64 | if ($editable and $workshop->useexamples and $workshop->examplesmode == workshop::EXAMPLES_BEFORE_SUBMISSION |
65 | and !has_capability('mod/workshop:manageexamples', $workshop->context)) { | |
66 | // check that all required examples have been assessed by the user | |
67 | $examples = $workshop->get_examples_for_reviewer($USER->id); | |
68 | foreach ($examples as $exampleid => $example) { | |
69 | if (is_null($example->grade)) { | |
70 | $editable = false; | |
71 | break; | |
72 | } | |
73 | } | |
74 | } | |
75 | $edit = ($editable and $edit); | |
51508f25 | 76 | |
3dc78e5b DM |
77 | if ($submission->id and ($ownsubmission or $canviewall or $isreviewer)) { |
78 | // ok you can go | |
79 | } elseif (is_null($submission->id) and $cansubmit) { | |
80 | // ok you can go | |
81 | } else { | |
51508f25 | 82 | print_error('nopermissions'); |
c1e883bb DM |
83 | } |
84 | ||
ac239eba DM |
85 | if ($assess and $submission->id and !$isreviewer and $canallocate and $workshop->assessing_allowed()) { |
86 | require_sesskey(); | |
87 | $assessmentid = $workshop->add_allocation($submission, $USER->id); | |
88 | redirect($workshop->assess_url($assessmentid)); | |
89 | } | |
90 | ||
514d8c22 | 91 | if ($edit) { |
67cd00ba DM |
92 | require_once(dirname(__FILE__).'/submission_form.php'); |
93 | ||
94 | $maxfiles = $workshop->nattachments; | |
95 | $maxbytes = $workshop->maxbytes; | |
96 | $contentopts = array('trusttext' => true, 'subdirs' => false, 'maxfiles' => $maxfiles, 'maxbytes' => $maxbytes); | |
97 | $attachmentopts = array('subdirs' => true, 'maxfiles' => $maxfiles, 'maxbytes' => $maxbytes); | |
98 | $submission = file_prepare_standard_editor($submission, 'content', $contentopts, $workshop->context, | |
99 | 'workshop_submission_content', $submission->id); | |
100 | $submission = file_prepare_standard_filemanager($submission, 'attachment', $attachmentopts, $workshop->context, | |
101 | 'workshop_submission_attachment', $submission->id); | |
102 | ||
103 | $mform = new workshop_submission_form($PAGE->url, array('current' => $submission, 'workshop' => $workshop, | |
104 | 'contentopts' => $contentopts, 'attachmentopts' => $attachmentopts)); | |
105 | ||
106 | if ($mform->is_cancelled()) { | |
107 | redirect($workshop->view_url()); | |
108 | ||
109 | } elseif ($cansubmit and $formdata = $mform->get_data()) { | |
110 | $timenow = time(); | |
111 | if (empty($formdata->id)) { | |
112 | $formdata->workshopid = $workshop->id; | |
81eccf0a | 113 | $formdata->example = 0; |
67cd00ba DM |
114 | $formdata->authorid = $USER->id; |
115 | $formdata->timecreated = $timenow; | |
557a1100 | 116 | $formdata->feedbackauthorformat = FORMAT_HTML; // todo better default |
67cd00ba DM |
117 | } |
118 | $formdata->timemodified = $timenow; | |
119 | $formdata->title = trim($formdata->title); | |
120 | $formdata->content = ''; // updated later | |
121 | $formdata->contentformat = FORMAT_HTML; // updated later | |
122 | $formdata->contenttrust = 0; // updated later | |
123 | if (empty($formdata->id)) { | |
124 | $formdata->id = $DB->insert_record('workshop_submissions', $formdata); | |
125 | // todo add to log | |
126 | } | |
127 | // save and relink embedded images and save attachments | |
128 | $formdata = file_postupdate_standard_editor($formdata, 'content', $contentopts, $workshop->context, | |
129 | 'workshop_submission_content', $formdata->id); | |
130 | $formdata = file_postupdate_standard_filemanager($formdata, 'attachment', $attachmentopts, $workshop->context, | |
131 | 'workshop_submission_attachment', $formdata->id); | |
f1b4b387 | 132 | if (empty($formdata->attachment)) { |
ac239eba | 133 | // explicit cast to zero integer |
f1b4b387 DM |
134 | $formdata->attachment = 0; |
135 | } | |
67cd00ba DM |
136 | // store the updated values or re-save the new submission (re-saving needed because URLs are now rewritten) |
137 | $DB->update_record('workshop_submissions', $formdata); | |
138 | redirect($workshop->submission_url($formdata->id)); | |
33e4dea6 | 139 | } |
33e4dea6 DM |
140 | } |
141 | ||
557a1100 DM |
142 | // load the form to override gradinggrade and process the submitted data eventually |
143 | if (!$edit and $canoverride) { | |
144 | $feedbackform = $workshop->get_feedbackauthor_form($PAGE->url, $submission); | |
145 | if ($data = $feedbackform->get_data()) { | |
146 | $data = file_postupdate_standard_editor($data, 'feedbackauthor', array(), $workshop->context); | |
7a789aa8 | 147 | $record = new stdclass(); |
557a1100 DM |
148 | $record->id = $submission->id; |
149 | $record->gradeover = $workshop->raw_grade_value($data->gradeover, $workshop->grade); | |
150 | $record->gradeoverby = $USER->id; | |
151 | $record->feedbackauthor = $data->feedbackauthor; | |
152 | $record->feedbackauthorformat = $data->feedbackauthorformat; | |
153 | $DB->update_record('workshop_submissions', $record); | |
154 | redirect($workshop->view_url()); | |
155 | } | |
156 | } | |
157 | ||
0dc47fb9 DM |
158 | $PAGE->set_title($workshop->name); |
159 | $PAGE->set_heading($course->fullname); | |
39861053 | 160 | if ($edit) { |
b761e6d9 | 161 | $PAGE->navbar->add(get_string('mysubmission', 'workshop'), $workshop->submission_url(), navigation_node::TYPE_CUSTOM); |
39861053 | 162 | $PAGE->navbar->add(get_string('editingsubmission', 'workshop')); |
51508f25 | 163 | } elseif ($ownsubmission) { |
b761e6d9 | 164 | $PAGE->navbar->add(get_string('mysubmission', 'workshop')); |
51508f25 DM |
165 | } else { |
166 | $PAGE->navbar->add(get_string('submission', 'workshop')); | |
39861053 | 167 | } |
33e4dea6 | 168 | |
c1e883bb | 169 | // Output starts here |
39861053 | 170 | echo $OUTPUT->header(); |
0dc47fb9 | 171 | echo $OUTPUT->heading(format_string($workshop->name), 2); |
c1e883bb | 172 | |
3dc78e5b DM |
173 | // if in edit mode, display the form to edit the submission |
174 | ||
514d8c22 | 175 | if ($edit) { |
c1e883bb DM |
176 | $mform->display(); |
177 | echo $OUTPUT->footer(); | |
178 | die(); | |
179 | } | |
180 | ||
3dc78e5b DM |
181 | // else display the submission |
182 | ||
183 | if ($submission->id) { | |
6adbcb80 | 184 | $wsoutput = $PAGE->get_renderer('mod_workshop'); |
e9b0f0ab | 185 | echo $wsoutput->submission_full($submission, true); |
3dc78e5b DM |
186 | } else { |
187 | echo $OUTPUT->box(get_string('noyoursubmission', 'workshop')); | |
c1e883bb DM |
188 | } |
189 | ||
514d8c22 | 190 | if ($editable) { |
3ba60ee1 | 191 | $url = new moodle_url($PAGE->url, array('edit' => 'on', 'id' => $submission->id)); |
c5abdea3 | 192 | echo $OUTPUT->single_button($url, get_string('editsubmission', 'workshop'), 'get'); |
c1e883bb DM |
193 | } |
194 | ||
ac239eba DM |
195 | if ($submission->id and !$edit and !$isreviewer and $canallocate and $workshop->assessing_allowed()) { |
196 | $url = new moodle_url($PAGE->url, array('assess' => 1)); | |
197 | echo $OUTPUT->single_button($url, get_string('assess', 'workshop'), 'post'); | |
198 | } | |
199 | ||
3dc78e5b DM |
200 | // and possibly display the submission's review(s) |
201 | ||
202 | $canviewallassessments = false; | |
203 | if (has_capability('mod/workshop:viewallassessments', $PAGE->context)) { | |
204 | $canviewallassessments = true; | |
205 | } elseif ($ownsubmission and $workshop->assessments_available()) { | |
206 | $canviewallassessments = true; | |
3dc78e5b DM |
207 | } |
208 | ||
209 | $canviewgrades = false; | |
210 | if ($isreviewer) { | |
211 | $canviewgrades = true; // reviewers can always see the grades they gave even they are not available yet | |
212 | } elseif ($ownsubmission or $canviewallassessments) { | |
213 | $canviewgrades = $workshop->grades_available(); // bool|null, see the function phpdoc | |
3dc78e5b DM |
214 | } |
215 | ||
216 | if ($isreviewer) { | |
407b1e91 | 217 | // display own assessment - todo |
3dc78e5b DM |
218 | $strategy = $workshop->grading_strategy_instance(); |
219 | } | |
220 | ||
221 | if ($canviewallassessments) { | |
407b1e91 | 222 | // display all assessments (except the eventual own one - that has been already displayed) - todo |
3dc78e5b DM |
223 | $strategy = $workshop->grading_strategy_instance(); |
224 | } | |
225 | ||
557a1100 DM |
226 | if (!$edit and $canoverride) { |
227 | // display a form to override the submission grade | |
228 | $feedbackform->display(); | |
229 | } | |
230 | ||
0dc47fb9 | 231 | echo $OUTPUT->footer(); |