MDL-36941 core: convert existing api to use new table structure
[moodle.git] / lib / classes / message / manager.php
CommitLineData
349f98ad
PS
1<?php
2// This file is part of Moodle - http://moodle.org/
3//
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.
8//
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.
13//
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/>.
16
17/**
18 * New messaging manager class.
19 *
20 * @package core_message
21 * @since Moodle 2.8
22 * @copyright 2014 Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 * @author Petr Skoda <petr.skoda@totaralms.com>
25 */
26
27namespace core\message;
28
29defined('MOODLE_INTERNAL') || die();
30
31/**
32 * Class used for various messaging related stuff.
33 *
34 * Note: Do NOT use directly in your code, it is intended to be used from core code only.
35 *
36 * @access private
37 *
38 * @package core_message
39 * @since Moodle 2.8
40 * @copyright 2014 Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
41 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
42 * @author Petr Skoda <petr.skoda@totaralms.com>
43 */
44class manager {
45 /** @var array buffer of pending messages */
46 protected static $buffer = array();
47
48 /**
49 * Do the message sending.
50 *
51 * NOTE: to be used from message_send() only.
52 *
a29bcf78 53 * @todo MDL-55449 Drop support for stdClass in Moodle 3.6
cc350fd9 54 * @param \core\message\message $eventdata fully prepared event data for processors
349f98ad
PS
55 * @param \stdClass $savemessage the message saved in 'message' table
56 * @param array $processorlist list of processors for target user
883ce421 57 * @return int $messageid the id from 'messages' (false is not returned)
349f98ad 58 */
c6f45ef8 59 public static function send_message($eventdata, \stdClass $savemessage, array $processorlist) {
349f98ad 60 global $CFG;
c6f45ef8 61
a29bcf78 62 // TODO MDL-55449 Drop support for stdClass in Moodle 3.6.
c6f45ef8
AA
63 if (!($eventdata instanceof \stdClass) && !($eventdata instanceof message)) {
64 // Not a valid object.
65 throw new \coding_exception('Message should be of type stdClass or \core\message\message');
66 }
67
a29bcf78 68 // TODO MDL-55449 Drop support for stdClass in Moodle 3.6.
cc350fd9
AD
69 if ($eventdata instanceof \stdClass) {
70 if (!isset($eventdata->courseid)) {
71 $eventdata->courseid = null;
72 }
73
0e8b5160 74 debugging('eventdata as \stdClass is deprecated. Please use \core\message\message instead.', DEBUG_DEVELOPER);
cc350fd9
AD
75 }
76
349f98ad
PS
77 require_once($CFG->dirroot.'/message/lib.php'); // This is most probably already included from messagelib.php file.
78
79 if (empty($processorlist)) {
80 // Trigger event for sending a message - we need to do this before marking as read!
883ce421
MN
81 if (!$eventdata->notification) {
82 \core\event\message_sent::create_from_ids(
83 $eventdata->userfrom->id,
84 $eventdata->userto->id,
85 $savemessage->id,
86 $eventdata->courseid
cc350fd9 87 )->trigger();
883ce421 88 }
349f98ad 89
883ce421 90 if ($eventdata->notification or empty($CFG->messaging)) {
349f98ad
PS
91 // If they have deselected all processors and its a notification mark it read. The user doesn't want to be bothered.
92 // The same goes if the messaging is completely disabled.
883ce421
MN
93 if ($eventdata->notification) {
94 \core_message\api::mark_notification_as_read($eventdata->userto->id, $savemessage->id);
95 } else {
96 \core_message\api::mark_message_as_read($eventdata->userto->id, $savemessage->id);
97 }
349f98ad
PS
98 }
99
883ce421 100 return $savemessage->id;
349f98ad
PS
101 }
102
103 // Let the manager do the sending or buffering when db transaction in progress.
104 return self::send_message_to_processors($eventdata, $savemessage, $processorlist);
105 }
106
107 /**
108 * Send message to message processors.
109 *
c6f45ef8 110 * @param \stdClass|\core\message\message $eventdata
349f98ad
PS
111 * @param \stdClass $savemessage
112 * @param array $processorlist
113 * @return int $messageid
114 */
c6f45ef8
AA
115 protected static function send_message_to_processors($eventdata, \stdClass $savemessage, array
116 $processorlist) {
349f98ad
PS
117 global $CFG, $DB;
118
119 // We cannot communicate with external systems in DB transactions,
120 // buffer the messages if necessary.
121
122 if ($DB->is_transaction_started()) {
123 // We need to clone all objects so that devs may not modify it from outside later.
124 $eventdata = clone($eventdata);
125 $eventdata->userto = clone($eventdata->userto);
126 $eventdata->userfrom = clone($eventdata->userfrom);
127
128 // Conserve some memory the same was as $USER setup does.
129 unset($eventdata->userto->description);
130 unset($eventdata->userfrom->description);
131
132 self::$buffer[] = array($eventdata, $savemessage, $processorlist);
133 return $savemessage->id;
134 }
135
349f98ad 136 foreach ($processorlist as $procname) {
c6f45ef8
AA
137 // Let new messaging class add custom content based on the processor.
138 $proceventdata = ($eventdata instanceof message) ? $eventdata->get_eventobject_for_processor($procname) : $eventdata;
685daf1a
MN
139 $stdproc = new \stdClass();
140 $stdproc->name = $procname;
141 $processor = \core_message\api::get_processed_processor_object($stdproc);
142 if (!$processor->object->send_message($proceventdata)) {
349f98ad 143 debugging('Error calling message processor ' . $procname);
349f98ad
PS
144 }
145 }
146
147 // Trigger event for sending a message - must be done before marking as read.
883ce421
MN
148 if (!$eventdata->notification) {
149 \core\event\message_sent::create_from_ids(
150 $eventdata->userfrom->id,
151 $eventdata->userto->id,
152 $savemessage->id,
153 $eventdata->courseid
cc350fd9 154 )->trigger();
883ce421 155 }
349f98ad 156
883ce421
MN
157 // If messaging is disabled and they previously had forum notifications handled by the popup processor
158 // or any processor that puts a row in message_working then the notification will remain forever
159 // unread. To prevent this mark the message read if messaging is disabled.
160 if (empty($CFG->messaging) && $eventdata->notification) {
161 \core_message\api::mark_notification_as_read($eventdata->userto->id, $savemessage->id);
162 }
349f98ad 163
883ce421
MN
164 // If there is no more processors that want to process this we can mark the message as read.
165 if ($DB->count_records('message_working', array('unreadmessageid' => $savemessage->id)) == 0) {
166 if ($eventdata->notification) {
167 \core_message\api::mark_notification_as_read($eventdata->userto->id, $savemessage->id);
168 } else {
169 \core_message\api::mark_message_as_read($eventdata->userto->id, $savemessage->id);
170 }
349f98ad
PS
171 }
172
883ce421 173 return $savemessage->id;
349f98ad
PS
174 }
175
176 /**
177 * Notification from DML layer.
178 *
179 * Note: to be used from DML layer only.
180 */
181 public static function database_transaction_commited() {
182 if (!self::$buffer) {
183 return;
184 }
185 self::process_buffer();
186 }
187
188 /**
189 * Notification from DML layer.
190 *
191 * Note: to be used from DML layer only.
192 */
193 public static function database_transaction_rolledback() {
194 self::$buffer = array();
195 }
196
197 /**
198 * Sent out any buffered messages if necessary.
199 */
200 protected static function process_buffer() {
201 // Reset the buffer first in case we get exception from processor.
202 $messages = self::$buffer;
203 self::$buffer = array();
204
205 foreach ($messages as $message) {
206 list($eventdata, $savemessage, $processorlist) = $message;
207 self::send_message_to_processors($eventdata, $savemessage, $processorlist);
208 }
209 }
210}