2014-09-02 18:07:02 +05:30
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: services
|
|
|
|
#
|
2015-04-26 12:48:37 +05:30
|
|
|
# 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)
|
2015-09-11 14:41:01 +05:30
|
|
|
# note_events :boolean default(TRUE), not null
|
2014-09-02 18:07:02 +05:30
|
|
|
#
|
|
|
|
|
|
|
|
class GitlabCiService < CiService
|
2015-04-26 12:48:37 +05:30
|
|
|
API_PREFIX = "api/v1"
|
|
|
|
|
|
|
|
prop_accessor :project_url, :token
|
2015-09-11 14:41:01 +05:30
|
|
|
validates :project_url,
|
|
|
|
presence: true,
|
|
|
|
format: { with: /\A#{URI.regexp(%w(http https))}\z/, message: "should be a valid url" }, if: :activated?
|
|
|
|
validates :token,
|
|
|
|
presence: true,
|
|
|
|
format: { with: /\A([A-Za-z0-9]+)\z/ }, if: :activated?
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
after_save :compose_service_hook, if: :activated?
|
|
|
|
|
|
|
|
def compose_service_hook
|
|
|
|
hook = service_hook || build_service_hook
|
|
|
|
hook.url = [project_url, "/build", "?token=#{token}"].join("")
|
|
|
|
hook.save
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def supported_events
|
|
|
|
%w(push tag_push)
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute(data)
|
|
|
|
return unless supported_events.include?(data[:object_kind])
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
sha = data[:checkout_sha]
|
|
|
|
|
|
|
|
if sha.present?
|
|
|
|
file = ci_yaml_file(sha)
|
|
|
|
|
|
|
|
if file && file.data
|
|
|
|
data.merge!(ci_yaml_file: file.data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
service_hook.execute(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def commit_status_path(sha, ref)
|
2015-09-11 14:41:01 +05:30
|
|
|
URI::encode(project_url + "/refs/#{ref}/commits/#{sha}/status.json?token=#{token}")
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def get_ci_build(sha, ref)
|
|
|
|
@ci_builds ||= {}
|
|
|
|
@ci_builds[sha] ||= HTTParty.get(commit_status_path(sha, ref), verify: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
def commit_status(sha, ref)
|
|
|
|
response = get_ci_build(sha, ref)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
if response.code == 200 and response["status"]
|
|
|
|
response["status"]
|
|
|
|
else
|
|
|
|
:error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def fork_registration(new_project, private_token)
|
|
|
|
params = {
|
|
|
|
id: new_project.id,
|
|
|
|
name_with_namespace: new_project.name_with_namespace,
|
2015-09-11 14:41:01 +05:30
|
|
|
path_with_namespace: new_project.path_with_namespace,
|
2015-04-26 12:48:37 +05:30
|
|
|
web_url: new_project.web_url,
|
|
|
|
default_branch: new_project.default_branch,
|
|
|
|
ssh_url_to_repo: new_project.ssh_url_to_repo
|
|
|
|
}
|
|
|
|
|
|
|
|
HTTParty.post(
|
|
|
|
fork_registration_path,
|
|
|
|
body: {
|
|
|
|
project_id: project.id,
|
|
|
|
project_token: token,
|
|
|
|
private_token: private_token,
|
|
|
|
data: params },
|
|
|
|
verify: false
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def commit_coverage(sha, ref)
|
|
|
|
response = get_ci_build(sha, ref)
|
|
|
|
|
|
|
|
if response.code == 200 and response["coverage"]
|
|
|
|
response["coverage"]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_page(sha, ref)
|
2015-09-11 14:41:01 +05:30
|
|
|
URI::encode(project_url + "/refs/#{ref}/commits/#{sha}")
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def builds_path
|
|
|
|
project_url + "?ref=" + project.default_branch
|
|
|
|
end
|
|
|
|
|
|
|
|
def status_img_path
|
|
|
|
project_url + "/status.png?ref=" + project.default_branch
|
|
|
|
end
|
|
|
|
|
|
|
|
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-04-26 12:48:37 +05:30
|
|
|
{ type: 'text', name: 'project_url', placeholder: 'http://ci.gitlabhq.com/projects/3' }
|
2014-09-02 18:07:02 +05:30
|
|
|
]
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
def ci_yaml_file(sha)
|
|
|
|
repository.blob_at(sha, '.gitlab-ci.yml')
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def fork_registration_path
|
|
|
|
project_url.sub(/projects\/\d*/, "#{API_PREFIX}/forks")
|
|
|
|
end
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
|
|
def repository
|
|
|
|
project.repository
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|