aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/notification.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-25 12:05:13 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-25 12:05:13 +0000
commitd36689c70d06c08cc5aaf6c9edaa0b29b5c92142 (patch)
tree25e9831164eeeb1346cb2a95d37f38800361a9d0 /engine/lib/notification.php
parenta84d840c9d037e23dfb65577d44bd02faf50d997 (diff)
downloadelgg-d36689c70d06c08cc5aaf6c9edaa0b29b5c92142.tar.gz
elgg-d36689c70d06c08cc5aaf6c9edaa0b29b5c92142.tar.bz2
Fixes #84: Method for retrieving preferences for a user and notifying accordingly
http://trac.elgg.org/elgg/ticket/84 git-svn-id: https://code.elgg.org/elgg/trunk@1120 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/notification.php')
-rw-r--r--engine/lib/notification.php134
1 files changed, 93 insertions, 41 deletions
diff --git a/engine/lib/notification.php b/engine/lib/notification.php
index 30dd8da99..6be6ae524 100644
--- a/engine/lib/notification.php
+++ b/engine/lib/notification.php
@@ -28,15 +28,23 @@
* This function registers a handler for a given notification type (eg "email")
*
* @param string $method The method
- * @param string $handler The handler function, in the format "handler($to_guid, $message, array $params = NULL)"
+ * @param string $handler The handler function, in the format "handler(ElggEntity $from, ElggUser $to, $subject, $message, array $params = NULL)". This function should return false on failure, and true/a tracking message ID on success.
+ * @param array $params A associated array of other parameters for this handler defining some properties eg. supported message length or rich text support.
*/
- function register_notification_handler($method, $handler)
+ function register_notification_handler($method, $handler, $params = NULL)
{
global $NOTIFICATION_HANDLERS;
if (is_callable($handler))
{
- $NOTIFICATION_HANDLERS[$method] = $handler;
+ $NOTIFICATION_HANDLERS[$method] = new stdClass;
+
+ $NOTIFICATION_HANDLERS[$method]->handler = $handler;
+ if ($params)
+ {
+ foreach ($params as $k => $v)
+ $NOTIFICATION_HANDLERS[$method]->$k = $v;
+ }
return true;
}
@@ -45,43 +53,75 @@
}
/**
- * Send a notification message using a pre-registered method.
+ * Notify a user via their preferences.
*
- * @param mixed $method The method used as a string, or an array if multiple methods should be used.
- * @param mixed $to Either a guid or an array of guid's to notify
- * @param string $message A message
- * @param array $params Optional method specific parameters as an associative array, for example "subject", "from"
- * @return boolean
+ * @param mixed $to Either a guid or an array of guid's to notify.
+ * @param int $from GUID of the sender, which may be a user, site or object.
+ * @param string $subject Message subject.
+ * @param string $message Message body.
+ * @param array $params Misc additional parameters specific to various methods.
+ * @param mixed $methods_override A string, or an array of strings specifying the delivery methods to use - or leave blank
+ * for delivery using the user's chosen delivery methods.
+ * @return array Compound array of each delivery user/delivery method's success or failure.
* @throws NotificationException
*/
- function notify($method, $to, $message, array $params = NULL)
+ function notify_user($to, $from, $subject, $message, array $params = NULL, $methods_override = "")
{
global $NOTIFICATION_HANDLERS;
-
+
// Sanitise
if (!is_array($to))
- $to = (int)$to;
+ $to = array((int)$to);
+ $from = (int)$from;
+ $subject = sanitise_string($subject);
- if (!$method)
- throw new NotificationException(elgg_echo('NotificationException:NoNotificationMethod'));
+ // Get notification methods
+ if (($methods_override) && (!is_array($methods_override)))
+ $methods_override = array($methods_override);
- if (!is_array($method))
- $method = array($method);
+ $result = array();
+
+ foreach ($to as $guid)
+ {
+ // Results for a user are...
+ $result[$guid] = array();
- if ((!array_key_exists($method, $NOTIFICATION_HANDLERS)) || (!is_callable($NOTIFICATION_HANDLERS[$method])))
- throw new NotificationExceptions(sprintf(elgg_echo('NotificationException:NoHandlerFound'), $method));
+ // Are we overriding delivery?
+ $methods = $methods_override;
+ if (!$methods)
+ {
+ $tmp = (array)get_user_notification_settings($guid);
+ $methods = array();
+ foreach($tmp as $k => $v)
+ if ($v) $methods[] = $k; // Add method if method is turned on for user!
+ }
- if (!is_array($to))
- $to = array($to);
+ if ((!$methods) || (count($methods)==0))
+ throw new NotificationException(elgg_echo('NotificationException:NoNotificationMethod'));
- foreach ($to as $guid)
- {
- foreach ($method as $m)
- if (!$NOTIFICATION_HANDLERS[$m]((int)$guid, sanitise_string($m), $params))
- throw new NotificationException(sprintf(elgg_echo('NotificationException:ErrorNotifyingGuid'), $guid));
- }
+ // Deliver
+ foreach ($methods as $method)
+ {
+ // Extract method details from list
+ $details = $NOTIFICATION_HANDLERS[$method];
+ $handler = $details->handler;
- return true;
+ if ((!$NOTIFICATION_HANDLERS[$method]) || (!$handler))
+ throw new NotificationException(sprintf(elgg_echo('NotificationException:NoHandlerFound'), $method));
+
+ // Trigger handler and retrieve result.
+ $result[$guid][$method] = $handler(
+ $from ? get_entity($from) : NULL, // From entity
+ get_entity($guid), // To entity
+ $subject, // The subject
+ sanitise_string($message), // Message
+ $params // Params
+ );
+ }
+
+ }
+
+ return $result;
}
/**
@@ -154,25 +194,38 @@
*/
class NotificationException extends Exception {}
-
+
/**
* Send a notification via email.
- *
- * Parameters accept "from" and "subject" as values.
+ *
+ * @param ElggEntity $from The from user/site/object
+ * @param ElggUser $to To which user?
+ * @param string $subject The subject of the message.
+ * @param string $message The message body
+ * @param array $params Optional parameters (none taken in this instance)
+ * @return bool
*/
- function email_notify_handler($to_guid, $message, array $params = NULL)
+ function email_notify_handler(ElggEntity $from, ElggUser $to, $subject, $message, array $params = NULL)
{
- $to_guid = (int)$to_guid;
-
- $entity = get_entity($to_guid);
-
- if ((!($entity instanceof ElggUser)) || ($entity->email==""))
- throw new NotificationException(sprintf(elgg_echo('NotificationException:NoEmailAddress'), $to_guid));
+ global $CONFIG;
+ if (!$from)
+ throw new NotificationException(sprintf(elgg_echo('NotificationException:MissingParameter'), 'from'));
+
+ if (!$to)
+ throw new NotificationException(sprintf(elgg_echo('NotificationException:MissingParameter'), 'to'));
- $to = $entity->email;
- $subject = $params['subject'];
- $from = $params['from'];
+ if ($to->email=="")
+ throw new NotificationException(sprintf(elgg_echo('NotificationException:NoEmailAddress'), $to->guid));
+
+ $to = $to->email;
+ if ($from->email)
+ $from = $from->email; // Handle users
+ else if ($from->url)
+ $from = 'noreply@' . parse_url($from->url, 'host'); // Handle anything with a url
+ else {
+ $from = 'noreply@' . get_site_domain($CONFIG->site_guid); // Handle a fallback
+ }
$headers = "From: $from\r\n";
@@ -191,7 +244,6 @@
// Add settings view to user settings & register action
extend_elgg_settings_page('notifications/settings/usersettings', 'usersettings/user');
register_action("notifications/settings/usersettings/save");
-
}
// Register a startup event