mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 05:34:46 +02:00
69 lines
1.9 KiB
Ruby
69 lines
1.9 KiB
Ruby
module Domain::ForceDelete
|
|
extend ActiveSupport::Concern
|
|
|
|
FORCE_DELETE_STATUSES = [DomainStatus::FORCE_DELETE,
|
|
DomainStatus::SERVER_RENEW_PROHIBITED,
|
|
DomainStatus::SERVER_TRANSFER_PROHIBITED].freeze
|
|
|
|
included do
|
|
store_accessor :force_delete_data,
|
|
:force_delete_type,
|
|
:contact_notification_sent_date,
|
|
:template_name
|
|
|
|
scope :notification_not_sent,
|
|
lambda {
|
|
where("(force_delete_data->>'contact_notification_sent_date') is null")
|
|
}
|
|
|
|
HOLD_STATUSES = [
|
|
DomainStatus::SERVER_HOLD,
|
|
DomainStatus::CLIENT_HOLD,
|
|
].freeze
|
|
end
|
|
|
|
class_methods do
|
|
def force_delete_scheduled
|
|
where('force_delete_start <= ?', Time.zone.now)
|
|
end
|
|
end
|
|
|
|
def hold_status?
|
|
HOLD_STATUSES.any? { |status| statuses.include? status }
|
|
end
|
|
|
|
def notification_template(explicit: nil)
|
|
reason = explicit&.downcase
|
|
return reason if %w[invalid_email invalid_phone].include?(reason)
|
|
|
|
if contact_emails_verification_failed.present?
|
|
'invalid_email'
|
|
elsif registrant.org?
|
|
'legal_person'
|
|
else
|
|
'private_person'
|
|
end
|
|
end
|
|
|
|
def force_delete_scheduled?
|
|
statuses.include?(DomainStatus::FORCE_DELETE)
|
|
end
|
|
|
|
def schedule_force_delete(type: :fast_track, notify_by_email: false, reason: nil, email: nil)
|
|
Domains::ForceDelete::SetForceDelete.run(domain: self, type: type, reason: reason,
|
|
notify_by_email: notify_by_email, email: email)
|
|
end
|
|
|
|
def cancel_force_delete
|
|
Domains::CancelForceDelete::CancelForceDelete.run(domain: self)
|
|
end
|
|
|
|
def outzone_date
|
|
(force_delete_start || valid_to) + Setting.expire_warning_period.days
|
|
end
|
|
|
|
def purge_date
|
|
(force_delete_date&.beginning_of_day || valid_to + Setting.expire_warning_period.days +
|
|
Setting.redemption_grace_period.days)
|
|
end
|
|
end
|