Commit | Line | Data |
---|---|---|
bbd0e548 DW |
1 | <?PHP |
2 | // This file is part of Moodle - http://moodle.org/ | |
3 | // | |
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. | |
8 | // | |
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. | |
13 | // | |
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/>. | |
16 | ||
17 | /** | |
18 | * This file contains the moodle hooks for the submission comments plugin | |
19 | * | |
20 | * @package assignsubmission_comments | |
21 | * @copyright 2012 NetSpot {@link http://www.netspot.com.au} | |
22 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
23 | */ | |
24 | defined('MOODLE_INTERNAL') || die(); | |
25 | ||
26 | /** | |
27 | * | |
28 | * Callback method for data validation---- required method for AJAXmoodle based comment API | |
29 | * | |
30 | * @param stdClass $options | |
31 | * @return bool | |
32 | */ | |
33 | function assignsubmission_comments_comment_validate(stdClass $options) { | |
e00b5c45 DW |
34 | global $USER, $CFG, $DB; |
35 | ||
36 | if ($options->commentarea != 'submission_comments' && | |
37 | $options->commentarea != 'submission_comments_upgrade') { | |
38 | throw new comment_exception('invalidcommentarea'); | |
39 | } | |
40 | if (!$submission = $DB->get_record('assign_submission', array('id'=>$options->itemid))) { | |
41 | throw new comment_exception('invalidcommentitemid'); | |
42 | } | |
43 | $context = $options->context; | |
44 | ||
45 | require_once($CFG->dirroot . '/mod/assign/locallib.php'); | |
46 | $assignment = new assign($context, null, null); | |
47 | ||
48 | if ($assignment->get_instance()->id != $submission->assignment) { | |
49 | throw new comment_exception('invalidcontext'); | |
50 | } | |
51 | if (!has_capability('mod/assign:grade', $context)) { | |
52 | if (!has_capability('mod/assign:submit', $context)) { | |
53 | throw new comment_exception('nopermissiontocomment'); | |
54 | } else if ($assignment->get_instance()->teamsubmission) { | |
55 | $group = $assignment->get_submission_group($USER->id); | |
56 | $groupid = 0; | |
57 | if ($group) { | |
58 | $groupid = $group->id; | |
59 | } | |
60 | if ($groupid != $submission->groupid) { | |
61 | throw new comment_exception('nopermissiontocomment'); | |
62 | } | |
63 | } else if ($submission->userid != $USER->id) { | |
64 | throw new comment_exception('nopermissiontocomment'); | |
65 | } | |
66 | } | |
bbd0e548 DW |
67 | |
68 | return true; | |
69 | } | |
70 | ||
71 | /** | |
72 | * Permission control method for submission plugin ---- required method for AJAXmoodle based comment API | |
73 | * | |
74 | * @param stdClass $options | |
75 | * @return array | |
76 | */ | |
77 | function assignsubmission_comments_comment_permissions(stdClass $options) { | |
e00b5c45 DW |
78 | global $USER, $CFG, $DB; |
79 | ||
80 | if ($options->commentarea != 'submission_comments' && | |
81 | $options->commentarea != 'submission_comments_upgrade') { | |
82 | throw new comment_exception('invalidcommentarea'); | |
83 | } | |
84 | if (!$submission = $DB->get_record('assign_submission', array('id'=>$options->itemid))) { | |
85 | throw new comment_exception('invalidcommentitemid'); | |
86 | } | |
87 | $context = $options->context; | |
88 | ||
89 | require_once($CFG->dirroot . '/mod/assign/locallib.php'); | |
90 | $assignment = new assign($context, null, null); | |
91 | ||
92 | if ($assignment->get_instance()->id != $submission->assignment) { | |
93 | throw new comment_exception('invalidcontext'); | |
94 | } | |
3e1b63f1 DW |
95 | |
96 | if ($assignment->get_instance()->teamsubmission && | |
97 | !$assignment->can_view_group_submission($submission->groupid)) { | |
98 | return array('post' => false, 'view' => false); | |
99 | } | |
100 | ||
101 | if (!$assignment->get_instance()->teamsubmission && | |
102 | !$assignment->can_view_submission($submission->userid)) { | |
103 | return array('post' => false, 'view' => false); | |
e00b5c45 | 104 | } |
bbd0e548 DW |
105 | |
106 | return array('post' => true, 'view' => true); | |
107 | } | |
108 | ||
109 | /** | |
110 | * Callback to force the userid for all comments to be the userid of the submission and NOT the global $USER->id. This | |
111 | * is required by the upgrade code. Note the comment area is used to identify upgrades. | |
112 | * | |
113 | * @param stdClass $comment | |
114 | * @param stdClass $param | |
115 | */ | |
116 | function assignsubmission_comments_comment_add(stdClass $comment, stdClass $param) { | |
117 | ||
118 | global $DB; | |
119 | if ($comment->commentarea == 'submission_comments_upgrade') { | |
120 | $submissionid = $comment->itemid; | |
121 | $submission = $DB->get_record('assign_submission', array('id' => $submissionid)); | |
122 | ||
123 | $comment->userid = $submission->userid; | |
124 | $comment->commentarea = 'submission_comments'; | |
125 | } | |
126 | } | |
127 |