gitlab-org--gitlab-foss/app/services/test_hooks/project_service.rb

68 lines
2.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-07-20 15:12:06 +00:00
module TestHooks
class ProjectService < TestHooks::BaseService
attr_writer :project
2017-07-20 15:12:06 +00:00
def project
@project ||= hook.project
end
private
2017-07-20 15:12:06 +00:00
def push_events_data
throw(:validation_error, s_('TestHooks|Ensure the project has at least one commit.')) if project.empty_repo? # rubocop:disable Cop/BanCatchThrow
2017-07-20 15:12:06 +00:00
Gitlab::DataBuilder::Push.build_sample(project, current_user)
end
alias_method :tag_push_events_data, :push_events_data
def note_events_data
note = project.notes.first
throw(:validation_error, s_('TestHooks|Ensure the project has notes.')) unless note.present? # rubocop:disable Cop/BanCatchThrow
2017-07-20 15:12:06 +00:00
Gitlab::DataBuilder::Note.build(note, current_user)
end
def issues_events_data
issue = project.issues.first
throw(:validation_error, s_('TestHooks|Ensure the project has issues.')) unless issue.present? # rubocop:disable Cop/BanCatchThrow
2017-07-20 15:12:06 +00:00
issue.to_hook_data(current_user)
end
alias_method :confidential_issues_events_data, :issues_events_data
def merge_requests_events_data
merge_request = project.merge_requests.first
throw(:validation_error, s_('TestHooks|Ensure the project has merge requests.')) unless merge_request.present? # rubocop:disable Cop/BanCatchThrow
2017-07-20 15:12:06 +00:00
merge_request.to_hook_data(current_user)
end
def job_events_data
build = project.builds.first
throw(:validation_error, s_('TestHooks|Ensure the project has CI jobs.')) unless build.present? # rubocop:disable Cop/BanCatchThrow
2017-07-20 15:12:06 +00:00
Gitlab::DataBuilder::Build.build(build)
end
def pipeline_events_data
2018-12-05 14:39:15 +00:00
pipeline = project.ci_pipelines.first
throw(:validation_error, s_('TestHooks|Ensure the project has CI pipelines.')) unless pipeline.present? # rubocop:disable Cop/BanCatchThrow
2017-07-20 15:12:06 +00:00
Gitlab::DataBuilder::Pipeline.build(pipeline)
end
def wiki_page_events_data
page = project.wiki.list_pages(limit: 1).first
2017-07-20 15:12:06 +00:00
if !project.wiki_enabled? || page.blank?
throw(:validation_error, s_('TestHooks|Ensure the wiki is enabled and has pages.')) # rubocop:disable Cop/BanCatchThrow
2017-07-20 15:12:06 +00:00
end
Gitlab::DataBuilder::WikiPage.build(page, current_user, 'create')
end
end
end