2011-12-12 19:03:26 -05:00
class PostReceive
2013-01-09 00:14:05 -05:00
include Sidekiq :: Worker
2013-04-29 02:43:18 -04:00
include Gitlab :: Identifier
2012-01-03 17:42:14 -05:00
2013-01-09 00:14:05 -05:00
sidekiq_options queue : :post_receive
2014-09-02 03:58:54 -04:00
def perform ( repo_path , identifier , changes )
2013-02-11 12:16:59 -05:00
if repo_path . start_with? ( Gitlab . config . gitlab_shell . repos_path . to_s )
repo_path . gsub! ( Gitlab . config . gitlab_shell . repos_path . to_s , " " )
2013-01-29 04:32:05 -05:00
else
2013-04-29 02:43:18 -04:00
log ( " Check gitlab.yml config for correct gitlab_shell.repos_path variable. \" #{ Gitlab . config . gitlab_shell . repos_path } \" does not match \" #{ repo_path } \" " )
2013-01-29 04:32:05 -05:00
end
2015-04-10 12:30:02 -04:00
repo_path . gsub! ( / \ .git \ z / , " " )
repo_path . gsub! ( / \ A \/ / , " " )
2012-12-08 13:48:33 -05:00
project = Project . find_with_namespace ( repo_path )
2013-01-29 04:32:05 -05:00
if project . nil?
2013-04-29 02:43:18 -04:00
log ( " Triggered hook for non-existing project with full path \" #{ repo_path } \" " )
2013-01-29 04:32:05 -05:00
return false
end
2011-12-14 11:38:52 -05:00
2015-03-15 10:42:31 -04:00
changes = Base64 . decode64 ( changes ) unless changes . include? ( " " )
changes = utf8_encode_changes ( changes )
changes = changes . lines
2013-01-28 10:22:45 -05:00
2014-09-02 03:58:54 -04:00
changes . each do | change |
oldrev , newrev , ref = change . strip . split ( ' ' )
2012-02-29 16:04:09 -05:00
2014-09-02 03:58:54 -04:00
@user || = identify ( identifier , project , newrev )
unless @user
log ( " Triggered hook for non-existing user \" #{ identifier } \" " )
return false
end
2015-03-10 06:51:36 -04:00
if Gitlab :: Git . tag_ref? ( ref )
2014-09-02 03:58:54 -04:00
GitTagPushService . new . execute ( project , @user , oldrev , newrev , ref )
else
GitPushService . new . execute ( project , @user , oldrev , newrev , ref )
end
2014-03-05 16:10:35 -05:00
end
2011-12-12 19:03:26 -05:00
end
2013-04-29 02:43:18 -04:00
2015-03-15 10:42:31 -04:00
def utf8_encode_changes ( changes )
changes = changes . dup
2015-08-10 04:54:42 -04:00
2015-03-15 10:42:31 -04:00
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
2013-04-29 02:43:18 -04:00
def log ( message )
Gitlab :: GitLogger . error ( " POST-RECEIVE: #{ message } " )
end
2011-12-12 19:03:26 -05:00
end