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

136 lines
3.4 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class TeamcityService < CiService
include HTTParty
prop_accessor :teamcity_url, :build_type, :username, :password
2015-12-23 02:04:40 +05:30
validates :teamcity_url, presence: true, url: true, if: :activated?
2015-04-26 12:48:37 +05:30
validates :build_type, 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 teamcity_url_changed? && !password_touched?
self.password = nil
end
end
2015-04-26 12:48:37 +05:30
def title
'JetBrains TeamCity CI'
end
def description
'A continuous integration and build server'
end
def help
'The build configuration in Teamcity must use the build format '\
'number %build.vcs.number% '\
'you will also want to configure monitoring of all branches so merge '\
'requests build, that setting is in the vsc root advanced settings.'
end
def to_param
'teamcity'
end
def supported_events
%w(push)
end
def fields
[
{ type: 'text', name: 'teamcity_url',
placeholder: 'TeamCity root URL like https://teamcity.example.com' },
{ type: 'text', name: 'build_type',
placeholder: 'Build configuration ID' },
{ type: 'text', name: 'username',
placeholder: 'A user with permissions to trigger a manual build' },
{ type: 'password', name: 'password' },
]
end
def build_info(sha)
2016-06-02 11:05:42 +05:30
url = URI.join(
teamcity_url,
"/httpAuth/app/rest/builds/branch:unspecified:any,number:#{sha}"
).to_s
2015-04-26 12:48:37 +05:30
auth = {
username: username,
2016-06-02 11:05:42 +05:30
password: password
2015-04-26 12:48:37 +05:30
}
2016-06-02 11:05:42 +05:30
@response = HTTParty.get(url, verify: false, basic_auth: auth)
2015-04-26 12:48:37 +05:30
end
def build_page(sha, ref)
build_info(sha) if @response.nil? || !@response.code
if @response.code != 200
# If actual build link can't be determined,
# send user to build summary page.
2016-06-02 11:05:42 +05:30
URI.join(teamcity_url, "/viewLog.html?buildTypeId=#{build_type}").to_s
2015-04-26 12:48:37 +05:30
else
# If actual build link is available, go to build result page.
built_id = @response['build']['id']
2016-06-02 11:05:42 +05:30
URI.join(
teamcity_url,
"/viewLog.html?buildId=#{built_id}&buildTypeId=#{build_type}"
).to_s
2015-04-26 12:48:37 +05:30
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
'Pending'
else
@response['build']['status']
end
if status.include?('SUCCESS')
'success'
elsif status.include?('FAILURE')
'failed'
elsif status.include?('Pending')
'pending'
else
:error
end
end
def execute(data)
return unless supported_events.include?(data[:object_kind])
auth = {
username: username,
password: password,
}
branch = Gitlab::Git.ref_name(data[:ref])
2016-06-02 11:05:42 +05:30
self.class.post(
URI.join(teamcity_url, '/httpAuth/app/rest/buildQueue').to_s,
body: "<build branchName=\"#{branch}\">"\
"<buildType id=\"#{build_type}\"/>"\
'</build>',
headers: { 'Content-type' => 'application/xml' },
basic_auth: auth
)
2015-04-26 12:48:37 +05:30
end
end