2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * This file contains the definition for the library class for file submission plugin
20 * This class provides all the functionality for the new assign module.
22 * @package assignsubmission_file
23 * @copyright 2012 NetSpot {@link http://www.netspot.com.au}
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 /** Include eventslib.php */
28 require_once($CFG->libdir.'/eventslib.php');
30 defined('MOODLE_INTERNAL') || die();
32 * File areas for file submission assignment
34 define('ASSIGNSUBMISSION_FILE_MAXFILES', 20);
35 define('ASSIGNSUBMISSION_FILE_MAXSUMMARYFILES', 5);
36 define('ASSIGNSUBMISSION_FILE_FILEAREA', 'submission_files');
39 * library class for file submission plugin extending submission plugin base class
41 * @package assignsubmission_file
42 * @copyright 2012 NetSpot {@link http://www.netspot.com.au}
43 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
45 class assign_submission_file extends assign_submission_plugin {
48 * Get the name of the file submission plugin
51 public function get_name() {
52 return get_string('file', 'assignsubmission_file');
56 * Get file submission information from the database
58 * @param int $submissionid
61 private function get_file_submission($submissionid) {
63 return $DB->get_record('assignsubmission_file', array('submission'=>$submissionid));
67 * Get the default setting for file submission plugin
69 * @param MoodleQuickForm $mform The form to add elements to
72 public function get_settings(MoodleQuickForm $mform) {
75 $defaultmaxfilesubmissions = $this->get_config('maxfilesubmissions');
76 $defaultmaxsubmissionsizebytes = $this->get_config('maxsubmissionsizebytes');
80 for($i = 1; $i <= ASSIGNSUBMISSION_FILE_MAXFILES; $i++) {
84 $mform->addElement('select', 'assignsubmission_file_maxfiles', get_string('maxfilessubmission', 'assignsubmission_file'), $options);
85 $mform->addHelpButton('assignsubmission_file_maxfiles', 'maxfilessubmission', 'assignsubmission_file');
86 $mform->setDefault('assignsubmission_file_maxfiles', $defaultmaxfilesubmissions);
87 $mform->disabledIf('assignsubmission_file_maxfiles', 'assignsubmission_file_enabled', 'eq', 0);
89 $choices = get_max_upload_sizes($CFG->maxbytes, $COURSE->maxbytes, get_config('assignsubmission_file', 'maxbytes'));
91 // Remove the option for 0 bytes.
93 if ($COURSE->maxbytes == 0) {
94 $choices = array(0=>get_string('siteuploadlimit', 'assignsubmission_file')) + $choices;
96 $choices = array(0=>get_string('courseuploadlimit') . ' (' . display_size($COURSE->maxbytes) . ')') + $choices;
98 $settings[] = array('type' => 'select',
99 'name' => 'maxsubmissionsizebytes',
100 'description' => get_string('maximumsubmissionsize', 'assignsubmission_file'),
101 'options'=> $choices,
102 'default'=> $defaultmaxsubmissionsizebytes);
104 $mform->addElement('select', 'assignsubmission_file_maxsizebytes', get_string('maximumsubmissionsize', 'assignsubmission_file'), $choices);
105 $mform->addHelpButton('assignsubmission_file_maxsizebytes', 'maximumsubmissionsize', 'assignsubmission_file');
106 $mform->setDefault('assignsubmission_file_maxsizebytes', $defaultmaxsubmissionsizebytes);
107 $mform->disabledIf('assignsubmission_file_maxsizebytes', 'assignsubmission_file_enabled', 'eq', 0);
111 * Save the settings for file submission plugin
113 * @param stdClass $data
116 public function save_settings(stdClass $data) {
117 $this->set_config('maxfilesubmissions', $data->assignsubmission_file_maxfiles);
118 $this->set_config('maxsubmissionsizebytes', $data->assignsubmission_file_maxsizebytes);
123 * File format options
127 private function get_file_options() {
128 $fileoptions = array('subdirs'=>1,
129 'maxbytes'=>$this->get_config('maxsubmissionsizebytes'),
130 'maxfiles'=>$this->get_config('maxfilesubmissions'),
131 'accepted_types'=>'*',
132 'return_types'=>FILE_INTERNAL);
137 * Add elements to submission form
139 * @param mixed $submission stdClass|null
140 * @param MoodleQuickForm $mform
141 * @param stdClass $data
144 public function get_form_elements($submission, MoodleQuickForm $mform, stdClass $data) {
146 if ($this->get_config('maxfilesubmissions') <= 0) {
150 $fileoptions = $this->get_file_options();
151 $submissionid = $submission ? $submission->id : 0;
153 $data = file_prepare_standard_filemanager($data, 'files', $fileoptions, $this->assignment->get_context(), 'assignsubmission_file', ASSIGNSUBMISSION_FILE_FILEAREA, $submissionid);
154 $mform->addElement('filemanager', 'files_filemanager', html_writer::tag('span', $this->get_name(),
155 array('class' => 'accesshide')), null, $fileoptions);
161 * Count the number of files
163 * @param int $submissionid
164 * @param string $area
167 private function count_files($submissionid, $area) {
169 $fs = get_file_storage();
170 $files = $fs->get_area_files($this->assignment->get_context()->id, 'assignsubmission_file', $area, $submissionid, "id", false);
172 return count($files);
176 * Save the files and trigger plagiarism plugin, if enabled, to scan the uploaded files via events trigger
178 * @param stdClass $submission
179 * @param stdClass $data
182 public function save(stdClass $submission, stdClass $data) {
185 $fileoptions = $this->get_file_options();
188 $data = file_postupdate_standard_filemanager($data, 'files', $fileoptions, $this->assignment->get_context(), 'assignsubmission_file', ASSIGNSUBMISSION_FILE_FILEAREA, $submission->id);
191 $filesubmission = $this->get_file_submission($submission->id);
193 //plagiarism code event trigger when files are uploaded
195 $fs = get_file_storage();
196 $files = $fs->get_area_files($this->assignment->get_context()->id, 'assignsubmission_file', ASSIGNSUBMISSION_FILE_FILEAREA, $submission->id, "id", false);
197 $count = $this->count_files($submission->id, ASSIGNSUBMISSION_FILE_FILEAREA);
198 // send files to event system
199 // Let Moodle know that an assessable file was uploaded (eg for plagiarism detection)
200 $eventdata = new stdClass();
201 $eventdata->modulename = 'assign';
202 $eventdata->cmid = $this->assignment->get_course_module()->id;
203 $eventdata->itemid = $submission->id;
204 $eventdata->courseid = $this->assignment->get_course()->id;
205 $eventdata->userid = $USER->id;
207 $eventdata->files = $files; // This is depreceated - please use pathnamehashes instead!
209 $eventdata->file = $files; // This is depreceated - please use pathnamehashes instead!
210 $eventdata->pathnamehashes = array_keys($files);
211 events_trigger('assessable_file_uploaded', $eventdata);
214 if ($filesubmission) {
215 $filesubmission->numfiles = $this->count_files($submission->id, ASSIGNSUBMISSION_FILE_FILEAREA);
216 return $DB->update_record('assignsubmission_file', $filesubmission);
218 $filesubmission = new stdClass();
219 $filesubmission->numfiles = $this->count_files($submission->id, ASSIGNSUBMISSION_FILE_FILEAREA);
220 $filesubmission->submission = $submission->id;
221 $filesubmission->assignment = $this->assignment->get_instance()->id;
222 return $DB->insert_record('assignsubmission_file', $filesubmission) > 0;
227 * Produce a list of files suitable for export that represent this feedback or submission
229 * @param stdClass $submission The submission
230 * @return array - return an array of files indexed by filename
232 public function get_files(stdClass $submission) {
234 $fs = get_file_storage();
236 $files = $fs->get_area_files($this->assignment->get_context()->id, 'assignsubmission_file', ASSIGNSUBMISSION_FILE_FILEAREA, $submission->id, "timemodified", false);
238 foreach ($files as $file) {
239 $result[$file->get_filename()] = $file;
245 * Display the list of files in the submission status table
247 * @param stdClass $submission
248 * @param bool $showviewlink Set this to true if the list of files is long
251 public function view_summary(stdClass $submission, & $showviewlink) {
252 $count = $this->count_files($submission->id, ASSIGNSUBMISSION_FILE_FILEAREA);
254 // show we show a link to view all files for this plugin?
255 $showviewlink = $count > ASSIGNSUBMISSION_FILE_MAXSUMMARYFILES;
256 if ($count <= ASSIGNSUBMISSION_FILE_MAXSUMMARYFILES) {
257 return $this->assignment->render_area_files('assignsubmission_file', ASSIGNSUBMISSION_FILE_FILEAREA, $submission->id);
259 return get_string('countfiles', 'assignsubmission_file', $count);
264 * No full submission view - the summary contains the list of files and that is the whole submission
266 * @param stdClass $submission
269 public function view(stdClass $submission) {
270 return $this->assignment->render_area_files('assignsubmission_file', ASSIGNSUBMISSION_FILE_FILEAREA, $submission->id);
276 * Return true if this plugin can upgrade an old Moodle 2.2 assignment of this type
279 * @param string $type
280 * @param int $version
281 * @return bool True if upgrade is possible
283 public function can_upgrade($type, $version) {
285 $uploadsingletype ='uploadsingle';
286 $uploadtype ='upload';
288 if (($type == $uploadsingletype || $type == $uploadtype) && $version >= 2011112900) {
296 * Upgrade the settings from the old assignment
297 * to the new plugin based one
299 * @param context $oldcontext - the old assignment context
300 * @param stdClass $oldassignment - the old assignment data record
301 * @param string $log record log events here
302 * @return bool Was it a success? (false will trigger rollback)
304 public function upgrade_settings(context $oldcontext,stdClass $oldassignment, & $log) {
305 if ($oldassignment->assignmenttype == 'uploadsingle') {
306 $this->set_config('maxfilesubmissions', 1);
307 $this->set_config('maxsubmissionsizebytes', $oldassignment->maxbytes);
311 $this->set_config('maxfilesubmissions', $oldassignment->var1);
312 $this->set_config('maxsubmissionsizebytes', $oldassignment->maxbytes);
321 * Upgrade the submission from the old assignment to the new one
323 * @param context $oldcontext The context of the old assignment
324 * @param stdClass $oldassignment The data record for the old oldassignment
325 * @param stdClass $oldsubmission The data record for the old submission
326 * @param stdClass $submission The data record for the new submission
327 * @param string $log Record upgrade messages in the log
328 * @return bool true or false - false will trigger a rollback
330 public function upgrade(context $oldcontext, stdClass $oldassignment, stdClass $oldsubmission, stdClass $submission, & $log) {
333 $filesubmission = new stdClass();
335 $filesubmission->numfiles = $oldsubmission->numfiles;
336 $filesubmission->submission = $submission->id;
337 $filesubmission->assignment = $this->assignment->get_instance()->id;
339 if (!$DB->insert_record('assignsubmission_file', $filesubmission) > 0) {
340 $log .= get_string('couldnotconvertsubmission', 'mod_assign', $submission->userid);
347 // now copy the area files
348 $this->assignment->copy_area_files_for_upgrade($oldcontext->id,
353 $this->assignment->get_context()->id,
354 'assignsubmission_file',
355 ASSIGNSUBMISSION_FILE_FILEAREA,
366 * The assignment has been deleted - cleanup
370 public function delete_instance() {
372 // will throw exception on failure
373 $DB->delete_records('assignsubmission_file', array('assignment'=>$this->assignment->get_instance()->id));
379 * Formatting for log info
381 * @param stdClass $submission The submission
385 public function format_for_log(stdClass $submission) {
386 // format the info for each submission plugin add_to_log
387 $filecount = $this->count_files($submission->id, ASSIGNSUBMISSION_FILE_FILEAREA);
389 $fileloginfo .= ' the number of file(s) : ' . $filecount . " file(s).<br>";
395 * Return true if there are no submission files
396 * @param stdClass $submission
398 public function is_empty(stdClass $submission) {
399 return $this->count_files($submission->id, ASSIGNSUBMISSION_FILE_FILEAREA) == 0;
403 * Get file areas returns a list of areas this plugin stores files
404 * @return array - An array of fileareas (keys) and descriptions (values)
406 public function get_file_areas() {
407 return array(ASSIGNSUBMISSION_FILE_FILEAREA=>$this->get_name());