2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
class BambooService < CiService
|
2017-08-17 22:00:37 +05:30
|
|
|
include ReactiveService
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
prop_accessor :bamboo_url, :build_key, :username, :password
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
validates :bamboo_url, presence: true, public_url: true, if: :activated?
|
2015-04-26 12:48:37 +05:30
|
|
|
validates :build_key, presence: true, if: :activated?
|
|
|
|
validates :username,
|
|
|
|
presence: true,
|
2015-12-23 02:04:40 +05:30
|
|
|
if: ->(service) { service.activated? && service.password }
|
2015-04-26 12:48:37 +05:30
|
|
|
validates :password,
|
|
|
|
presence: true,
|
2015-12-23 02:04:40 +05:30
|
|
|
if: ->(service) { service.activated? && service.username }
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
attr_accessor :response
|
|
|
|
|
|
|
|
after_save :compose_service_hook, if: :activated?
|
2015-10-24 18:46:33 +05:30
|
|
|
before_update :reset_password
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
def compose_service_hook
|
|
|
|
hook = service_hook || build_service_hook
|
|
|
|
hook.save
|
|
|
|
end
|
|
|
|
|
2015-10-24 18:46:33 +05:30
|
|
|
def reset_password
|
|
|
|
if bamboo_url_changed? && !password_touched?
|
|
|
|
self.password = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def title
|
|
|
|
'Atlassian Bamboo CI'
|
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
|
|
|
'A continuous integration and build server'
|
|
|
|
end
|
|
|
|
|
|
|
|
def help
|
|
|
|
'You must set up automatic revision labeling and a repository trigger in Bamboo.'
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def self.to_param
|
2015-04-26 12:48:37 +05:30
|
|
|
'bamboo'
|
|
|
|
end
|
|
|
|
|
|
|
|
def fields
|
|
|
|
[
|
|
|
|
{ type: 'text', name: 'bamboo_url',
|
2017-09-10 17:25:29 +05:30
|
|
|
placeholder: 'Bamboo root URL like https://bamboo.example.com', required: true },
|
2015-04-26 12:48:37 +05:30
|
|
|
{ type: 'text', name: 'build_key',
|
2017-09-10 17:25:29 +05:30
|
|
|
placeholder: 'Bamboo build plan key like KEY', required: true },
|
2015-04-26 12:48:37 +05:30
|
|
|
{ type: 'text', name: 'username',
|
|
|
|
placeholder: 'A user with API access, if applicable' },
|
2017-09-10 17:25:29 +05:30
|
|
|
{ type: 'password', name: 'password' }
|
2015-04-26 12:48:37 +05:30
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def build_page(sha, ref)
|
|
|
|
with_reactive_cache(sha, ref) {|cached| cached[:build_page] }
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def commit_status(sha, ref)
|
|
|
|
with_reactive_cache(sha, ref) {|cached| cached[:commit_status] }
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def execute(data)
|
|
|
|
return unless supported_events.include?(data[:object_kind])
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
get_path("updateAndBuild.action", { buildKey: build_key })
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def calculate_reactive_cache(sha, ref)
|
2018-11-08 19:23:39 +05:30
|
|
|
response = get_path("rest/api/latest/result/byChangeset/#{sha}")
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
{ build_page: read_build_page(response), commit_status: read_commit_status(response) }
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
private
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
def get_build_result_index
|
|
|
|
# When Bamboo returns multiple results for a given changeset, arbitrarily assume the most relevant result to be the last one.
|
|
|
|
-1
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def read_build_page(response)
|
2019-01-03 12:48:30 +05:30
|
|
|
if response.code != 200 || response.dig('results', 'results', 'size') == '0'
|
|
|
|
# If actual build link can't be determined, send user to build summary page.
|
|
|
|
URI.join("#{bamboo_url}/", "browse/#{build_key}").to_s
|
|
|
|
else
|
|
|
|
# If actual build link is available, go to build result page.
|
|
|
|
result_key = response.dig('results', 'results', 'result', get_build_result_index, 'planResultKey', 'key')
|
|
|
|
URI.join("#{bamboo_url}/", "browse/#{result_key}").to_s
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def read_commit_status(response)
|
|
|
|
return :error unless response.code == 200 || response.code == 404
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
status = if response.code == 404 || response.dig('results', 'results', 'size') == '0'
|
2015-04-26 12:48:37 +05:30
|
|
|
'Pending'
|
|
|
|
else
|
2018-12-13 13:39:08 +05:30
|
|
|
response.dig('results', 'results', 'result', get_build_result_index, 'buildState')
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
if status.include?('Success')
|
|
|
|
'success'
|
|
|
|
elsif status.include?('Failed')
|
|
|
|
'failed'
|
|
|
|
elsif status.include?('Pending')
|
|
|
|
'pending'
|
|
|
|
else
|
|
|
|
:error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
def build_url(path)
|
2019-01-03 12:48:30 +05:30
|
|
|
URI.join("#{bamboo_url}/", path).to_s
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def get_path(path, query_params = {})
|
2016-06-16 23:09:34 +05:30
|
|
|
url = build_url(path)
|
|
|
|
|
|
|
|
if username.blank? && password.blank?
|
2018-11-08 19:23:39 +05:30
|
|
|
Gitlab::HTTP.get(url, verify: false, query: query_params)
|
2016-06-16 23:09:34 +05:30
|
|
|
else
|
2018-11-08 19:23:39 +05:30
|
|
|
query_params[:os_authType] = 'basic'
|
|
|
|
Gitlab::HTTP.get(url,
|
|
|
|
verify: false,
|
|
|
|
query: query_params,
|
|
|
|
basic_auth: {
|
|
|
|
username: username,
|
|
|
|
password: password
|
|
|
|
})
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|