debian-mirror-gitlab/app/services/clusters/aws/authorize_role_service.rb
2020-01-01 13:55:28 +05:30

49 lines
1,008 B
Ruby

# frozen_string_literal: true
module Clusters
module Aws
class AuthorizeRoleService
attr_reader :user
Response = Struct.new(:status, :body)
ERRORS = [
ActiveRecord::RecordInvalid,
Clusters::Aws::FetchCredentialsService::MissingRoleError,
::Aws::Errors::MissingCredentialsError,
::Aws::STS::Errors::ServiceError
].freeze
def initialize(user, params:)
@user = user
@params = params
end
def execute
@role = create_or_update_role!
Response.new(:ok, credentials)
rescue *ERRORS
Response.new(:unprocessable_entity, {})
end
private
attr_reader :role, :params
def create_or_update_role!
if role = user.aws_role
role.update!(params)
role
else
user.create_aws_role!(params)
end
end
def credentials
Clusters::Aws::FetchCredentialsService.new(role).execute
end
end
end
end