mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
28 lines
720 B
Ruby
28 lines
720 B
Ruby
class RegistrantUser < User
|
|
attr_accessor :idc_data
|
|
|
|
def ability
|
|
@ability ||= Ability.new(self)
|
|
end
|
|
delegate :can?, :cannot?, to: :ability
|
|
|
|
def to_s
|
|
username
|
|
end
|
|
|
|
class << self
|
|
def find_or_create_by_idc_data(idc_data)
|
|
return false if idc_data.blank?
|
|
identity_code = idc_data.scan(/serialNumber=(\d+)/).flatten.first
|
|
country = idc_data.scan(/^\/C=(.{2})/).flatten.first
|
|
first_name = idc_data.scan(%r{/GN=(.+)/serialNumber}).flatten.first
|
|
last_name = idc_data.scan(%r{/SN=(.+)/GN}).flatten.first
|
|
|
|
u = where(registrant_ident: "#{country}-#{identity_code}").first_or_create
|
|
u.username = "#{first_name} #{last_name}"
|
|
u.save
|
|
|
|
u
|
|
end
|
|
end
|
|
end
|