Hertz

Dependency Status Code Climate

Hertz is a Ruby on Rails engine for sending in-app notification to your users.

Installation

Add this line to your application's Gemfile:

gem 'hertz'

And then execute:

$ bundle

Or install it yourself as:

$ gem install hertz

Then, run the installer generator:

$ rails g hertz:install
$ rake db:migrate

Finally, add the following to the model that will receive the notifications (e.g. User):

class User < ActiveRecord::Base
  include Hertz::Notifiable
end

Usage

Using couriers

Couriers are what Hertz uses to deliver notifications to your users. For instance, you might have a courier for delivering notifications by SMS and another one for delivering them by email.

Creating a new courier in Hertz is easy:

module Hertz
  module Courier
    class Sms
      def self.deliver_notification(notification)
        # ...
      end
    end
  end
end

Again, you don't have to use couriers if you only display notifications on your website using standard AR methods.

Creating new notification types

In Hertz, every notification is a model. If you want to create a new notification type, just create a new model inheriting from Hertz::Notification:

class CommentNotification < Hertz::Notification
end

Since not all notifications might implement interfaces for all couriers, you have to manually specify which couriers they implement via deliver_by:

class CommentNotification < Hertz::Notification
  deliver_by :sms, :email
end

Notifications are not required to implement any couriers.

Attaching metadata to a notification

You can attach custom metadata to a notification, but make sure it can be cleanly stored in an hstore:

notification = CommentNotification.new(meta: { comment_id: comment.id })
user.notify(notification)

You can then unserialize any data in the model:

class CommentNotification < Hertz::Notification
  def comment
    Comment.find(meta['comment_id'])
  end
end

Note that you should always access your metadata with string keys, regardless of the type you use when attaching it.

Notifying users

You can use #notify for notifying a user:

notification = CommentNotification.new
user.notify(notification)

You can access a user's notifications with #notifications:

current_user.notifications
current_user.notifications.unread

You can also mark notifications as read/unread:

notification.mark_as_read
notification.mark_as_unread

Built-in couriers

Email

The email courier delivers your notifications by email. In order to use this courier, add :email to deliver_by in the notification model(s):

class CommentNotification < Hertz::Notification
  deliver_by :email
end

You will also need to expose the hertz_email method in your receiver class:

class User < ActiveRecord::Base
  def hertz_email
    email
  end
end

And the email_subject method in your notification class:

class CommentNotification < Hertz::Notification
  def email_subject
    'You have a new comment!'
  end
end

Finally, you should create a template for every notification you send by email. For CommentNotification you'd create a template at app/views/hertz/notification_mailer/comment_notification.html.erb:

<p>Hey <%= @notification.receiver.hertz_email %>,</p>
<p>you've got a new comment!</p>

As you can see, templates have access to the @notification instance variable.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/alessandro1997/hertz.

License

The gem is available as open source under the terms of the MIT License.