Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_service.rb « files « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 270dc6471aa0bc87ae8760d1abce2f512b2300b4 (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
module Files
  class CreateService < Files::BaseService
    def commit
      repository.commit_file(
        current_user,
        @file_path,
        @file_content,
        message: @commit_message,
        branch_name: @target_branch,
        update: false,
        author_email: @author_email,
        author_name: @author_name,
        base_project: @base_project,
        base_branch_name: @base_branch)
    end

    def validate
      super

      if @file_path =~ Gitlab::Regex.directory_traversal_regex
        raise_error(
          'Your changes could not be committed, because the file name ' +
          Gitlab::Regex.directory_traversal_regex_message
        )
      end

      unless @file_path =~ Gitlab::Regex.file_path_regex
        raise_error(
          'Your changes could not be committed, because the file name ' +
          Gitlab::Regex.file_path_regex_message
        )
      end

      unless project.empty_repo?
        @file_path.slice!(0) if @file_path.start_with?('/')

        blob = repository.blob_at_branch(@base_branch, @file_path)

        if blob
          raise_error('Your changes could not be committed because a file with the same name already exists')
        end
      end
    end
  end
end