gitlab-org--gitlab-foss/app/models/project_services/buildkite_service.rb

144 lines
3.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require "addressable/uri"
class BuildkiteService < CiService
include ReactiveService
ENDPOINT = "https://buildkite.com"
2015-03-26 11:40:43 +00:00
2016-12-05 14:40:53 +00:00
prop_accessor :project_url, :token
2014-08-18 10:54:51 +00:00
validates :project_url, presence: true, public_url: true, if: :activated?
2014-08-18 10:54:51 +00:00
validates :token, presence: true, if: :activated?
after_save :compose_service_hook, if: :activated?
def self.supported_events
%w(push merge_request tag_push)
end
# This is a stub method to work with deprecated API response
# TODO: remove enable_ssl_verification after 14.0
# https://gitlab.com/gitlab-org/gitlab/-/issues/222808
def enable_ssl_verification
true
end
# Since SSL verification will always be enabled for Buildkite,
# we no longer needs to store the boolean.
# This is a stub method to work with deprecated API param.
# TODO: remove enable_ssl_verification after 14.0
# https://gitlab.com/gitlab-org/gitlab/-/issues/222808
def enable_ssl_verification=(_value)
self.properties.delete('enable_ssl_verification') # Remove unused key
end
2014-08-18 10:54:51 +00:00
def webhook_url
2015-03-26 11:40:43 +00:00
"#{buildkite_endpoint('webhook')}/deliver/#{webhook_token}"
2014-08-18 10:54:51 +00:00
end
def compose_service_hook
hook = service_hook || build_service_hook
hook.url = webhook_url
hook.enable_ssl_verification = true
2014-08-18 10:54:51 +00:00
hook.save
end
def execute(data)
return unless supported_events.include?(data[:object_kind])
2014-08-18 10:54:51 +00:00
service_hook.execute(data)
end
2015-03-05 14:58:04 +00:00
def commit_status(sha, ref)
with_reactive_cache(sha, ref) {|cached| cached[:commit_status] }
2014-08-18 10:54:51 +00:00
end
def commit_status_path(sha)
2015-03-26 11:40:43 +00:00
"#{buildkite_endpoint('gitlab')}/status/#{status_token}.json?commit=#{sha}"
2014-08-18 10:54:51 +00:00
end
2015-03-05 14:58:04 +00:00
def build_page(sha, ref)
2014-08-18 10:54:51 +00:00
"#{project_url}/builds?commit=#{sha}"
end
def title
2015-03-26 11:40:43 +00:00
'Buildkite'
2014-08-18 10:54:51 +00:00
end
def description
'Buildkite is a platform for running fast, secure, and scalable continuous integration pipelines on your own infrastructure'
2014-08-18 10:54:51 +00:00
end
def self.to_param
2015-03-26 11:40:43 +00:00
'buildkite'
2014-08-18 10:54:51 +00:00
end
def fields
[
{ type: 'text',
name: 'token',
title: 'Integration Token',
help: 'This token will be provided when you create a Buildkite pipeline with a GitLab repository',
required: true },
2014-08-18 10:54:51 +00:00
{ type: 'text',
name: 'project_url',
title: 'Pipeline URL',
placeholder: "#{ENDPOINT}/acme-inc/test-pipeline",
required: true }
2014-08-18 10:54:51 +00:00
]
end
def calculate_reactive_cache(sha, ref)
response = Gitlab::HTTP.try_get(commit_status_path(sha), request_options)
status =
if response&.code == 200 && response['status']
response['status']
else
:error
end
{ commit_status: status }
end
2014-08-18 10:54:51 +00:00
private
def webhook_token
token_parts.first
end
def status_token
token_parts.second
end
def token_parts
if token.present?
token.split(':')
else
[]
end
end
2015-03-26 11:40:43 +00:00
def buildkite_endpoint(subdomain = nil)
2014-08-18 10:54:51 +00:00
if subdomain.present?
2015-03-26 11:40:43 +00:00
uri = Addressable::URI.parse(ENDPOINT)
2014-08-18 10:54:51 +00:00
new_endpoint = "#{uri.scheme || 'http'}://#{subdomain}.#{uri.host}"
if uri.port.present?
"#{new_endpoint}:#{uri.port}"
else
new_endpoint
end
else
2015-03-26 11:40:43 +00:00
ENDPOINT
2014-08-18 10:54:51 +00:00
end
end
def request_options
{ verify: false, extra_log_info: { project_id: project_id } }
end
2014-08-18 10:54:51 +00:00
end