summaryrefslogtreecommitdiff
path: root/app/services/files/create_service.rb
blob: 65b5537fb68f9b2f780f5a793a83f413b0f04609 (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 Files
  class CreateService < Files::BaseService
    def commit
      repository.create_file(
        current_user,
        @file_path,
        @file_content,
        message: @commit_message,
        branch_name: @target_branch,
        author_email: @author_email,
        author_name: @author_name,
        start_project: @start_project,
        start_branch_name: @start_branch)
    end

    def validate
      super

      if @file_content.nil?
        raise_error("You must provide content.")
      end

      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(@start_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