summaryrefslogtreecommitdiff
path: root/app/services/files/create_service.rb
blob: 91d715b2d637376ec18e268ee9aa3d4a1c46a340 (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
require_relative "base_service"

module Files
  class CreateService < Files::BaseService
    def commit
      repository.commit_file(current_user, @file_path, @file_content, @commit_message, @target_branch)
    end

    def validate
      super

      file_name = File.basename(@file_path)

      unless file_name =~ Gitlab::Regex.file_name_regex
        raise_error(
          'Your changes could not be committed, because the file name ' +
          Gitlab::Regex.file_name_regex_message
        )
      end

      unless project.empty_repo?
        blob = repository.blob_at_branch(@current_branch, @file_path)

        if blob
          raise_error("Your changes could not be committed, because file with such name exists")
        end
      end
    end
  end
end