'); /** * Implementation of hook_help(). */ function messaging_help($path, $arg) { switch ($path) { case 'admin/help#messaging': $output = '
' . t('The messaging module is the engine that handles outgoing messages and message queueing for different sending methods.') . '
'; $output .= '' . t('You need to enable one or more of the included plug-ins to be able to actually take advantage of it.') . '
'; return $output; default: if ($arg[0] == 'admin') { if ($arg[1] == 'settings' && $arg[2] == 'filters') { return ''. t('Filters are used also for messaging. If the input format is to be used only for messaging you don\'t need to allow any role for it.') .'
'; } if ($arg[1] == 'messaging') { require_once drupal_get_path('module', 'messaging') .'/messaging.admin.inc'; return messaging_admin_help($path, $arg); } } } } /** * Implementation of hook_menu() */ function messaging_menu() { $items['admin/messaging'] = array( 'title' => 'Messaging', 'access arguments' => array('administer messaging'), 'description' => 'Administer and configure messaging', 'page callback' => 'system_admin_menu_block_page', 'file' => 'system.admin.inc', 'file path' => drupal_get_path('module', 'system'), ); $items['admin/messaging/settings'] = array( 'title' => 'Messaging settings', 'description' => 'Configuration of messaging framework', 'page callback' => 'drupal_get_form', 'page arguments' => array('messaging_admin_settings'), 'access arguments' => array('administer messaging'), 'file' => 'messaging.admin.inc', ); $items['admin/messaging/settings/overview'] = array( 'title' => 'Messaging', 'description' => 'Configuration of sending methods', 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); $items['admin/messaging/settings/method'] = array( 'title' => 'Send methods', 'description' => 'Configuration of sending methods', 'page callback' => 'drupal_get_form', 'page arguments' => array('messaging_admin_method_settings'), 'access arguments' => array('administer messaging'), 'weight' => -10, 'file' => 'messaging.admin.inc', 'type' => MENU_LOCAL_TASK, ); $items['admin/messaging/settings/method/overview'] = array( 'title' => 'General', 'description' => 'General settings', 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); $items['admin/messaging/template'] = array( 'title' => 'Message templates', 'description' => 'Configuration of message templates', 'page callback' => 'messaging_admin_template', 'access arguments' => array('administer messaging'), 'file' => 'messaging.admin.inc', ); $items['admin/messaging/template/edit'] = array( 'title' => 'Message templates', 'page callback' => 'messaging_admin_template_edit', 'type' => MENU_CALLBACK, 'access arguments' => array('administer messaging'), 'file' => 'messaging.admin.inc', ); return $items; } /** * Implementation of hook_perm() */ function messaging_perm() { return array('administer messaging'); } /** * Implementation of hook_user(). * * Adds fieldset and default sending method setting. */ function messaging_user($type, $edit, &$user, $category = NULL) { switch ($type) { case 'form': if ($category == 'account' && ($list = messaging_method_list($user))) { $form['messaging'] = array( '#type' => 'fieldset', '#title' => t('Messaging settings'), '#weight' => 5, '#collapsible' => TRUE, ); $form['messaging']['messaging_default'] = array( '#type' => 'select', '#title' => t('Default send method'), '#default_value' => messaging_method_default($user), '#options' => $list, '#description' => t('Default sending method for getting messages from this system.'), '#disabled' => count($list) == 1, ); return $form; } break; } } /** Messaging API **/ /** * Send message to user represented by account * * We are applying same output filter for everybody, depending on send method * * The final rendering of the message depends on send method too. I.e. a mail messaging * method may want to insert '--' before the body footer. * * @ TODO Consider whether it makes sense to allow users decide on formatting * * @param $account * User object to recieve message. * @param $message * Array of message parts that will be compiled depending on send method. * Mandatory message parts, which may have nexted parts are: * - 'type' * - 'subject' * - 'body'. The message body may have 'header', 'content', 'footer', 'etc' * @param $method * Optional send method. Defaults to the user account predefined method */ function messaging_message_send_user($account, &$message, $method = NULL, $queue = 0) { $message = (object)$message; // Get default sending method, or default for this user account $method = $method ? $method : messaging_method_default($account); $message->account = $account; messaging_debug('Sending message to user', array('message' => $message)); // Send the message or, if no destination, abort the message sending if ($destination = messaging_user_destination($account, $method, $message)) { messaging_debug('Found destination for user, sending message', array('method' => $method, 'destination' => $destination)); return messaging_message_send(array($destination), $message, $method, $queue); } else { // Save the message, let it there for further reference messaging_log('Destination not available for user account', array('method' => $method, 'account' => $account)); $message->method = $method; $info = messaging_method_info($method, NULL, array()); $message->destination = 'ERROR'; $message = messaging_message_prepare($message, $info); $message = messaging_message_render($message, $info); $message->cron = $message->queue = 0; $message->log = 1; $message->success = FALSE; $message = messaging_store('save', $message); return FALSE; } } /** * Get destination from user account. * * This will handle also anonymous user accounts that should have a 'destination' property */ function messaging_user_destination($account, $method, $message = NULL) { if ($info = messaging_method_info($method)) { if (($property = messaging_method_info($method, 'destination')) && !empty($account->$property)) { // Get destination property from user account return $account->$property; } elseif (empty($account->uid) && !empty($account->destination)) { // Anonymous account with destination property return $account->destination; } elseif ($callback = _messaging_callback_get($info, 'destination')) { // We have a mapping function, it may also work for anonymous users return _messaging_callback_invoke($callback, $account, $method, $message); } } } /** * Send message to array of destinations. The message is rendered just once. * * The $message array may have the following elements * 'subject' => Message subject, may be already rendered or not * 'body' => Message content, may be already rendered or not * 'params' => Optional message params, indexed by sending method group * I.e. params for mail methods will be in $message['params']['mail'] * 'render' => Optional flag to mark the message subject and body as rendered * 'sender' => Optional int to identify message sender, may be $user->uid * 'sender_account' => Optional user account to use as message sender * @param $destinations * Array of destinations for sending. * The element type depends on sending method so it can be a list of e-mail addresses, user accounts, etc * @param $message * Message object or array, not rendered * @param $method * Sending method. Unlike for messaging_message_send_user() for which the sending method may be user's default * it is not an optional parameter for this function. * @param $queue * Optional flag, 0 for normal queueing, 1 to force queueing. * We may want to force queueing for bulk messaging. Otherwise it will depend on the sending method * wether to queue the messages (for pull methods) or not (push methods) */ function messaging_message_send($destinations, &$message, $method, $queue = 0) { messaging_debug('Sending message', array('destinations' => $destinations, 'message' => $message, 'method' => $method, 'queue' => $queue)); // Get default sending method, or default for this user account $method = $method ? $method : messaging_method_default(NULL); $info = messaging_method_info($method, NULL, array()); // Convert into an object and add all the information into the message object $message = (object)$message; $message->method = $method; $message->source['type'] = 'outgoing'; $message->destinations = $destinations; $message->queue = $queue; $message->sent = $message->queued = 0; // Message preprocessing, before sending $message->process = TRUE; $message = messaging_message_callbacks(array('prepare', 'render', 'presend'), $message, $info); // If queue / send call the next hooks if (!empty($message->test)) { // We are doing a test run so we don't send the message messaging_log('Emulating message sending (test run)', array('message' => $message, 'destinations' => $destinations)); $message->success = TRUE; } else { if ($message->process) { if ($message->queue) { $callbacks = array('queue', 'afterqueue'); } else { $callbacks = array('multisend', 'aftersend'); } $message = messaging_message_callbacks($callbacks, $message, $info); } } // This will return true if the message was sent or queued for delivery if (!isset($message->success)) { $message->success = $message->sent || $message->queued; } return $message->success; } /** * Invoke callbacks */ function messaging_message_invoke($callback_list, $message, $info) { if (is_string($callback_list)) { $callback_list = array($callback_list); } // Any of the functions can 'swallow' the message and stop processing while ($message->process && ($callback = array_shift($callback_list))) { $message = _messaging_callback_invoke($callback, $message, $info); } return $message; } /** * Message default callback: preprocessing * * Decide on queue, log, cron and send options, prepare parameters */ function messaging_message_prepare($message, $info) { global $user; messaging_debug('Preparing message for sending', array('message' => $message, 'info' => $info)); // Set some default values if not already set foreach (array('sent' => 0, 'queue' => 0, 'cron' => 0, 'log' => (bool)variable_get('messaging_log', 0), 'sender' => $user->uid) as $field => $value) { if (!isset($message->$field)) { $message->$field = $value; } } // If the messaging method is of type push, cron processing will be enabled if ($message->queue && ($info['type'] & MESSAGING_TYPE_PUSH)) { $message->cron = 1; } // It will be queued always for pull methods, cron disabled though so it will wait till it's pulled if (!$message->queue && ($info['type'] & MESSAGING_TYPE_PULL)) { $message->queue = 1; $message->cron = 0; } // Provides a hook for other modules to modify the message before sending foreach (module_implements('message_alter') as $module) { $function = $module.'_message_alter'; $function($message, $info); } return $message; } /** * Message default callback: send iterating over all destinations */ function messaging_message_multisend($message, $info) { $success = TRUE; foreach ($message->destinations as $to) { // Be careful with the order of function && value, so they both are evaluated $success = messaging_message_send_out($to, $message, $message->method) && $success; } // If sent, set time. If failed force logging. $success ? ($message->sent = time()) : ($message->log = 1); $message->success = $success; return $message; } /** * Queue message for next delivery * * @todo Improve storage so we can store only once but multiple rows for destinations */ function messaging_message_queue($message, $info = array()) { $message->queued = 1; return messaging_store('save', $message); } /** * Store messages, custom delivery */ function messaging_message_store($message, $info = array()) { $message->stored = 1; if (empty($message->mqid)) { $message = messaging_store('save', $message); } return $message; } /** * Message default after send callback: store, log, etc.. */ function messaging_message_aftersend($message, $info) { // Depending on parameters and what's happened so far we make the final queue/log decision if (empty($message->mqid) && $message->log) { messaging_store('save', $message); } return $message; } /** * Message logging callback */ function messaging_message_log($message, $info) { if (empty($message->mqid)) { messaging_store('save', $message); } return $message; } /** * Send for real, finally invoking method's callback function * * This sends messages one by one, so the callback function only need to support a single destination * Specific parameters for this message group are processed here too * * @param $destination * Single destination, may be email, user account, etc... * @param $message * Message object * @param $method * Sending method * * @return boolean * Message successfully sent */ function messaging_message_send_out($destination, $message, $method) { if ($callback = messaging_method_info($method, 'send callback')) { // Check for specific parameters for this sending method $group = messaging_method_info($method, 'group'); $params = (!empty($message->params[$group])) ? $message->params[$group] : array(); return _messaging_callback_invoke($callback, $destination, $message, $params); } else { watchdog('messaging', 'Message could not be delivered for method %method', array('%method' => $method), WATCHDOG_ERROR); return FALSE; } } /** * Implementation of hook_cron() * * Process queued messages for delivery */ function messaging_cron() { messaging_store('queue_process'); messaging_store('queue_cleanup'); } /** * Pull pending messages for given methods and user accounts * * Each returned message will be an array with the following elements * - 'uid', destination uid * - 'sender', originating uid * - 'subject', message subject to be rendered * - 'body', message body to be rendered * @param $method * Send method * @param $users * User id or array of user id's * @param $limit * Optional limit for number of messages * @param $delete * Optional whether to delete messages when fetching * @return array() * Array of pending messages. */ function messaging_pull_pending($method, $users = NULL, $limit = 0, $delete = TRUE) { $params['method'] = $method; $params['queue'] = 1; if (!is_null($users)) { $params['uid'] = $users; } $messages = messaging_store('get', $params); // Not exactly delete but mark as sent if ($messages && $delete) { messaging_store('sent', array_keys($messages)); } return $messages; } /** * Returns list of messaging methods for a type * * I.e. all messaging methods of pull type */ function messaging_method_type($type) { $result = array(); foreach (messaging_method_info() as $method => $info) { if ($info['type'] & $type) { $result[$method] = $info; } } return $result; } /** * List sending methods * * @param $account * Optional user account, for checking permissions against this account */ function messaging_method_list($account = NULL) { $info = messaging_method_info(NULL, 'name'); if ($account) { foreach (array_keys($info) as $method) { // Check access for each method and check destination if (!messaging_method_permission($method, $account) || !messaging_user_destination($account, $method)) { unset($info[$method]); } } } return $info; } /** * Check permission for method and account * * @param $method * Sending method id * @param $account * User account to check permission */ function messaging_method_permission($method, $account = NULL) { $info = messaging_method_info($method); // This sending method may be disabled if (!$info) { return FALSE; } elseif (!empty($info['access'])) { return user_access($info['access'], $account); } else { return TRUE; } } /** * Returns default messaging method */ function messaging_method_default($account = NULL) { if ($account && !empty($account->messaging_default) && messaging_method_permission($account->messaging_default, $account)) { return $account->messaging_default; } elseif ($method = variable_get('messaging_default_method', '')) { return $method; } else { return key(messaging_method_info()); } } /** * Get setting from user account or get default setting if not available * * If first checks for a 'messaging_$name' property in the user account * and returns the value of the variable 'messaging_default_$name' if not set * * @param $name * Option name * @param $account * Optional account to check setting for * @param $default * Default value if no option set */ function messaging_user_setting($name, $account = NULL, $default = NULL) { $variable = 'messaging_' . $name; if ($account && isset($account->$variable)) { return $account->variable; } else { return variable_get('messaging_default_' . $name, $default); } } /** * Returns parts of messages, that may be formatted for each sending method * * @ TODO Review logic, optimizations, text pre-fetching * @ TODO Glue text in a method-dependent way * * First checks for message, key, method * Then checks for message, key for method 'default' * Finally checks default values from modules and hook_messaging() * * @param $group * String, specified by the module where the message originates. ie 'subscriptions-event'. * @param $key * String, key for the desired message part. * @param $method * String the mailing method that should be used. OPTIONAL * @param $getdefault * Boolean, whether to use the default if a specific message isn't available for the used method. OPTIONAL, Defaults to true. * * @return * Assembled text of a message part. */ function messaging_message_part($group, $key, $method = 'default', $getdefault = TRUE) { static $cache; if (isset($cache[$group][$key][$method])) { $text_part = $cache[$group][$key][$method]; } else { if ($method && ($text = db_result(db_query("SELECT message FROM {messaging_message_parts} WHERE type = '%s' AND msgkey = '%s' AND method = '%s'", $group, $key, $method)))){ $text_part = $text; } elseif ($method == 'default' && ($text = messaging_message_info($group, $key))) { // Retry with default but also set the cache for this method $text_part = $text; } elseif ($method != 'default' && $getdefault && ($text = messaging_message_part($group, $key, 'default'))) { $text_part = $text; } else { $text_part = FALSE; } // Convert array into plain text if ($text_part && is_array($text_part)) { $text_part = implode("\n", $text_part); } $cache[$group][$key][$method] = $text_part; } return $text_part ? $text_part : ''; } /** * Returns parts of messages, that may be formatted for each sending method * * @param $group * Message group. * @param $key * Optional message key inside the group. Returns all keys if null. * @return array() * Depending on parameters, may be all message groups and keys or only a specific one. */ function messaging_message_info($group, $key = NULL) { static $info; if (!isset($info[$group])) { $info[$group] = module_invoke_all('messaging', 'messages', $group); } return _messaging_info($info, $group, $key); } /** * Returns information about message groups * * @param $group * Optional message group. Returns all groups if null. * @param $key * Optional message key inside the group. Returns all keys if null. * @return array() * Depending on parameters, may be all message groups and keys or only a specific one. */ function messaging_message_group($group = NULL, $key = NULL) { static $info; if (!isset($info)) { $info = module_invoke_all('messaging', 'message groups'); } return _messaging_info($info, $group, $key); } /** * Returns messaging methods properties * * @param $method * Optional, Method to get properties for, none or NULL for all methods * @param $property * Optional, Property to get, none or NULL for all properties * @param $default * Optional default value to return when there's not that property for the method */ function messaging_method_info($method = NULL, $property = NULL, $default = NULL, $refresh = FALSE) { static $info, $properties; if (!$info || $refresh) { $info = module_invoke_all('messaging', 'send methods'); // Merge settings for each enabled method, just default filter if variable not set $default_settings = array('filter' => variable_get('messaging_default_filter', '')); foreach (array_keys($info) as $name) { $info[$name] = array_merge($info[$name], variable_get('messaging_method_' . $name, $default_settings)); } // Allow altering by other modules drupal_alter('messaging_methods', $info); } return _messaging_info($info, $method, $property, $default); } /** Message composition and rendering **/ /** * Renders full message with header and body * * @param $message * Message object * @param $info * Sending method info for rendering (glue and filter options) */ function messaging_message_render($message, $info) { if (!empty($message->rendered)) { return $message; } messaging_debug('Rendering message', array('message' => $message, 'info' => $info)); // Apply footer prefix if provided and the message has a footer element. // Note: If message body is a string the final isset($message['body']['footer']) will be true if (!empty($info['footer']) && is_array($message->body) && isset($message->body['footer'])) { $message->body['footer'] = array('#prefix' => $info['footer'], '#text' => $message->body['footer']); } // Render separately subject and body info, adding default parameters $info += array('glue' => '', 'subject_glue' => '', 'filter' => NULL); $message->subject = messaging_check_subject(messaging_text_render($message->subject, $info['subject_glue'])); $message->body = messaging_text_render($message->body, $info['glue'], $info['filter']); $message->rendered = 1; messaging_debug('Rendering message', array('message' => $message, 'info' => $info)); return $message; } /** * Composes message from different parts, recursively and applies filter * * Filter is applied now only once * * @param $text * Simple string or array of message parts * It may have named elements like #prefix and #text * or it may be single strings to render straight forward * @param $glue * Text to glue all lines together * @param $filter * Input format to apply to the results */ function messaging_text_render($text, $glue = '', $filter = NULL) { $output = ''; if (is_array($text)) { if (isset($text['#prefix'])) { $output .= $text['#prefix'].$glue; unset($text['#prefix']); } if (isset($text['#text'])) { $output .= $text['#text']; return $output; } foreach (element_children($text) as $key) { // The filter is not passed along $text[$key] = messaging_text_render($text[$key], $glue); } $output .= implode($glue, $text); } else { $output .= $text; } // The filter is applied now only once if ($filter) { $output = check_markup($output, $filter, FALSE); } return $output; } /** * Implementation of hook_filter(). Contains a basic set of essential filters. * - Plain text: * Strips out all html * Replaces html entities * - HTML to text * Same with some text formatting * Relies on html_to_text module */ function messaging_filter($op, $delta = 0, $format = -1, $text = '') { switch ($op) { case 'list': $info[0] = t('Plain text'); $info[1] = t('HTML to text'); return $info; case 'no cache': return TRUE; // No caching at all, at least for development case 'description': switch ($delta) { case 0: return t('Filters out all HTML tags and replaces HTML entities by characters, respects HTML line breaks.'); case 1: return t('Replaces HTML tags and entities with plain text formatting, moving links at the end.'); } case 'process': switch ($delta) { case 0: return messaging_check_plain($text, "\n"); case 1: return drupal_html_to_text($text); default: return $text; } case 'settings': return; default: return $text; } } /** * HTML to text simple filtering. * - Replace some tags with line endings: p, br, hr, li, h1, h2, h3, h4 * Strip out all HTML tags and decode entities * * @param $text * Text to clean up * @param $break * Optional character to replace tags for line breaks */ function messaging_check_plain($text, $break = NULL) { // This have to be done before the filtering because tag markers may have been previously parsed with check_plain $text = str_replace(array('<', '>'), array('<', '>'), $text); // Clean up the HTML and replace some tags with line endings if (isset($break)) { $text = _filter_htmlcorrector($text); $text = str_replace(array('', '