2011-12-12 19:03:26 -05:00
|
|
|
class PostReceive
|
2012-01-03 17:42:14 -05:00
|
|
|
@queue = :post_receive
|
|
|
|
|
2012-07-02 04:44:45 -04:00
|
|
|
def self.perform(reponame, oldrev, newrev, ref, identifier)
|
2011-12-14 11:38:52 -05:00
|
|
|
project = Project.find_by_path(reponame)
|
|
|
|
return false if project.nil?
|
|
|
|
|
2012-02-29 16:04:09 -05:00
|
|
|
# Ignore push from non-gitlab users
|
2012-07-02 04:44:45 -04:00
|
|
|
if /^[A-Z0-9._%a-z\-]+@(?:[A-Z0-9a-z\-]+\.)+[A-Za-z]{2,4}$/.match(identifier)
|
|
|
|
return false unless user = User.find_by_email(identifier)
|
|
|
|
else
|
|
|
|
return false unless user = Key.find_by_identifier(identifier).try(:user)
|
|
|
|
end
|
2012-02-29 16:04:09 -05:00
|
|
|
|
2012-07-02 04:44:45 -04:00
|
|
|
project.trigger_post_receive(oldrev, newrev, ref, user)
|
2011-12-12 19:03:26 -05:00
|
|
|
end
|
|
|
|
end
|