21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-02 08:50:49 +02:00
chexpire/app/services/notifier/channels/base.rb

44 lines
1.2 KiB
Ruby

# Copyright (C) 2018 Colin Darie <colin@darie.eu>, 2018 Evolix <info@evolix.fr>
# License: GNU AGPL-3+ (see full text in LICENSE file)
module Notifier
module Channels
class Base
def notify(check_notification) # rubocop:disable Metrics/MethodLength
return unless supports?(check_notification)
check_notification.ongoing!
case check_notification.check.kind.to_sym
when :domain
domain_notify_expires_soon(check_notification)
when :ssl
ssl_notify_expires_soon(check_notification)
else
fail ArgumentError,
"Invalid notification for check kind `#{check_notification.check.kind}`."
end
end
private
# :nocov:
def supports?(_check_notification)
fail NotImplementedError,
"#{self.class.name} channel did not implemented method #{__callee__}"
end
%i[
domain_notify_expires_soon
ssl_notify_expires_soon
].each do |method|
define_method(method) do
fail NotImplementedError,
"Channel #{self.class.name} does not implement method #{method}."
end
end
# :nocov:
end
end
end