gitlab-org--gitlab-foss/app/models/project_services/gitlab_ci_service.rb

95 lines
2.2 KiB
Ruby
Raw Normal View History

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)
2015-05-03 12:05:38 -04:00
# note_events :boolean default(TRUE), not null
2012-11-19 14:34:05 -05:00
#
class GitlabCiService < CiService
2015-09-22 10:51:16 -04:00
include Gitlab::Application.routes.url_helpers
2012-11-20 07:16:04 -05:00
after_save :compose_service_hook, if: :activated?
after_save :ensure_gitlab_ci_project, if: :activated?
2012-11-20 07:16:04 -05:00
2012-11-19 14:34:05 -05:00
def compose_service_hook
hook = service_hook || build_service_hook
hook.save
end
2012-11-20 12:34:05 -05:00
def ensure_gitlab_ci_project
return unless project
project.ensure_gitlab_ci_project
end
def supported_events
%w(push tag_push)
end
def execute(data)
return unless supported_events.include?(data[:object_kind])
ci_project = project.gitlab_ci_project
if ci_project
current_user = User.find_by(id: data[:user_id])
2015-10-05 07:12:00 -04:00
Ci::CreateCommitService.new.execute(ci_project, current_user, data)
end
end
def token
if project.gitlab_ci_project.present?
project.gitlab_ci_project.token
end
end
2015-09-18 09:20:32 -04:00
def get_ci_commit(sha, ref)
2015-11-30 11:03:07 -05:00
Ci::Project.find(project.gitlab_ci_project.id).commits.find_by_sha!(sha)
end
2015-03-05 09:58:04 -05:00
def commit_status(sha, ref)
2015-09-18 09:20:32 -04:00
get_ci_commit(sha, ref).status
rescue ActiveRecord::RecordNotFound
:error
end
2015-03-05 09:58:04 -05:00
def commit_coverage(sha, ref)
2015-09-18 09:20:32 -04:00
get_ci_commit(sha, ref).coverage
rescue ActiveRecord::RecordNotFound
:error
end
2015-03-05 09:58:04 -05:00
def build_page(sha, ref)
if project.gitlab_ci_project.present?
builds_namespace_project_commit_url(project.namespace, project, sha)
end
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
2015-09-16 05:43:16 -04:00
[]
2013-05-22 09:58:44 -04:00
end
2012-11-19 14:34:05 -05:00
end