summaryrefslogtreecommitdiff
path: root/app/services/test_hooks/system_service.rb
blob: 76c3c19bd74435c786442658612e11ba55c74928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
module TestHooks
  class SystemService < TestHooks::BaseService
    private

    def project
      @project ||= begin
        project = Project.first

        throw(:validation_error, 'Ensure that at least one project exists.') unless project

        project
      end
    end

    def push_events_data
      if project.empty_repo?
        throw(:validation_error, "Ensure project \"#{project.human_name}\" has commits.")
      end

      Gitlab::DataBuilder::Push.build_sample(project, current_user)
    end

    def tag_push_events_data
      if project.repository.tags.empty?
        throw(:validation_error, "Ensure project \"#{project.human_name}\" has tags.")
      end

      Gitlab::DataBuilder::Push.build_sample(project, current_user)
    end

    def repository_update_events_data
      commit = project.commit
      ref = "#{Gitlab::Git::BRANCH_REF_PREFIX}#{project.default_branch}"

      unless commit
        throw(:validation_error, "Ensure project \"#{project.human_name}\" has commits.")
      end

      change = Gitlab::DataBuilder::Repository.single_change(
        commit.parent_id || Gitlab::Git::BLANK_SHA,
        commit.id,
        ref
      )

      Gitlab::DataBuilder::Repository.update(project, current_user, [change], [ref])
    end
  end
end