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

94 lines
2.2 KiB
Ruby
Raw Normal View History

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-10-24 18:46:33 +05:30
include Gitlab::Application.routes.url_helpers
2014-09-02 18:07:02 +05:30
after_save :compose_service_hook, if: :activated?
2015-10-24 18:46:33 +05:30
after_save :ensure_gitlab_ci_project, if: :activated?
2014-09-02 18:07:02 +05:30
def compose_service_hook
hook = service_hook || build_service_hook
hook.save
end
2015-10-24 18:46:33 +05:30
def ensure_gitlab_ci_project
project.ensure_gitlab_ci_project
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-10-24 18:46:33 +05:30
ci_project = project.gitlab_ci_project
2015-09-25 12:07:36 +05:30
if ci_project
2015-10-24 18:46:33 +05:30
current_user = User.find_by(id: data[:user_id])
Ci::CreateCommitService.new.execute(ci_project, current_user, data)
2015-09-25 12:07:36 +05:30
end
2015-04-26 12:48:37 +05:30
end
2015-09-25 12:07:36 +05:30
def token
if project.gitlab_ci_project.present?
project.gitlab_ci_project.token
end
2014-09-02 18:07:02 +05:30
end
2015-09-25 12:07:36 +05:30
def get_ci_commit(sha, ref)
2015-10-24 18:46:33 +05:30
Ci::Project.find(project.gitlab_ci_project).commits.find_by_sha!(sha)
2015-04-26 12:48:37 +05:30
end
def commit_status(sha, ref)
2015-09-25 12:07:36 +05:30
get_ci_commit(sha, ref).status
rescue ActiveRecord::RecordNotFound
:error
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
def commit_coverage(sha, ref)
2015-09-25 12:07:36 +05:30
get_ci_commit(sha, ref).coverage
rescue ActiveRecord::RecordNotFound
:error
2015-04-26 12:48:37 +05:30
end
def build_page(sha, ref)
2015-09-25 12:07:36 +05:30
if project.gitlab_ci_project.present?
2015-10-24 18:46:33 +05:30
ci_namespace_project_commit_url(project.namespace, project, sha)
2015-09-25 12:07:36 +05:30
end
2014-09-02 18:07:02 +05:30
end
def title
'GitLab CI'
end
def description
'Continuous integration server from GitLab'
end
def to_param
'gitlab_ci'
end
def fields
2015-09-25 12:07:36 +05:30
[]
2014-09-02 18:07:02 +05:30
end
end