f1479b56b7
In 8278b763d9
the default behaviour of annotation
has changes, which was causing a lot of noise in diffs. We decided in #17382
that it is better to get rid of the whole annotate gem, and instead let people
look at schema.rb for the columns in a table.
Fixes: #17382
119 lines
3.2 KiB
Ruby
119 lines
3.2 KiB
Ruby
class BambooService < CiService
|
|
include HTTParty
|
|
|
|
prop_accessor :bamboo_url, :build_key, :username, :password
|
|
|
|
validates :bamboo_url, presence: true, url: true, if: :activated?
|
|
validates :build_key, presence: true, if: :activated?
|
|
validates :username,
|
|
presence: true,
|
|
if: ->(service) { service.activated? && service.password }
|
|
validates :password,
|
|
presence: true,
|
|
if: ->(service) { service.activated? && service.username }
|
|
|
|
attr_accessor :response
|
|
|
|
after_save :compose_service_hook, if: :activated?
|
|
before_update :reset_password
|
|
|
|
def compose_service_hook
|
|
hook = service_hook || build_service_hook
|
|
hook.save
|
|
end
|
|
|
|
def reset_password
|
|
if bamboo_url_changed? && !password_touched?
|
|
self.password = nil
|
|
end
|
|
end
|
|
|
|
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
|
|
|
|
def to_param
|
|
'bamboo'
|
|
end
|
|
|
|
def fields
|
|
[
|
|
{ type: 'text', name: 'bamboo_url',
|
|
placeholder: 'Bamboo root URL like https://bamboo.example.com' },
|
|
{ type: 'text', name: 'build_key',
|
|
placeholder: 'Bamboo build plan key like KEY' },
|
|
{ type: 'text', name: 'username',
|
|
placeholder: 'A user with API access, if applicable' },
|
|
{ type: 'password', name: 'password' },
|
|
]
|
|
end
|
|
|
|
def supported_events
|
|
%w(push)
|
|
end
|
|
|
|
def build_info(sha)
|
|
url = URI.join(bamboo_url, "/rest/api/latest/result?label=#{sha}").to_s
|
|
|
|
if username.blank? && password.blank?
|
|
@response = HTTParty.get(url, verify: false)
|
|
else
|
|
url << '&os_authType=basic'
|
|
auth = {
|
|
username: username,
|
|
password: password
|
|
}
|
|
@response = HTTParty.get(url, verify: false, basic_auth: auth)
|
|
end
|
|
end
|
|
|
|
def build_page(sha, ref)
|
|
build_info(sha) if @response.nil? || !@response.code
|
|
|
|
if @response.code != 200 || @response['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['results']['results']['result']['planResultKey']['key']
|
|
URI.join(bamboo_url, "/browse/#{result_key}").to_s
|
|
end
|
|
end
|
|
|
|
def commit_status(sha, ref)
|
|
build_info(sha) if @response.nil? || !@response.code
|
|
return :error unless @response.code == 200 || @response.code == 404
|
|
|
|
status = if @response.code == 404 || @response['results']['results']['size'] == '0'
|
|
'Pending'
|
|
else
|
|
@response['results']['results']['result']['buildState']
|
|
end
|
|
|
|
if status.include?('Success')
|
|
'success'
|
|
elsif status.include?('Failed')
|
|
'failed'
|
|
elsif status.include?('Pending')
|
|
'pending'
|
|
else
|
|
:error
|
|
end
|
|
end
|
|
|
|
def execute(data)
|
|
return unless supported_events.include?(data[:object_kind])
|
|
|
|
# Bamboo requires a GET and does not take any data.
|
|
url = URI.join(bamboo_url, "/updateAndBuild.action?buildKey=#{build_key}").to_s
|
|
self.class.get(url, verify: false)
|
|
end
|
|
end
|