2012-11-19 14:34:05 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: services
|
|
|
|
#
|
2014-10-09 11:22:20 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# type :string(255)
|
|
|
|
# title :string(255)
|
|
|
|
# project_id :integer not null
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# active :boolean default(FALSE), not null
|
|
|
|
# properties :text
|
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
|
|
|
|
|
|
|
delegate :execute, to: :service_hook, prefix: nil
|
|
|
|
|
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
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def commit_status_path(sha)
|
2014-11-05 04:44:40 -05:00
|
|
|
project_url + "/commits/#{sha}/status.json?token=#{token}"
|
2012-12-10 22:14:05 -05:00
|
|
|
end
|
|
|
|
|
2014-10-02 11:17:47 -04:00
|
|
|
def get_ci_build(sha)
|
|
|
|
@ci_builds ||= {}
|
|
|
|
@ci_builds[sha] ||= HTTParty.get(commit_status_path(sha), verify: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
def commit_status(sha)
|
|
|
|
response = get_ci_build(sha)
|
2012-12-10 22:14:05 -05:00
|
|
|
|
|
|
|
if response.code == 200 and response["status"]
|
|
|
|
response["status"]
|
|
|
|
else
|
|
|
|
:error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-02 11:17:47 -04:00
|
|
|
def commit_coverage(sha)
|
|
|
|
response = get_ci_build(sha)
|
|
|
|
|
|
|
|
if response.code == 200 and response["coverage"]
|
|
|
|
response["coverage"]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def build_page(sha)
|
2014-11-05 04:44:40 -05:00
|
|
|
project_url + "/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' },
|
|
|
|
{ type: 'text', name: 'project_url', placeholder: 'http://ci.gitlabhq.com/projects/3'}
|
|
|
|
]
|
|
|
|
end
|
2012-11-19 14:34:05 -05:00
|
|
|
end
|