mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 16:00:50 +00:00
156 lines
5.1 KiB
Ruby
156 lines
5.1 KiB
Ruby
# frozen_string_literal: true
|
|
module API
|
|
class Integrations < ::API::Base
|
|
feature_category :integrations
|
|
|
|
INTEGRATIONS_TAGS = %w[integrations].freeze
|
|
|
|
integrations = Helpers::IntegrationsHelpers.integrations
|
|
integration_classes = Helpers::IntegrationsHelpers.integration_classes
|
|
|
|
if Gitlab.dev_or_test_env?
|
|
integrations['mock-ci'] = ::Integrations::MockCi.api_arguments
|
|
integrations['mock-monitoring'] = []
|
|
|
|
integration_classes += Helpers::IntegrationsHelpers.development_integration_classes
|
|
end
|
|
|
|
INTEGRATIONS = integrations.freeze
|
|
|
|
integration_classes.each do |integration|
|
|
event_names = integration.try(:event_names) || next
|
|
event_names.each do |event_name|
|
|
INTEGRATIONS[integration.to_param.dasherize] << {
|
|
required: false,
|
|
name: event_name.to_sym,
|
|
type: ::Grape::API::Boolean,
|
|
desc: IntegrationsHelper.integration_event_description(integration, event_name)
|
|
}
|
|
end
|
|
|
|
INTEGRATIONS[integration.to_param.dasherize] << Helpers::IntegrationsHelpers.inheritance_field
|
|
end
|
|
|
|
SLASH_COMMAND_INTEGRATIONS = {
|
|
'mattermost-slash-commands' => ::Integrations::MattermostSlashCommands.api_arguments,
|
|
'slack-slash-commands' => ::Integrations::SlackSlashCommands.api_arguments
|
|
}.freeze
|
|
|
|
helpers do
|
|
def integration_attributes(integration)
|
|
integration.fields.inject([]) do |arr, hash|
|
|
arr << hash[:name].to_sym
|
|
end
|
|
end
|
|
end
|
|
|
|
# The API officially documents only the `:id/integrations` API paths.
|
|
# We support the older `id:/services` path for project integrations for backwards-compatibility in API V4.
|
|
# The support for `:id/services` can be dropped if we create an API V5.
|
|
[':id/services', ':id/integrations'].each do |path|
|
|
params do
|
|
requires :id, types: [String, Integer], desc: 'The ID or URL-encoded path of the project'
|
|
end
|
|
resource :projects, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
|
|
before { authenticate! }
|
|
before { authorize_admin_project_integrations }
|
|
|
|
helpers do
|
|
def fetch_parent_resource
|
|
user_project
|
|
end
|
|
end
|
|
|
|
mount IntegratableOperations, with: { path: path }
|
|
end
|
|
|
|
SLASH_COMMAND_INTEGRATIONS.each do |integration_slug, settings|
|
|
helpers do
|
|
def slash_command_integration(project, integration_slug, params)
|
|
project.integrations.active.find do |integration|
|
|
integration.try(:token) == params[:token] && integration.to_param == integration_slug.underscore
|
|
end
|
|
end
|
|
end
|
|
|
|
params do
|
|
requires :id, types: [String, Integer], desc: 'The ID or URL-encoded path of the project'
|
|
end
|
|
resource :projects, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
|
|
desc "Trigger a slash command for #{integration_slug}" do
|
|
detail 'Added in GitLab 8.13'
|
|
failure [
|
|
{ code: 401, message: 'Unauthorized' },
|
|
{ code: 404, message: 'Not found' }
|
|
]
|
|
tags INTEGRATIONS_TAGS
|
|
end
|
|
params do
|
|
settings.each do |setting|
|
|
requires setting[:name], type: setting[:type], desc: setting[:desc]
|
|
end
|
|
end
|
|
post "#{path}/#{integration_slug.underscore}/trigger", urgency: :low do
|
|
project = find_project(params[:id])
|
|
|
|
# This is not accurate, but done to prevent leakage of the project names
|
|
not_found!('Integration') unless project
|
|
|
|
integration = slash_command_integration(project, integration_slug, params)
|
|
result = integration.try(:trigger, params)
|
|
|
|
if result
|
|
status result[:status] || 200
|
|
present result
|
|
else
|
|
not_found!('Integration')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
# New API endpoints should use the `:id/integrations` path exclusively.
|
|
':id/integrations'.tap do |path|
|
|
params do
|
|
requires :id, types: [String, Integer], desc: 'The ID or URL-encoded path of the group'
|
|
end
|
|
|
|
resource :groups, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
|
|
before { authenticate! }
|
|
before { authorize_admin_group_integrations }
|
|
|
|
helpers do
|
|
def fetch_parent_resource
|
|
user_group
|
|
end
|
|
end
|
|
|
|
mount IntegratableOperations, with: { path: path }
|
|
end
|
|
end
|
|
|
|
desc "Trigger a global slack command" do
|
|
detail 'Added in GitLab 9.4'
|
|
failure [
|
|
{ code: 401, message: 'Unauthorized' }
|
|
]
|
|
end
|
|
params do
|
|
requires :text, type: String, desc: 'Text of the slack command'
|
|
end
|
|
post 'slack/trigger' do
|
|
if result = Gitlab::SlashCommands::GlobalSlackHandler.new(params).trigger
|
|
status result[:status] || 200
|
|
present result
|
|
else
|
|
not_found!
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
# Added for JiHu
|
|
# https://gitlab.com/gitlab-org/gitlab/-/merge_requests/118289#note_1379334692
|
|
API::Integrations.prepend_mod
|