Commit | Line | Data |
---|---|---|
2646e9d6 RW |
1 | // This file is part of Moodle - http://moodle.org/ |
2 | // | |
3 | // Moodle is free software: you can redistribute it and/or modify | |
4 | // it under the terms of the GNU General Public License as published by | |
5 | // the Free Software Foundation, either version 3 of the License, or | |
6 | // (at your option) any later version. | |
7 | // | |
8 | // Moodle is distributed in the hope that it will be useful, | |
9 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 | // GNU General Public License for more details. | |
12 | // | |
13 | // You should have received a copy of the GNU General Public License | |
14 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
15 | ||
16 | /** | |
c475fe41 | 17 | * Forum repository class to encapsulate all of the AJAX requests that subscribe or unsubscribe |
2646e9d6 RW |
18 | * can be sent for forum. |
19 | * | |
20 | * @module mod_forum/repository | |
21 | * @package mod_forum | |
22 | * @copyright 2019 Andrew Nicols <andrew@nicols.co.uk> | |
23 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
24 | */ | |
25 | define(['core/ajax'], function(Ajax) { | |
26 | /** | |
27 | * Set the subscription state for a discussion in a forum. | |
28 | * | |
29 | * @param {number} forumId ID of the forum the discussion belongs to | |
30 | * @param {number} discussionId ID of the discussion with the subscription state | |
31 | * @param {boolean} targetState Set the subscribed state. True == subscribed; false == unsubscribed. | |
32 | * @return {object} jQuery promise | |
33 | */ | |
34 | var setDiscussionSubscriptionState = function(forumId, discussionId, targetState) { | |
35 | var request = { | |
36 | methodname: 'mod_forum_set_subscription_state', | |
37 | args: { | |
38 | forumid: forumId, | |
39 | discussionid: discussionId, | |
40 | targetstate: targetState | |
41 | } | |
42 | }; | |
43 | return Ajax.call([request])[0]; | |
44 | }; | |
45 | ||
9b4f09ba P |
46 | var addDiscussionPost = function(postid, subject, message) { |
47 | var request = { | |
48 | methodname: 'mod_forum_add_discussion_post', | |
49 | args: { | |
50 | postid: postid, | |
51 | message: message, | |
52 | subject: subject | |
53 | } | |
54 | }; | |
55 | ||
56 | return Ajax.call([request])[0]; | |
57 | }; | |
58 | ||
2893812e P |
59 | var setDiscussionLockState = function(forumId, discussionId, targetState) { |
60 | var request = { | |
61 | methodname: 'mod_forum_set_lock_state', | |
62 | args: { | |
63 | forumid: forumId, | |
64 | discussionid: discussionId, | |
65 | targetstate: targetState | |
66 | } | |
67 | }; | |
68 | return Ajax.call([request])[0]; | |
69 | }; | |
70 | ||
2646e9d6 RW |
71 | return { |
72 | setDiscussionSubscriptionState: setDiscussionSubscriptionState, | |
2893812e P |
73 | addDiscussionPost: addDiscussionPost, |
74 | setDiscussionLockState: setDiscussionLockState | |
2646e9d6 RW |
75 | }; |
76 | }); |