Difference between revisions of "ESN"

From Dreamwidth Notes
Jump to: navigation, search
(Flesh out page, part 1: events and subscriptions)
(Notification methods: Flesh out section)
Line 14: Line 14:
  
 
== Notification methods ==
 
== Notification methods ==
 +
 +
Notification methods are the possible ways you can get notified when an event that matches one of your subscriptions occurs. They're implemented in [http://hg.dwscoalition.org/dw-free/file/tip/cgi-bin/LJ/NotificationMethod.pm LJ::NotificationMethod] (base class) and classes for specific notification methods:
 +
 +
* [http://hg.dwscoalition.org/dw-free/file/tip/cgi-bin/LJ/NotificationMethod/Email.pm LJ::NotificationMethod::Email] notifies users by sending them email.
 +
 +
* [http://hg.dwscoalition.org/dw-free/file/tip/cgi-bin/LJ/NotificationMethod/Inbox.pm LJ::NotificationMethod::Inbox] notifies users by placing a message in their site inbox.
 +
 +
* [http://hg.dwscoalition.org/dw-free/file/tip/cgi-bin/LJ/NotificationMethod/IM.pm LJ::NotificationMethod::IM] isn't offered to users (yet) because Dreamwidth doesn't have the infrastructure to send Jabber messages. (Which is all it supports. No AIM or anything of the kind.)
 +
 +
* [http://hg.dwscoalition.org/dw-free/file/tip/cgi-bin/LJ/NotificationMethod/DebugLog.pm LJ::NotificationMethod::DebugLog] isn't offered to users either, because it doesn't actually send them anything. Instead, it saves all notification data to a database table, which is useful for developers. See LJ::NotificationMethod::DebugLog->notify for more.
  
 
== Firing events and delivering notifications ==
 
== Firing events and delivering notifications ==
  
 
[[Category: Development]]
 
[[Category: Development]]

Revision as of 20:44, 15 September 2011

ESN stands for Event-Subscription-Notification. This is a complex system, and this page only scratches the surface. You should be prepared to do some digging on your own or ask questions. If you do, please think of the next person having the same question and revise this to include the information you were looking for.

Events

An event is anything happening on Dreamwidth that a user may want to be notified of when it happens, like "someone replied to a comment I wrote" or "there's a new entry posted in (journal)".

Events are defined in LJ::Event (base class) and LJ::Event::* (subclasses for specific event types). They have some data attached, including the journal the event is about and up to 2 additional numeric arguments. See the comments at the beginning of LJ::Event for more on event types, subclasses, and what the journal and additional arguments are used for.

Subscriptions

Subscriptions are how someone tells Dreamwidth which events they're interested in. Which events or event types a user may subscribe to may be restricted by the user's account level, but beyond that, any user can subscribe to any available event if they have access to the relevant data (eg, can view the journal/entry/birthdate/etc...).

Subscriptions are defined in LJ::Subscription (base class) and LJ::Subscription::Pending (used by the user interface for things the user hasn't (yet) subscribed to). Unlike for events, there are no subclasses for different things subscribed to. Data for each subscription includes the journal of interest, the type of event, the notification method (see below), and 2 additional (numerical) arguments, which aren't necessarily equal or even related to the ones for events that may match the suggestion.

Notification methods

Notification methods are the possible ways you can get notified when an event that matches one of your subscriptions occurs. They're implemented in LJ::NotificationMethod (base class) and classes for specific notification methods:

  • LJ::NotificationMethod::IM isn't offered to users (yet) because Dreamwidth doesn't have the infrastructure to send Jabber messages. (Which is all it supports. No AIM or anything of the kind.)
  • LJ::NotificationMethod::DebugLog isn't offered to users either, because it doesn't actually send them anything. Instead, it saves all notification data to a database table, which is useful for developers. See LJ::NotificationMethod::DebugLog->notify for more.

Firing events and delivering notifications