2016-06-02 11:05:42 +05:30
|
|
|
module Gitlab
|
|
|
|
class GitPostReceive
|
|
|
|
include Gitlab::Identifier
|
2017-08-17 22:00:37 +05:30
|
|
|
attr_reader :project, :identifier, :changes
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def initialize(project, identifier, changes)
|
|
|
|
@project = project
|
2016-06-02 11:05:42 +05:30
|
|
|
@identifier = identifier
|
|
|
|
@changes = deserialize_changes(changes)
|
|
|
|
end
|
|
|
|
|
|
|
|
def identify(revision)
|
|
|
|
super(identifier, project, revision)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
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
|