Class: DispatchRider::NotificationServices::Base

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/dispatch-rider/notification_services/base.rb

Direct Known Subclasses

AwsSns, FileSystem

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Base

Returns a new instance of Base.



18
19
20
21
# File 'lib/dispatch-rider/notification_services/base.rb', line 18

def initialize(options = {})
  @notifier = notifier_builder.new(options)
  @channel_registrar = channel_registrar_builder.new
end

Instance Attribute Details

#channel_registrarObject (readonly)

Returns the value of attribute channel_registrar.



14
15
16
# File 'lib/dispatch-rider/notification_services/base.rb', line 14

def channel_registrar
  @channel_registrar
end

#notifierObject (readonly)

Returns the value of attribute notifier.



14
15
16
# File 'lib/dispatch-rider/notification_services/base.rb', line 14

def notifier
  @notifier
end

Instance Method Details

#channel(name) ⇒ Object

Raises:

  • (NotImplementedError)


41
42
43
# File 'lib/dispatch-rider/notification_services/base.rb', line 41

def channel(name)
  raise NotImplementedError
end

#channel_registrar_builderObject

Raises:

  • (NotImplementedError)


27
28
29
# File 'lib/dispatch-rider/notification_services/base.rb', line 27

def channel_registrar_builder
  raise NotImplementedError
end

#channels(names) ⇒ Object



37
38
39
# File 'lib/dispatch-rider/notification_services/base.rb', line 37

def channels(names)
  Array(names).map { |name| channel(name) }
end

#message_builderObject



45
46
47
# File 'lib/dispatch-rider/notification_services/base.rb', line 45

def message_builder
  DispatchRider::Message
end

#notifier_builderObject

Raises:

  • (NotImplementedError)


23
24
25
# File 'lib/dispatch-rider/notification_services/base.rb', line 23

def notifier_builder
  raise NotImplementedError
end

#publish(options) ⇒ Object



31
32
33
34
35
# File 'lib/dispatch-rider/notification_services/base.rb', line 31

def publish(options)
  channels(options[:to]).each do |channel|
    channel.publish(serialize(message(options[:message])))
  end
end