summaryrefslogtreecommitdiff
path: root/app/services/commits/change_service.rb
blob: fbf71f02837dcd1a892be7e2948cb61272961a73 (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
# frozen_string_literal: true

module Commits
  class ChangeService < Commits::CreateService
    def initialize(*args)
      super

      @commit = params[:commit]
    end

    private

    def commit_change(action)
      raise NotImplementedError unless repository.respond_to?(action)

      # rubocop:disable GitlabSecurity/PublicSend
      message = @commit.public_send(:"#{action}_message", current_user)
      repository.public_send(
        action,
        current_user,
        @commit,
        @branch_name,
        message,
        start_project: @start_project,
        start_branch_name: @start_branch)
    rescue Gitlab::Git::Repository::CreateTreeError
      act = action.to_s.dasherize
      type = @commit.change_type_title(current_user)

      error_msg = "Sorry, we cannot #{act} this #{type} automatically. " \
        "This #{type} may already have been #{act}ed, or a more recent " \
        "commit may have updated some of its content."
      raise ChangeError, error_msg
    end
  end
end