mirror of
https://github.com/internetee/registry.git
synced 2025-06-11 07:04:47 +02:00
81 lines
2.6 KiB
Ruby
81 lines
2.6 KiB
Ruby
module Repp
|
|
module V1
|
|
module Registrar
|
|
class AccreditationResultsController < ActionController::API
|
|
before_action :authenticate_shared_key
|
|
|
|
TEMPORARY_SECRET_KEY = ENV['accreditation_secret'].freeze
|
|
EXPIRE_DEADLINE = 15.minutes.freeze
|
|
|
|
api :POST, 'repp/v1/registrar/accreditation/push_results'
|
|
desc 'added datetime results'
|
|
|
|
def create
|
|
username = params[:accreditation_result][:username]
|
|
result = params[:accreditation_result][:result]
|
|
|
|
record_accreditation_result(username, result) if result
|
|
rescue ActiveRecord::RecordNotFound
|
|
record_not_found(username)
|
|
end
|
|
|
|
private
|
|
|
|
def record_accreditation_result(username, result)
|
|
user = ApiUser.find_by(username: username)
|
|
|
|
raise ActiveRecord::RecordNotFound if user.nil?
|
|
|
|
user.accreditation_date = DateTime.current
|
|
user.accreditation_expire_date = user.accreditation_date + EXPIRE_DEADLINE
|
|
|
|
if user.save
|
|
notify_registrar(user)
|
|
notify_admins
|
|
render_success(data: { user: user,
|
|
result: result,
|
|
message: 'Accreditation info successfully added' })
|
|
else
|
|
render_failed
|
|
end
|
|
end
|
|
|
|
def notify_registrar(user)
|
|
AccreditationCenterMailer.test_was_successfully_passed_registrar(user.registrar.email).deliver_now
|
|
end
|
|
|
|
def notify_admins
|
|
admin_users_emails = User.all.reject { |u| u.roles.nil? }.select { |u| u.roles.include? "admin" }.pluck(:email)
|
|
|
|
return if admin_users_emails.empty?
|
|
|
|
admin_users_emails.each do |email|
|
|
AccreditationCenterMailer.test_was_successfully_passed_admin(email).deliver_now
|
|
end
|
|
end
|
|
|
|
def authenticate_shared_key
|
|
api_key = "Basic #{TEMPORARY_SECRET_KEY}"
|
|
render_failed unless api_key == request.authorization
|
|
end
|
|
|
|
def record_not_found(username)
|
|
@response = { code: 2303, message: "Object '#{username}' does not exist" }
|
|
render(json: @response)
|
|
end
|
|
|
|
def render_failed
|
|
@response = { code: 2202, message: 'Invalid authorization information' }
|
|
render(json: @response, status: :unauthorized)
|
|
end
|
|
|
|
def render_success(code: nil, message: nil, data: nil)
|
|
@response = { code: code || 1000, message: message || 'Command completed successfully',
|
|
data: data || {} }
|
|
|
|
render(json: @response, status: :ok)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|