mirror of
https://github.com/internetee/registry.git
synced 2025-07-20 17:55:55 +02:00
Refactor error handling to common
This commit is contained in:
parent
fb8cba9ef4
commit
3fc3bfc1c4
2 changed files with 12 additions and 8 deletions
|
@ -32,6 +32,14 @@ module Epp::Common
|
||||||
@current_epp_user ||= EppUser.find(epp_session[:epp_user_id]) if epp_session[:epp_user_id]
|
@current_epp_user ||= EppUser.find(epp_session[:epp_user_id]) if epp_session[:epp_user_id]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def handle_errors(error_code_map, obj)
|
||||||
|
obj.errors.each do |key, err|
|
||||||
|
error_code_map.each do |code, values|
|
||||||
|
epp_errors << {code: code, msg: err} and break if values.any? {|x| obj.errors.added?(key, x) }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def validate_request
|
def validate_request
|
||||||
type = OBJECT_TYPES[params_hash['epp']['xmlns:ns2']]
|
type = OBJECT_TYPES[params_hash['epp']['xmlns:ns2']]
|
||||||
return unless type
|
return unless type
|
||||||
|
|
|
@ -20,6 +20,7 @@ module Epp::DomainsHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
### HELPER METHODS ###
|
### HELPER METHODS ###
|
||||||
|
private
|
||||||
|
|
||||||
def domain_create_params
|
def domain_create_params
|
||||||
ph = params_hash['epp']['command']['create']['create']
|
ph = params_hash['epp']['command']['create']['create']
|
||||||
|
@ -50,17 +51,12 @@ module Epp::DomainsHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
def handle_errors
|
def handle_errors
|
||||||
error_code_map = {
|
super({
|
||||||
'2302' => [:epp_domain_taken, :epp_domain_reserved],
|
'2302' => [:epp_domain_taken, :epp_domain_reserved],
|
||||||
'2306' => [:blank],
|
'2306' => [:blank],
|
||||||
'2303' => [:epp_contact_not_found]
|
'2303' => [:epp_contact_not_found]
|
||||||
}
|
}, @domain
|
||||||
|
)
|
||||||
@domain.errors.each do |key, err|
|
|
||||||
error_code_map.each do |code, values|
|
|
||||||
epp_errors << {code: code, msg: err} and break if values.any? {|x| @domain.errors.added?(key, x) }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue