Sha256: 4ea6d553c3ad7b8eb01072a52d99e221d83d661c81b66c4530279678cd8913a7
Contents?: true
Size: 1.63 KB
Versions: 1
Compression:
Stored size: 1.63 KB
Contents
module ExceptionNotifier class IrcNotifier < BaseNotifier def initialize(options) super @config = OpenStruct.new parse_options(options) end def call(exception, options = {}) errors_count = options[:accumulated_errors_count].to_i message = "'#{exception.message}'" message.prepend("(#{errors_count} times)") if errors_count > 1 message += " on '#{exception.backtrace.first}'" if exception.backtrace return unless active? send_notice(exception, options, message) do |msg, _| send_message([*@config.prefix, *msg].join(' ')) end end def send_message(message) CarrierPigeon.send @config.irc.merge(message: message) end private def parse_options(options) nick = options.fetch(:nick, 'ExceptionNotifierBot') password = options[:password] ? ":#{options[:password]}" : nil domain = options.fetch(:domain, nil) port = options[:port] ? ":#{options[:port]}" : nil channel = options.fetch(:channel, '#log') notice = options.fetch(:notice, false) ssl = options.fetch(:ssl, false) join = options.fetch(:join, false) uri = "irc://#{nick}#{password}@#{domain}#{port}/#{channel}" prefix = options.fetch(:prefix, nil) recipients = options[:recipients] ? options[:recipients].join(', ') + ':' : nil @config.prefix = [*prefix, *recipients].join(' ') @config.irc = { uri: uri, ssl: ssl, notice: notice, join: join } end def active? valid_uri? @config.irc[:uri] end def valid_uri?(uri) URI.parse(uri) rescue URI::InvalidURIError false end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
exception_notification-4.4.0 | lib/exception_notifier/irc_notifier.rb |