debian-mirror-gitlab/app/models/project_services/buildkite_service.rb

125 lines
2.5 KiB
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2015-04-26 12:48:37 +05:30
require "addressable/uri"
class BuildkiteService < CiService
2017-08-17 22:00:37 +05:30
include ReactiveService
2015-04-26 12:48:37 +05:30
2019-12-04 20:38:33 +05:30
ENDPOINT = "https://buildkite.com"
2017-08-17 22:00:37 +05:30
prop_accessor :project_url, :token
boolean_accessor :enable_ssl_verification
2015-04-26 12:48:37 +05:30
2018-11-08 19:23:39 +05:30
validates :project_url, presence: true, public_url: true, if: :activated?
2015-04-26 12:48:37 +05:30
validates :token, presence: true, if: :activated?
after_save :compose_service_hook, if: :activated?
def webhook_url
"#{buildkite_endpoint('webhook')}/deliver/#{webhook_token}"
end
def compose_service_hook
hook = service_hook || build_service_hook
hook.url = webhook_url
2015-12-23 02:04:40 +05:30
hook.enable_ssl_verification = !!enable_ssl_verification
2015-04-26 12:48:37 +05:30
hook.save
end
def execute(data)
return unless supported_events.include?(data[:object_kind])
service_hook.execute(data)
end
def commit_status(sha, ref)
2017-08-17 22:00:37 +05:30
with_reactive_cache(sha, ref) {|cached| cached[:commit_status] }
2015-04-26 12:48:37 +05:30
end
def commit_status_path(sha)
"#{buildkite_endpoint('gitlab')}/status/#{status_token}.json?commit=#{sha}"
end
def build_page(sha, ref)
"#{project_url}/builds?commit=#{sha}"
end
def title
'Buildkite'
end
def description
'Continuous integration and deployments'
end
2017-08-17 22:00:37 +05:30
def self.to_param
2015-04-26 12:48:37 +05:30
'buildkite'
end
def fields
[
{ type: 'text',
name: 'token',
2017-09-10 17:25:29 +05:30
placeholder: 'Buildkite project GitLab token', required: true },
2015-04-26 12:48:37 +05:30
{ type: 'text',
name: 'project_url',
2017-09-10 17:25:29 +05:30
placeholder: "#{ENDPOINT}/example/project", required: true },
2016-06-02 11:05:42 +05:30
2015-09-25 12:07:36 +05:30
{ type: 'checkbox',
name: 'enable_ssl_verification',
title: "Enable SSL verification" }
2015-04-26 12:48:37 +05:30
]
end
2017-08-17 22:00:37 +05:30
def calculate_reactive_cache(sha, ref)
2020-04-22 19:07:51 +05:30
response = Gitlab::HTTP.try_get(commit_status_path(sha), request_options)
2017-08-17 22:00:37 +05:30
status =
2020-04-22 19:07:51 +05:30
if response&.code == 200 && response['status']
2017-08-17 22:00:37 +05:30
response['status']
else
:error
end
{ commit_status: status }
end
2015-04-26 12:48:37 +05:30
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
def buildkite_endpoint(subdomain = nil)
if subdomain.present?
uri = Addressable::URI.parse(ENDPOINT)
new_endpoint = "#{uri.scheme || 'http'}://#{subdomain}.#{uri.host}"
if uri.port.present?
"#{new_endpoint}:#{uri.port}"
else
new_endpoint
end
else
ENDPOINT
end
end
2020-04-22 19:07:51 +05:30
def request_options
{ verify: false, extra_log_info: { project_id: project_id } }
end
2015-04-26 12:48:37 +05:30
end