forked from open-lms-open-source/moodle-mod_hsuforum
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubscribe.php
218 lines (202 loc) · 8.42 KB
/
subscribe.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<?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/>.
/**
* Subscribe to or unsubscribe from a forum or manage forum subscription mode
*
* This script can be used by either individual users to subscribe to or
* unsubscribe from a forum (no 'mode' param provided), or by forum managers
* to control the subscription mode (by 'mode' param).
* This script can be called from a link in email so the sesskey is not
* required parameter. However, if sesskey is missing, the user has to go
* through a confirmation page that redirects the user back with the
* sesskey.
*
* @package mod_hsuforum
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @copyright Copyright (c) 2012 Blackboard Inc. (http://www.blackboard.com)
* @author Mark Nielsen
*/
require(__DIR__.'/../../config.php');
require_once($CFG->dirroot.'/mod/hsuforum/lib.php');
$id = required_param('id', PARAM_INT); // the forum to subscribe or unsubscribe to
$mode = optional_param('mode', null, PARAM_INT); // the forum's subscription mode
$user = optional_param('user', 0, PARAM_INT); // userid of the user to subscribe, defaults to $USER
$sesskey = optional_param('sesskey', null, PARAM_RAW); // sesskey
$url = new moodle_url('/mod/hsuforum/subscribe.php', array('id'=>$id));
if (!is_null($mode)) {
$url->param('mode', $mode);
}
if ($user !== 0) {
$url->param('user', $user);
}
if (!is_null($sesskey)) {
$url->param('sesskey', $sesskey);
}
$PAGE->set_url($url);
$forum = $DB->get_record('hsuforum', array('id' => $id), '*', MUST_EXIST);
$course = $DB->get_record('course', array('id' => $forum->course), '*', MUST_EXIST);
$cm = get_coursemodule_from_instance('hsuforum', $forum->id, $course->id, false, MUST_EXIST);
$context = context_module::instance($cm->id);
if ($user) {
require_sesskey();
if (!has_capability('mod/hsuforum:managesubscriptions', $context)) {
print_error('nopermissiontosubscribe', 'hsuforum');
}
$user = $DB->get_record('user', array('id' => $user), '*', MUST_EXIST);
} else {
$user = $USER;
}
if (isset($cm->groupmode) && empty($course->groupmodeforce)) {
$groupmode = $cm->groupmode;
} else {
$groupmode = $course->groupmode;
}
if ($groupmode && !hsuforum_is_subscribed($user->id, $forum) && !has_capability('moodle/site:accessallgroups', $context)) {
if (!groups_get_all_groups($course->id, $USER->id)) {
print_error('cannotsubscribe', 'hsuforum');
}
}
require_login($course, false, $cm);
if (is_null($mode) and !is_enrolled($context, $USER, '', true)) { // Guests and visitors can't subscribe - only enrolled
$PAGE->set_title($course->shortname);
$PAGE->set_heading($course->fullname);
if (isguestuser()) {
echo $OUTPUT->header();
echo $OUTPUT->confirm(get_string('subscribeenrolledonly', 'hsuforum').'<br /><br />'.get_string('liketologin'),
get_login_url(), new moodle_url('/mod/hsuforum/view.php', array('f'=>$id)));
echo $OUTPUT->footer();
exit;
} else {
// There should not be any links leading to this place, just redirect.
redirect(
new moodle_url('/mod/hsuforum/view.php', array('f'=>$id)),
get_string('subscribeenrolledonly', 'hsuforum'),
null,
\core\output\notification::NOTIFY_ERROR
);
}
}
$returnto = optional_param('backtoindex',0,PARAM_INT)
? "index.php?id=".$course->id
: "view.php?f=$id";
if (!is_null($mode) and has_capability('mod/hsuforum:managesubscriptions', $context)) {
require_sesskey();
switch ($mode) {
case HSUFORUM_CHOOSESUBSCRIBE : // 0
hsuforum_forcesubscribe($forum->id, HSUFORUM_CHOOSESUBSCRIBE);
redirect(
$returnto,
get_string('everyonecannowchoose', 'hsuforum'),
null,
\core\output\notification::NOTIFY_SUCCESS
);
break;
case HSUFORUM_FORCESUBSCRIBE : // 1
hsuforum_forcesubscribe($forum->id, HSUFORUM_FORCESUBSCRIBE);
redirect(
$returnto,
get_string('everyoneisnowsubscribed', 'hsuforum'),
null,
\core\output\notification::NOTIFY_SUCCESS
);
break;
case HSUFORUM_INITIALSUBSCRIBE : // 2
if ($forum->forcesubscribe <> HSUFORUM_INITIALSUBSCRIBE) {
$users = hsuforum_get_potential_subscribers($context, 0, 'u.id, u.email', '');
foreach ($users as $user) {
hsuforum_subscribe($user->id, $forum->id);
}
}
hsuforum_forcesubscribe($forum->id, HSUFORUM_INITIALSUBSCRIBE);
redirect(
$returnto,
get_string('everyoneisnowsubscribed', 'hsuforum'),
null,
\core\output\notification::NOTIFY_SUCCESS
);
break;
case HSUFORUM_DISALLOWSUBSCRIBE : // 3
hsuforum_forcesubscribe($forum->id, HSUFORUM_DISALLOWSUBSCRIBE);
redirect(
$returnto,
get_string('noonecansubscribenow', 'hsuforum'),
null,
\core\output\notification::NOTIFY_SUCCESS
);
break;
default:
print_error(get_string('invalidforcesubscribe', 'hsuforum'));
}
}
if (hsuforum_is_forcesubscribed($forum)) {
redirect(
$returnto,
get_string('everyoneisnowsubscribed', 'hsuforum'),
null,
\core\output\notification::NOTIFY_SUCCESS
);
}
$info = new stdClass();
$info->name = fullname($user);
$info->forum = format_string($forum->name);
if (hsuforum_is_subscribed($user->id, $forum->id)) {
if (is_null($sesskey)) { // we came here via link in email
$PAGE->set_title($course->shortname);
$PAGE->set_heading($course->fullname);
echo $OUTPUT->header();
echo $OUTPUT->confirm(get_string('confirmunsubscribe', 'hsuforum', format_string($forum->name)),
new moodle_url($PAGE->url, array('sesskey' => sesskey())), new moodle_url('/mod/hsuforum/view.php', array('f' => $id)));
echo $OUTPUT->footer();
exit;
}
require_sesskey();
if (hsuforum_unsubscribe($user->id, $forum->id)) {
redirect(
$returnto,
get_string('nownotsubscribed', 'hsuforum', $info),
null,
\core\output\notification::NOTIFY_SUCCESS
);
} else {
print_error('cannotunsubscribe', 'hsuforum', get_local_referer(false));
}
} else { // subscribe
if ($forum->forcesubscribe == HSUFORUM_DISALLOWSUBSCRIBE &&
!has_capability('mod/hsuforum:managesubscriptions', $context)) {
print_error('disallowsubscribe', 'hsuforum', get_local_referer(false));
}
if (!has_capability('mod/hsuforum:viewdiscussion', $context)) {
print_error('noviewdiscussionspermission', 'hsuforum', get_local_referer(false));
}
if (is_null($sesskey)) { // we came here via link in email
$PAGE->set_title($course->shortname);
$PAGE->set_heading($course->fullname);
echo $OUTPUT->header();
echo $OUTPUT->confirm(get_string('confirmsubscribe', 'hsuforum', format_string($forum->name)),
new moodle_url($PAGE->url, array('sesskey' => sesskey())), new moodle_url('/mod/hsuforum/view.php', array('f' => $id)));
echo $OUTPUT->footer();
exit;
}
require_sesskey();
hsuforum_subscribe($user->id, $forum->id);
redirect(
$returnto,
get_string('nowsubscribed', 'hsuforum', $info),
null,
\core\output\notification::NOTIFY_SUCCESS
);
}