2012-11-19 14:34:05 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: services
|
|
|
|
#
|
2015-03-04 17:14:00 -05:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# type :string(255)
|
|
|
|
# title :string(255)
|
|
|
|
# project_id :integer
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# active :boolean default(FALSE), not null
|
|
|
|
# properties :text
|
|
|
|
# template :boolean default(FALSE)
|
|
|
|
# push_events :boolean default(TRUE)
|
|
|
|
# issues_events :boolean default(TRUE)
|
|
|
|
# merge_requests_events :boolean default(TRUE)
|
|
|
|
# tag_push_events :boolean default(TRUE)
|
2012-11-19 14:34:05 -05:00
|
|
|
#
|
|
|
|
|
2014-05-28 04:35:43 -04:00
|
|
|
class GitlabCiService < CiService
|
2014-09-07 20:54:18 -04:00
|
|
|
prop_accessor :project_url, :token
|
2012-11-20 07:16:04 -05:00
|
|
|
validates :project_url, presence: true, if: :activated?
|
|
|
|
validates :token, presence: true, if: :activated?
|
2012-11-19 14:34:05 -05:00
|
|
|
|
2012-11-20 07:16:04 -05:00
|
|
|
after_save :compose_service_hook, if: :activated?
|
|
|
|
|
2012-11-19 14:34:05 -05:00
|
|
|
def compose_service_hook
|
|
|
|
hook = service_hook || build_service_hook
|
|
|
|
hook.url = [project_url, "/build", "?token=#{token}"].join("")
|
|
|
|
hook.save
|
|
|
|
end
|
2012-11-20 12:34:05 -05:00
|
|
|
|
2015-02-28 11:33:18 -05:00
|
|
|
def supported_events
|
|
|
|
%w(push tag_push)
|
|
|
|
end
|
|
|
|
|
2015-02-24 08:29:21 -05:00
|
|
|
def execute(data)
|
2015-02-28 11:33:18 -05:00
|
|
|
return unless supported_events.include?(data[:object_kind])
|
2015-02-24 08:29:21 -05:00
|
|
|
|
|
|
|
service_hook.execute(data)
|
|
|
|
end
|
|
|
|
|
2015-03-05 09:58:04 -05:00
|
|
|
def commit_status_path(sha, ref)
|
|
|
|
project_url + "/refs/#{ref}/commits/#{sha}/status.json?token=#{token}"
|
2012-12-10 22:14:05 -05:00
|
|
|
end
|
|
|
|
|
2015-03-05 09:58:04 -05:00
|
|
|
def get_ci_build(sha, ref)
|
2014-10-02 11:17:47 -04:00
|
|
|
@ci_builds ||= {}
|
2015-03-05 09:58:04 -05:00
|
|
|
@ci_builds[sha] ||= HTTParty.get(commit_status_path(sha, ref), verify: false)
|
2014-10-02 11:17:47 -04:00
|
|
|
end
|
|
|
|
|
2015-03-05 09:58:04 -05:00
|
|
|
def commit_status(sha, ref)
|
|
|
|
response = get_ci_build(sha, ref)
|
2012-12-10 22:14:05 -05:00
|
|
|
|
|
|
|
if response.code == 200 and response["status"]
|
|
|
|
response["status"]
|
|
|
|
else
|
|
|
|
:error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-03-05 09:58:04 -05:00
|
|
|
def commit_coverage(sha, ref)
|
|
|
|
response = get_ci_build(sha, ref)
|
2014-10-02 11:17:47 -04:00
|
|
|
|
|
|
|
if response.code == 200 and response["coverage"]
|
|
|
|
response["coverage"]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-03-05 09:58:04 -05:00
|
|
|
def build_page(sha, ref)
|
|
|
|
project_url + "/refs/#{ref}/commits/#{sha}"
|
2012-12-10 22:14:05 -05:00
|
|
|
end
|
2013-05-14 06:31:29 -04:00
|
|
|
|
|
|
|
def builds_path
|
|
|
|
project_url + "?ref=" + project.default_branch
|
|
|
|
end
|
|
|
|
|
|
|
|
def status_img_path
|
|
|
|
project_url + "/status.png?ref=" + project.default_branch
|
|
|
|
end
|
2013-05-22 09:58:44 -04:00
|
|
|
|
|
|
|
def title
|
|
|
|
'GitLab CI'
|
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
|
|
|
'Continuous integration server from GitLab'
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_param
|
|
|
|
'gitlab_ci'
|
|
|
|
end
|
|
|
|
|
|
|
|
def fields
|
|
|
|
[
|
|
|
|
{ type: 'text', name: 'token', placeholder: 'GitLab CI project specific token' },
|
2015-02-02 23:36:54 -05:00
|
|
|
{ type: 'text', name: 'project_url', placeholder: 'http://ci.gitlabhq.com/projects/3' }
|
2013-05-22 09:58:44 -04:00
|
|
|
]
|
|
|
|
end
|
2012-11-19 14:34:05 -05:00
|
|
|
end
|