mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 13:15:40 +02:00
112 lines
3.7 KiB
Ruby
112 lines
3.7 KiB
Ruby
module Serializers
|
|
module RegistrantApi
|
|
class Domain
|
|
attr_reader :domain
|
|
|
|
def initialize(domain, simplify: false)
|
|
@domain = domain
|
|
@simplify = simplify
|
|
end
|
|
|
|
def to_json(_obj = nil)
|
|
return simple_object if @simplify
|
|
|
|
{
|
|
id: domain.uuid,
|
|
name: domain.name,
|
|
registrar: {
|
|
name: domain.registrar.name,
|
|
website: domain.registrar.website,
|
|
},
|
|
registered_at: domain.registered_at,
|
|
valid_to: domain.valid_to,
|
|
created_at: domain.created_at,
|
|
updated_at: domain.updated_at,
|
|
registrant: {
|
|
name: domain.registrant.name,
|
|
id: domain.registrant.uuid,
|
|
ident: domain.registrant.ident,
|
|
ident_type: domain.registrant.ident_type,
|
|
ident_country_code: domain.registrant.ident_country_code,
|
|
phone: domain.registrant.phone,
|
|
email: domain.registrant.email,
|
|
org: domain.registrant.org?,
|
|
},
|
|
tech_contacts: contacts(:tech),
|
|
admin_contacts: contacts(:admin),
|
|
transfer_code: domain.transfer_code,
|
|
name_dirty: domain.name_dirty,
|
|
name_puny: domain.name_puny,
|
|
period: domain.period,
|
|
period_unit: domain.period_unit,
|
|
creator_str: domain.creator_str,
|
|
updator_str: domain.updator_str,
|
|
outzone_at: domain.outzone_at,
|
|
delete_date: domain.delete_date,
|
|
registrant_verification_asked_at: domain.registrant_verification_asked_at,
|
|
registrant_verification_token: domain.registrant_verification_token,
|
|
pending_json: domain.pending_json,
|
|
force_delete_date: domain.force_delete_date,
|
|
statuses: domain.statuses,
|
|
locked_by_registrant_at: domain.locked_by_registrant_at,
|
|
status_notes: domain.status_notes,
|
|
nameservers: nameservers,
|
|
dnssec_keys: dnssec_keys,
|
|
dnssec_changed_at: dnssec_updated_at,
|
|
}
|
|
end
|
|
|
|
private
|
|
|
|
def simple_object
|
|
{
|
|
id: domain.uuid, name: domain.name, registered_at: domain.registered_at,
|
|
valid_to: domain.valid_to, outzone_at: domain.outzone_at, statuses: domain.statuses,
|
|
registrant_verification_asked_at: domain.registrant_verification_asked_at,
|
|
registrar: { name: domain.registrar.name, website: domain.registrar.website },
|
|
registrant: { name: domain.registrant.name, id: domain.registrant.uuid,
|
|
phone: domain.registrant.phone, email: domain.registrant.email,
|
|
ident: domain.registrant.ident, org: domain.registrant.org? }
|
|
}
|
|
end
|
|
|
|
def dnssec_keys
|
|
domain.dnskeys.map do |key|
|
|
"#{key.flags} #{key.protocol} #{key.alg} #{key.public_key}"
|
|
end
|
|
end
|
|
|
|
def dnssec_updated_at
|
|
domain.dnskeys.order(updated_at: :desc).select(:updated_at).first
|
|
end
|
|
|
|
def contacts(type)
|
|
contact_pool = begin
|
|
if type == :tech
|
|
domain.tech_contacts
|
|
elsif type == :admin
|
|
domain.admin_contacts
|
|
end
|
|
end
|
|
|
|
array_of_contacts = []
|
|
contact_pool.map do |contact|
|
|
array_of_contacts.push(name: contact.name, id: contact.uuid, email: contact.email)
|
|
end
|
|
|
|
array_of_contacts
|
|
end
|
|
|
|
def nameservers
|
|
array_of_nameservers = []
|
|
|
|
domain.nameservers.map do |nameserver|
|
|
array_of_nameservers.push(hostname: nameserver.hostname, ipv4: nameserver.ipv4,
|
|
ipv6: nameserver.ipv6)
|
|
end
|
|
|
|
array_of_nameservers
|
|
end
|
|
end
|
|
end
|
|
end
|