. /* * Handling all ajax request for comments API */ define('AJAX_SCRIPT', true); require_once('../config.php'); require_once($CFG->dirroot . '/comment/lib.php'); $contextid = optional_param('contextid', SYSCONTEXTID, PARAM_INT); list($context, $course, $cm) = get_context_info_array($contextid); require_login($course, true, $cm); require_sesskey(); if (isguestuser()) { $err = new stdclass; $err->error = get_string('loggedinnot'); die(json_encode($err)); } $action = optional_param('action', '', PARAM_ALPHA); $area = optional_param('area', '', PARAM_ALPHAEXT); $client_id = optional_param('client_id', '', PARAM_RAW); $commentid = optional_param('commentid', -1, PARAM_INT); $content = optional_param('content', '', PARAM_RAW); $itemid = optional_param('itemid', '', PARAM_INT); $page = optional_param('page', 0, PARAM_INT); if (!empty($client_id)) { $cmt = new stdclass; $cmt->contextid = $contextid; if (!empty($course)) { $cmt->courseid = $course->id; } $cmt->area = $area; $cmt->itemid = $itemid; $cmt->client_id = $client_id; $comment = new comment($cmt); } switch ($action) { case 'add': $cmt = $comment->add($content); $cmt->count = $comment->count(); if (!empty($cmt) && is_object($cmt)) { $cmt->client_id = $client_id; echo json_encode($cmt); } break; case 'delete': $result = $comment->delete($commentid); if ($result === true) { echo json_encode(array('client_id'=>$client_id, 'commentid'=>$commentid)); } break; case 'get': default: $ret = array(); $comments = $comment->get_comments($page); $ret['list'] = $comments; $ret['count'] = $comment->count(); $ret['pagination'] = $comment->get_pagination($page); $ret['client_id'] = $client_id; echo json_encode($ret); }