summaryrefslogtreecommitdiff
path: root/lib/gitlab/git_post_receive.rb
blob: d32bdd86427cf963d17b23fd45a06e2b5ac931f9 (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
49
50
51
52
53
54
55
56
57
58
59
module Gitlab
  class GitPostReceive
    include Gitlab::Identifier
    attr_reader :repo_path, :identifier, :changes, :project

    def initialize(repo_path, identifier, changes)
      repo_path.gsub!(/\.git\z/, '')
      repo_path.gsub!(/\A\//, '')

      @repo_path = repo_path
      @identifier = identifier
      @changes = deserialize_changes(changes)

      retrieve_project_and_type
    end

    def wiki?
      @type == :wiki
    end

    def regular_project?
      @type == :project
    end

    def identify(revision)
      super(identifier, project, revision)
    end

    private

    def retrieve_project_and_type
      @type = :project
      @project = Project.find_with_namespace(@repo_path)

      if @repo_path.end_with?('.wiki') && !@project
        @type = :wiki
        @project = Project.find_with_namespace(@repo_path.gsub(/\.wiki\z/, ''))
      end
    end

    def deserialize_changes(changes)
      changes = utf8_encode_changes(changes)
      changes.lines
    end

    def utf8_encode_changes(changes)
      changes = changes.dup

      changes.force_encoding('UTF-8')
      return changes if changes.valid_encoding?

      # Convert non-UTF-8 branch/tag names to UTF-8 so they can be dumped as JSON.
      detection = CharlockHolmes::EncodingDetector.detect(changes)
      return changes unless detection && detection[:encoding]

      CharlockHolmes::Converter.convert(changes, detection[:encoding], 'UTF-8')
    end
  end
end