Class: Hyrax::Workflow::AbstractNotification Abstract
- Inherits:
-
Object
- Object
- Hyrax::Workflow::AbstractNotification
- Includes:
- ActionView::Helpers::UrlHelper
- Defined in:
- app/services/hyrax/workflow/abstract_notification.rb
Overview
This class is abstract.
A notification that happens when a state transition occurs. Subclass AbstractNotification to create a notification.
Direct Known Subclasses
ChangesRequiredNotification, DepositedNotification, PendingReviewNotification
Instance Attribute Summary collapse
-
#comment ⇒ Object
readonly
Returns the value of attribute comment.
-
#recipients ⇒ Object
readonly
Returns the value of attribute recipients.
-
#title ⇒ Object
readonly
Returns the value of attribute title.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
-
#work_id ⇒ Object
readonly
Returns the value of attribute work_id.
Class Method Summary collapse
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(entity, comment, user, recipients) ⇒ AbstractNotification
constructor
A new instance of AbstractNotification.
Constructor Details
#initialize(entity, comment, user, recipients) ⇒ AbstractNotification
Returns a new instance of AbstractNotification.
40 41 42 43 44 45 46 47 48 |
# File 'app/services/hyrax/workflow/abstract_notification.rb', line 40 def initialize(entity, comment, user, recipients) @work_id = entity.proxy_for_global_id.sub(/.*\//, '') @title = entity.proxy_for.title.first @comment = comment.respond_to?(:comment) ? comment.comment.to_s : '' # Convert to hash with indifferent access to allow both string and symbol keys @recipients = recipients.with_indifferent_access @user = user @entity = entity end |
Instance Attribute Details
#comment ⇒ Object (readonly)
Returns the value of attribute comment.
32 33 34 |
# File 'app/services/hyrax/workflow/abstract_notification.rb', line 32 def comment @comment end |
#recipients ⇒ Object (readonly)
Returns the value of attribute recipients.
32 33 34 |
# File 'app/services/hyrax/workflow/abstract_notification.rb', line 32 def recipients @recipients end |
#title ⇒ Object (readonly)
Returns the value of attribute title.
32 33 34 |
# File 'app/services/hyrax/workflow/abstract_notification.rb', line 32 def title @title end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
32 33 34 |
# File 'app/services/hyrax/workflow/abstract_notification.rb', line 32 def user @user end |
#work_id ⇒ Object (readonly)
Returns the value of attribute work_id.
32 33 34 |
# File 'app/services/hyrax/workflow/abstract_notification.rb', line 32 def work_id @work_id end |
Class Method Details
.send_notification(entity:, comment:, user:, recipients:) ⇒ Object
28 29 30 |
# File 'app/services/hyrax/workflow/abstract_notification.rb', line 28 def self.send_notification(entity:, comment:, user:, recipients:) new(entity, comment, user, recipients).call end |
Instance Method Details
#call ⇒ Object
50 51 52 53 54 |
# File 'app/services/hyrax/workflow/abstract_notification.rb', line 50 def call users_to_notify.uniq.each do |recipient| Hyrax::MessengerService.deliver(user, recipient, , subject) end end |