2014-10-29 10:34:28 -04:00
|
|
|
require "addressable/uri"
|
|
|
|
|
2015-04-11 14:02:13 -04:00
|
|
|
class BuildkiteService < CiService
|
2017-01-12 17:31:02 -05:00
|
|
|
include ReactiveService
|
|
|
|
|
2017-02-21 18:32:18 -05:00
|
|
|
ENDPOINT = "https://buildkite.com".freeze
|
2015-03-26 07:40:43 -04:00
|
|
|
|
2016-12-05 09:40:53 -05:00
|
|
|
prop_accessor :project_url, :token
|
|
|
|
boolean_accessor :enable_ssl_verification
|
2014-08-18 06:54:51 -04:00
|
|
|
|
2016-04-21 11:13:14 -04:00
|
|
|
validates :project_url, presence: true, url: true, if: :activated?
|
2014-08-18 06:54:51 -04:00
|
|
|
validates :token, presence: true, if: :activated?
|
|
|
|
|
|
|
|
after_save :compose_service_hook, if: :activated?
|
|
|
|
|
|
|
|
def webhook_url
|
2015-03-26 07:40:43 -04:00
|
|
|
"#{buildkite_endpoint('webhook')}/deliver/#{webhook_token}"
|
2014-08-18 06:54:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def compose_service_hook
|
|
|
|
hook = service_hook || build_service_hook
|
|
|
|
hook.url = webhook_url
|
2015-12-03 03:33:38 -05:00
|
|
|
hook.enable_ssl_verification = !!enable_ssl_verification
|
2014-08-18 06:54:51 -04:00
|
|
|
hook.save
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute(data)
|
2015-02-28 11:33:18 -05:00
|
|
|
return unless supported_events.include?(data[:object_kind])
|
2015-02-19 00:02:57 -05:00
|
|
|
|
2014-08-18 06:54:51 -04:00
|
|
|
service_hook.execute(data)
|
|
|
|
end
|
|
|
|
|
2015-03-05 09:58:04 -05:00
|
|
|
def commit_status(sha, ref)
|
2017-01-12 17:31:02 -05:00
|
|
|
with_reactive_cache(sha, ref) {|cached| cached[:commit_status] }
|
2014-08-18 06:54:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def commit_status_path(sha)
|
2015-03-26 07:40:43 -04:00
|
|
|
"#{buildkite_endpoint('gitlab')}/status/#{status_token}.json?commit=#{sha}"
|
2014-08-18 06:54:51 -04:00
|
|
|
end
|
|
|
|
|
2015-03-05 09:58:04 -05:00
|
|
|
def build_page(sha, ref)
|
2014-08-18 06:54:51 -04:00
|
|
|
"#{project_url}/builds?commit=#{sha}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
2015-03-26 07:40:43 -04:00
|
|
|
'Buildkite'
|
2014-08-18 06:54:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
|
|
|
'Continuous integration and deployments'
|
|
|
|
end
|
|
|
|
|
2016-12-27 07:44:24 -05:00
|
|
|
def self.to_param
|
2015-03-26 07:40:43 -04:00
|
|
|
'buildkite'
|
2014-08-18 06:54:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def fields
|
|
|
|
[
|
|
|
|
{ type: 'text',
|
|
|
|
name: 'token',
|
2017-05-22 06:07:12 -04:00
|
|
|
placeholder: 'Buildkite project GitLab token', required: true },
|
2014-08-18 06:54:51 -04:00
|
|
|
|
|
|
|
{ type: 'text',
|
|
|
|
name: 'project_url',
|
2017-05-22 06:07:12 -04:00
|
|
|
placeholder: "#{ENDPOINT}/example/project", required: true },
|
2016-04-21 11:13:14 -04:00
|
|
|
|
2015-08-11 02:59:40 -04:00
|
|
|
{ type: 'checkbox',
|
|
|
|
name: 'enable_ssl_verification',
|
|
|
|
title: "Enable SSL verification" }
|
2014-08-18 06:54:51 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2017-01-12 17:31:02 -05:00
|
|
|
def calculate_reactive_cache(sha, ref)
|
|
|
|
response = HTTParty.get(commit_status_path(sha), verify: false)
|
|
|
|
|
|
|
|
status =
|
|
|
|
if response.code == 200 && response['status']
|
|
|
|
response['status']
|
|
|
|
else
|
|
|
|
:error
|
|
|
|
end
|
|
|
|
|
|
|
|
{ commit_status: status }
|
|
|
|
end
|
|
|
|
|
2014-08-18 06:54:51 -04: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 07:40:43 -04:00
|
|
|
def buildkite_endpoint(subdomain = nil)
|
2014-08-18 06:54:51 -04:00
|
|
|
if subdomain.present?
|
2015-03-26 07:40:43 -04:00
|
|
|
uri = Addressable::URI.parse(ENDPOINT)
|
2014-08-18 06:54:51 -04: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 07:40:43 -04:00
|
|
|
ENDPOINT
|
2014-08-18 06:54:51 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|