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 * Discussion exporter class.
21 * @copyright 2019 Ryan Wyllie <ryan@moodle.com>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 namespace mod_forum\local\exporters;
27 defined('MOODLE_INTERNAL') || die();
29 use mod_forum\local\entities\discussion as discussion_entity;
30 use mod_forum\local\exporters\post as post_exporter;
31 use mod_forum\local\factories\exporter as exporter_factory;
32 use core\external\exporter;
36 * Discussion exporter class.
38 * @copyright 2019 Ryan Wyllie <ryan@moodle.com>
39 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
41 class discussion extends exporter {
42 /** @var discussion_entity $discussion Discussion to export */
48 * @param discussion_entity $discussion Discussion to export
49 * @param array $related The related export data
51 public function __construct(discussion_entity $discussion, array $related = []) {
52 $this->discussion = $discussion;
54 return parent::__construct([], $related);
58 * Return the list of additional properties.
62 protected static function define_other_properties() {
64 'id' => ['type' => PARAM_INT],
65 'forumid' => ['type' => PARAM_INT],
66 'pinned' => ['type' => PARAM_BOOL],
67 'locked' => ['type' => PARAM_BOOL],
68 'istimelocked' => ['type' => PARAM_BOOL],
69 'name' => ['type' => PARAM_TEXT],
70 'firstpostid' => ['type' => PARAM_INT],
74 'name' => ['type' => PARAM_TEXT],
91 'modified' => ['type' => PARAM_INT],
92 'start' => ['type' => PARAM_INT],
93 'end' => ['type' => PARAM_INT],
94 'locked' => ['type' => PARAM_INT],
99 'subscribed' => ['type' => PARAM_BOOL],
100 'favourited' => ['type' => PARAM_BOOL],
105 'subscribe' => ['type' => PARAM_BOOL],
106 'move' => ['type' => PARAM_BOOL],
107 'pin' => ['type' => PARAM_BOOL],
108 'post' => ['type' => PARAM_BOOL],
109 'manage' => ['type' => PARAM_BOOL],
110 'favourite' => ['type' => PARAM_BOOL]
115 'view' => ['type' => PARAM_URL],
120 'viewfirstunread' => [
124 'markasread' => ['type' => PARAM_URL],
125 'subscribe' => ['type' => PARAM_URL],
135 'type' => PARAM_BOOL,
138 'null' => NULL_ALLOWED
141 'type' => PARAM_BOOL,
144 'null' => NULL_ALLOWED
152 * Get the additional values to inject while exporting.
154 * @param renderer_base $output The renderer.
155 * @return array Keys are the property names, values are their values.
157 protected function get_other_values(renderer_base $output) {
159 $capabilitymanager = $this->related['capabilitymanager'];
160 $urlfactory = $this->related['urlfactory'];
161 $favouriteids = isset($this->related['favouriteids']) ? $this->related['favouriteids'] : [];
163 $forum = $this->related['forum'];
164 $forumrecord = $this->get_forum_record();
165 $user = $this->related['user'];
166 $discussion = $this->discussion;
169 if ($discussion->has_group()) {
170 $groupsbyid = $this->related['groupsbyid'];
171 $group = $groupsbyid[$discussion->get_group_id()] ?? null;
173 // We may not have received the group if the caller doesn't want to include it in the export
174 // or if it's been deleted and the discussion record hasn't been updated.
177 'name' => $group->name,
181 if (!$group->hidepicture) {
182 $url = get_group_picture_url($group, $forum->get_course_id(), true);
184 $groupdata['urls']['picture'] = $url;
188 if ($capabilitymanager->can_view_participants($user, $discussion)) {
189 $groupdata['urls']['userlist'] = (new \moodle_url('/user/index.php', [
190 'id' => $forum->get_course_id(),
191 'group' => $group->id,
197 $viewfirstunreadurl = $urlfactory->get_discussion_view_first_unread_post_url_from_discussion($discussion);
199 'id' => $discussion->get_id(),
200 'forumid' => $forum->get_id(),
201 'pinned' => $discussion->is_pinned(),
202 'locked' => $forum->is_discussion_locked($discussion),
203 'istimelocked' => $forum->is_discussion_time_locked($discussion),
204 'name' => format_string($discussion->get_name(), true, [
205 'context' => $this->related['context']
207 'firstpostid' => $discussion->get_first_post_id(),
209 'modified' => $discussion->get_time_modified(),
210 'start' => $discussion->get_time_start(),
211 'end' => $discussion->get_time_end(),
212 'locked' => $discussion->get_locked()
215 'subscribed' => \mod_forum\subscriptions::is_subscribed($user->id, $forumrecord, $discussion->get_id()),
216 'favourited' => in_array($discussion->get_id(), $favouriteids) ? true : false,
219 'subscribe' => $capabilitymanager->can_subscribe_to_discussion($user, $discussion),
220 'move' => $capabilitymanager->can_move_discussion($user, $discussion),
221 'pin' => $capabilitymanager->can_pin_discussion($user, $discussion),
222 'post' => $capabilitymanager->can_post_in_discussion($user, $discussion),
223 'manage' => $capabilitymanager->can_manage_forum($user),
224 'favourite' => $capabilitymanager->can_favourite_discussion($user) // Defaulting to true until we get capabilities sorted
227 'view' => $urlfactory->get_discussion_view_url_from_discussion($discussion)->out(false),
228 'viewfirstunread' => $viewfirstunreadurl->out(false),
229 'markasread' => $urlfactory->get_mark_discussion_as_read_url_from_discussion($forum, $discussion)->out(false),
230 'subscribe' => $urlfactory->get_discussion_subscribe_url($discussion)->out(false)
234 if (!empty($this->related['latestpostid'])) {
235 $data['urls']['viewlatest'] = $urlfactory->get_discussion_view_latest_post_url_from_discussion(
237 $this->related['latestpostid']
241 if ($capabilitymanager->can_pin_discussions($user)) {
242 $data['urls']['pin'] = $urlfactory->get_pin_discussion_url_from_discussion($discussion)->out(false);
246 $data['group'] = $groupdata;
249 $canviewhiddentimedposts = $capabilitymanager->can_view_hidden_posts($user);
250 $canalwaysseetimedpost = $user->id == $discussion->get_user_id() || $canviewhiddentimedposts;
251 $data['timed']['istimed'] = $canalwaysseetimedpost ? $discussion->is_timed_discussion() : null;
252 $data['timed']['visible'] = $canalwaysseetimedpost ? $discussion->is_timed_discussion_visible() : null;
258 * Get the legacy forum record from the forum entity.
262 private function get_forum_record() {
263 $forumdbdatamapper = $this->related['legacydatamapperfactory']->get_forum_data_mapper();
264 return $forumdbdatamapper->to_legacy_object($this->related['forum']);
268 * Returns a list of objects that are related.
272 protected static function define_related() {
274 'legacydatamapperfactory' => 'mod_forum\local\factories\legacy_data_mapper',
275 'context' => 'context',
276 'forum' => 'mod_forum\local\entities\forum',
277 'capabilitymanager' => 'mod_forum\local\managers\capability',
278 'urlfactory' => 'mod_forum\local\factories\url',
279 'user' => 'stdClass',
280 'groupsbyid' => 'stdClass[]',
281 'latestpostid' => 'int?',
282 'favouriteids' => 'int[]?'