debian-mirror-gitlab/lib/api/integrations/jira_connect/subscriptions.rb
2023-03-04 22:38:38 +05:30

59 lines
2.1 KiB
Ruby

# frozen_string_literal: true
module API
class Integrations
module JiraConnect
class Subscriptions < ::API::Base
feature_category :integrations
before { authenticate! }
namespace :integrations do
namespace :jira_connect do
resource :subscriptions do
desc 'Subscribe a namespace to a JiraConnectInstallation' do
detail 'Subscribes the namespace to the JiraConnectInstallation'
success ::API::Entities::BasicSuccess
failure [
{ code: 400, message: 'Bad request' },
{ code: 401, message: 'Unauthorized' },
{ code: 403, message: 'Forbidden' },
{ code: 404, message: 'Not found' }
]
tags %w[jira_connect_subscriptions]
end
params do
requires :jwt, type: String, desc: 'JWT token for authorization with the Jira Connect installation'
requires :namespace_path, type: String, desc: 'Path for the namespace that should be subscribed'
end
post do
jwt = Atlassian::JiraConnect::Jwt::Symmetric.new(params[:jwt])
installation = JiraConnectInstallation.find_by_client_key(jwt.iss_claim)
if !installation || !jwt.valid?(installation.shared_secret) || !jwt.verify_context_qsh_claim
unauthorized!('JWT authentication failed')
end
jira_user = installation.client.user_info(jwt.sub_claim)
result = ::JiraConnectSubscriptions::CreateService.new(
installation,
current_user,
namespace_path: params['namespace_path'],
jira_user: jira_user
).execute
if result[:status] == :success
status :created
{ success: true }
else
render_api_error!(result[:message], result[:http_status])
end
end
end
end
end
end
end
end
end