forked from synergylearning/moodle-format_socialwall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ajax.php
174 lines (122 loc) · 6.23 KB
/
ajax.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* socialwall course format. Display the whole course as "socialwall" made of modules.
*
* @package format_socialwall
* @copyright 2014 Andreas Wagner, Synergy Learning
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
define('AJAX_SCRIPT', true);
require_once(dirname(__FILE__) . '../../../../config.php');
$courseid = required_param('courseid', PARAM_INT); // ... coursemodule id.
$action = required_param('action', PARAM_ALPHA);
$course = $DB->get_record('course', array('id' => $courseid), '*', MUST_EXIST);
require_sesskey(); // Gotta have the sesskey.
require_course_login($course);
// ...start setting up the page.
$context = context_course::instance($course->id, MUST_EXIST);
// ... add all the theme settings.
$course = course_get_format($course)->get_course();
$PAGE->set_context($context);
$PAGE->set_url(new moodle_url('/course/format/socialwall/ajax.php', array('id' => $courseid)));
require_once($CFG->dirroot . '/course/format/socialwall/locallib.php');
require_once($CFG->dirroot . '/course/format/socialwall/classes/local/action_handler.php');
switch ($action) {
case 'postcomment' :
$result = \format_socialwall\local\action_handler::post_comment($course);
if ($result['error'] == 0) {
$renderer = $PAGE->get_renderer('format_socialwall');
$comment = $DB->get_record('format_socialwall_comments', array('id' => $result['commentid']));
$post = $DB->get_record('format_socialwall_posts', array('id' => $comment->postid));
$result['commenthtml'] = $renderer->render_ajax_loaded_comment($post, $context, $comment, $USER, $course);
}
echo json_encode($result);
die;
case 'deletecomment':
$result = \format_socialwall\local\action_handler::delete_comment();
echo json_encode($result);
die;
case 'likepost' :
$result = \format_socialwall\local\action_handler::like_post($course);
echo json_encode($result);
die;
case 'lockpost':
$result = \format_socialwall\local\action_handler::lock_post($course);
echo json_encode($result);
die;
case 'showalldiscussions' :
case 'showallcomments':
$postid = required_param('postid', PARAM_INT);
// Ensure that post exists and get the correct courseid.
if (!$post = $DB->get_record('format_socialwall_posts', array('id' => $postid))) {
print_error('invalidpostid', 'format_socialwall');
}
if ($post->courseid <> $course->id) {
print_error('invalidcourseid', 'format_socialwall');
}
$limitreplies = ($action == 'showalldiscussions') ? 0 : $course->tlnumreplies;
$comments = \format_socialwall\local\comments::instance();
$commentsdata = $comments->get_comments_data($postid, 0, $limitreplies);
$renderer = $PAGE->get_renderer('format_socialwall');
$commentshtml = $renderer->render_ajax_loaded_comments($postid, $context, $commentsdata, $course);
echo json_encode(array('error' => '0', 'postid' => $postid, 'commentshtml' => $commentshtml));
die;
case 'showallreplies':
$replycommentid = required_param('replycommentid', PARAM_INT);
// Ensure that post exists and get the correct courseid.
if (!$comment = $DB->get_record('format_socialwall_comments', array('id' => $replycommentid))) {
print_error('invalidcommentid', 'format_socialwall');
}
if (!$post = $DB->get_record('format_socialwall_posts', array('id' => $comment->postid))) {
print_error('invalidpostid', 'format_socialwall');
}
if ($post->courseid <> $course->id) {
print_error('invalidcourseid', 'format_socialwall');
}
$comments = \format_socialwall\local\comments::instance();
$repliesdata = $comments->get_replies_data($comment);
$renderer = $PAGE->get_renderer('format_socialwall');
$replieshtml = $renderer->render_ajax_loaded_replies($post, $context, $repliesdata, $course);
echo json_encode(array('error' => '0', 'postid' => $post->id,
'replycommentid' => $replycommentid, 'replieshtml' => $replieshtml));
die;
case 'loadmoreposts' :
$posts = \format_socialwall\local\posts::instance($course->id);
$limitfrom = optional_param('limitfrom', 0, PARAM_INT);
// Posts are limited to the max value of $course->tlnumposts in course settings.
$postsdata = $posts->get_timeline_posts($course, $limitfrom);
$renderer = $PAGE->get_renderer('format_socialwall');
$postshtml = $renderer->render_ajax_loaded_posts($course, $postsdata);
$result = array(
'error' => '0', 'poststotal' => $postsdata->poststotal,
'postsloaded' => $postsdata->postsloaded, 'postshtml' => $postshtml);
echo json_encode($result);
die;
case 'storeformparams' :
// Here we store the values of postformelement for the case the user turns editing after
// he has done some input.
$postid = optional_param('postid', 0, PARAM_INT);
$cache = cache::make('format_socialwall', 'postformparams');
$formparams = $cache->get($course->id.'_'.$postid);
$formparams['posttext'] = optional_param('posttext', '', PARAM_RAW);
$formparams['togroupid'] = optional_param('togroupid', 0, PARAM_INT);
$formparams['poststatus'] = optional_param('poststatus', 0, PARAM_INT);
$cache->set($course->id.'_'.$postid, $formparams);
die;
default :
print_error('unknown action: ' . $action);
}