Sha256: cf48e6c53cd7a5b84ca82180ef7b1a27bc7e0f9fc4366b203035250282d157ac
Contents?: true
Size: 1.84 KB
Versions: 15
Compression:
Stored size: 1.84 KB
Contents
# frozen_string_literal: true module Bullet module Notification class Base attr_accessor :notifier, :url attr_reader :base_class, :associations, :path def initialize(base_class, association_or_associations, path = nil) @base_class = base_class @associations = association_or_associations.is_a?(Array) ? association_or_associations : [association_or_associations] @path = path end def title raise NoMethodError, 'no method title defined' end def body raise NoMethodError, 'no method body defined' end def call_stack_messages '' end def whoami @user ||= ENV['USER'].presence || ( begin `whoami`.chomp rescue StandardError '' end ) @user.present? ? "user: #{@user}" : '' end def body_with_caller "#{body}\n#{call_stack_messages}\n" end def notify_inline notifier.inline_notify(notification_data) end def notify_out_of_channel notifier.out_of_channel_notify(notification_data) end def short_notice [whoami.presence, url, title, body].compact.join(' ') end def notification_data { user: whoami, url: url, title: title, body: body_with_caller } end def eql?(other) self.class == other.class && klazz_associations_str == other.klazz_associations_str end def hash [self.class, klazz_associations_str].hash end protected def klazz_associations_str " #{@base_class} => [#{@associations.map(&:inspect).join(', ')}]" end def associations_str ".includes(#{@associations.map { |a| a.to_s.to_sym }.inspect})" end end end end
Version data entries
15 entries across 15 versions & 1 rubygems