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 * Handling all ajax request for comments API
21 * @copyright 2010 Dongsheng Cai {@link http://dongsheng.org}
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 define('AJAX_SCRIPT', true);
26 require_once('../config.php');
27 require_once($CFG->dirroot
. '/comment/lib.php');
29 $contextid = optional_param('contextid', SYSCONTEXTID
, PARAM_INT
);
30 $action = optional_param('action', '', PARAM_ALPHA
);
32 if (empty($CFG->usecomments
)) {
33 throw new comment_exception('commentsnotenabled', 'moodle');
36 list($context, $course, $cm) = get_context_info_array($contextid);
38 $PAGE->set_url('/comment/comment_ajax.php');
40 // Allow anonymous user to view comments providing forcelogin now enabled
41 require_course_login($course, true, $cm);
42 $PAGE->set_context($context);
44 $PAGE->set_cm($cm, $course);
45 } else if (!empty($course)) {
46 $PAGE->set_course($course);
49 if (!confirm_sesskey()) {
50 $error = array('error'=>get_string('invalidsesskey', 'error'));
51 die(json_encode($error));
54 $client_id = required_param('client_id', PARAM_ALPHANUM
);
55 $area = optional_param('area', '', PARAM_AREA
);
56 $commentid = optional_param('commentid', -1, PARAM_INT
);
57 $content = optional_param('content', '', PARAM_RAW
);
58 $itemid = optional_param('itemid', '', PARAM_INT
);
59 $page = optional_param('page', 0, PARAM_INT
);
60 $component = optional_param('component', '', PARAM_COMPONENT
);
62 // initilising comment object
64 $args->context
= $context;
65 $args->course
= $course;
68 $args->itemid
= $itemid;
69 $args->client_id
= $client_id;
70 $args->component
= $component;
71 $manager = new comment($args);
73 echo $OUTPUT->header(); // send headers
75 // process ajax request
78 if ($manager->can_post()) {
79 $result = $manager->add($content);
80 if (!empty($result) && is_object($result)) {
81 $result->count
= $manager->count();
82 $result->client_id
= $client_id;
83 echo json_encode($result);
89 $comment_record = $DB->get_record('comments', array('id'=>$commentid));
90 if ($manager->can_delete($commentid) ||
$comment_record->userid
== $USER->id
) {
91 if ($manager->delete($commentid)) {
93 'client_id' => $client_id,
94 'commentid' => $commentid
96 echo json_encode($result);
103 if ($manager->can_view()) {
104 $comments = $manager->get_comments($page);
107 'count' => $manager->count(),
108 'pagination' => $manager->get_pagination($page),
109 'client_id' => $client_id
111 echo json_encode($result);
118 // tell user to log in to view comments
119 echo json_encode(array('error'=>'require_login'));