summaryrefslogtreecommitdiff
path: root/app/services/ci/create_commit_service.rb
blob: 9120a82edcd117bb4584642fd0a9c4fba22f6d33 (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
module Ci
  class CreateCommitService
    def execute(project, params)
      before_sha = params[:before]
      sha = params[:checkout_sha] || params[:after]
      origin_ref = params[:ref]
      
      unless origin_ref && sha.present?
        return false
      end

      ref = origin_ref.gsub(/\Arefs\/(tags|heads)\//, '')

      # Skip branch removal
      if sha == Ci::Git::BLANK_SHA
        return false
      end

      tag = origin_ref.start_with?('refs/tags/')
      push_data = {
        before: before_sha,
        after: sha,
        ref: ref,
        user_name: params[:user_name],
        user_email: params[:user_email],
        repository: params[:repository],
        commits: params[:commits],
        total_commits_count: params[:total_commits_count],
        ci_yaml_file: params[:ci_yaml_file]
      }

      commit = project.gl_project.ensure_ci_commit(sha)
      commit.update_committed!
      commit.create_builds(ref, tag, push_data)

      commit
    end
  end
end