21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-21 01:48:39 +02:00
chexpire/app/services/check_processor.rb

73 lines
1.7 KiB
Ruby
Raw Normal View History

# Copyright (C) 2018 Colin Darie <colin@darie.eu>, 2018 Evolix <info@evolix.fr>
# License: GNU AGPL-3+ (see full text in LICENSE file)
module CheckProcessor
attr_reader :configuration
def initialize(configuration:, logger: NullLogger.new)
@logger = logger
@configuration = configuration
end
def sync_dates
@sync_started_at = Time.now
resolvers.each do |resolver|
public_send(resolver).find_each(batch_size: 100).each do |check|
process(check)
sleep configuration.interval
end
end
@sync_finished_at = Time.now
end
# :nocov:
def resolvers
fail NotImplementedError, "#{self.class.name} did not implemented method #{__callee__}"
end
# :nocov:
def resolve_last_run_failed
scope.last_run_failed
end
def resolve_expire_long_term
scope
.where("DATE(domain_expires_at) >= DATE_ADD(CURDATE(), INTERVAL ? DAY)",
configuration.long_term_interval)
.where("DATEDIFF(domain_expires_at, CURDATE()) MOD ? = 0",
configuration.long_term_frequency)
end
def resolve_expire_short_term
scope.where("DATE(domain_expires_at) < DATE_ADD(CURDATE(), INTERVAL ? DAY)",
configuration.long_term_interval)
end
def resolve_unknown_expiry
scope.where("domain_expires_at IS NULL")
end
2018-07-02 17:21:08 +02:00
def resolve_all
scope
end
protected
def base_scope
Check
.active
.where("last_run_at IS NULL OR last_run_at < DATE_SUB(NOW(), INTERVAL 12 HOUR)")
end
# :nocov:
def scope
fail NotImplementedError, "#{self.class.name} did not implemented method #{__callee__}"
end
2018-07-02 17:21:08 +02:00
def process(_check)
fail NotImplementedError, "#{self.class.name} did not implemented method #{__callee__}"
end
# :nocov:
end