airgonaut. One who journeys through the air.
Airgonaut is a Java-library to help implement great notifications for your users. Great notifications are hard, especially when you take into account things such as multiple devices, the wish of users to receive notifications digested or only on some devices, and localization of messages.
This library provides building blocks to implement notifications in your backend and to give both you and your users control over how notifications are handled.
Airgonaut provides:
- An interface to trigger notifications in your backend
- Multiple targets, such as e-mail and sms, with individual rendering for each target
- Control over which channels a user receives a notification on
- Planned: Support for digests
This project is licensed under the Apache License 2.0,
see the file LICENSE
and NOTICE
for details.
This library does not have a stable release yet, but snapshots are available:
<dependency>
<groupId>se.l4.airgonaut</groupId>
<artifactId>airgonaut-engine</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
Snapshot releases are available via the Sonatype OSS repository:
<repository>
<id>maven-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<layout>default</layout>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
Sending notifications is done via Notifications
and uses a data object that
is rendered to a notification.
Example:
notifications.newNotification()
.withData(new UnknownBrowserSignIn(userAgent, ip))
.to(EmailChannel.create("[email protected]"))
.send();
Notifications can be sent both to a specific receiver via a ContactChannel
such as EmailChannel
or using a NotificationReceiver
than can resolve which
channels a notification should be sent to:
notifications.newNotification()
.withData(new UserMention(...))
.to(userNotificationReceiver)
.send();
In this library targets are in charge of delivering a notification, so targets
are things such as e-mails, SMS and push notifications. All notifications
start out as instances of NotificationData
that are then rendered for a
specific target.
This design allows a notification to be rendered differently when sent over say e-mail or SMS.
Example:
// Data for the notification
class NewMessage implements NotificationData {
User from;
String plainText;
}
// Renderer for the e-mail
class NewMessageEmailRenderer implements EmailRenderer<NewMessage> {
public void render(EmailRenderingEncounter<NewMessage> encounter) {
NewMessage data = encounter.getData();
encounter.setTitle("New message from " + data.getUser().getName());
encounter.setPlainText("Message text: " + data.getPlainText());
}
}
Targets always work on a ContactChannel
and every target supports different
channels, such as the e-mail target supporting instances of EmailChannel
.
Notifications
is an interface and has an implementation in
LocalNotifications
. You should create a single instance and share it
through your system.
Notifications notifications = LocalNotifications.builder()
.addRenderer(userMentionRenderer)
.addTarget(emailTarget)
.build();
You can supply a TypeFinder
to automatically locate and create renderers:
// The type finder used to locate notification renderers
TypeFinder typeFinder = TypeFinder.builder()
.addPackage("com.example.package")
.setInstanceFactory(instanceFactory)
.build();
// This style of building will query the type finder for renderers
Notifications notifications = LocalNotifications.builder()
.withTypeFinder(typeFinder)
.addTarget(emailTarget)
.build();
E-mails are a common way to deliver notifications and this library provides support for rendering notifications into e-mails.
To setup the e-mail target include a dependency on airgonaut-email
and create
a target:
new EmailTarget(
new EmailBackendHere(),
EmailChannel.create("[email protected]"),
emailTemplateRenderer
)
The e-mail target depends on implementations of EmailRenderer
for a specific
NotificationData
class. If no implementation is found the notification will
not be delivered via e-mail.
class NotificationDataTypeEmailRenderer implements EmailRenderer<NotificationDataType> {
public void render(EmailRenderingEncounter<NotificationDataType> encounter) {
NotificationDataType data = encounter.getData();
// Set title and plain text / HTML contents here
}
}
The encounter supports rendering using a TemplateEngine
which is useful
especially for HTML rendering.
The EmailTarget
requires an instance of EmailTemplate
that is used to
render the final e-mail.
class CustomEmailTemplate implements EmailTemplate {
public void render(EmailTemplateEncounter encounter) {
List<RenderedEmailNotification> notifications = encounter.getEntries();
/*
* Combine the rendered notifications and then set title and plain text / HTML
* contents.
*/
}
}