2011-12-13 01:03:26 +01:00
|
|
|
class PostReceive
|
2012-01-03 23:42:14 +01:00
|
|
|
@queue = :post_receive
|
|
|
|
|
2012-07-02 10:44:45 +02:00
|
|
|
def self.perform(reponame, oldrev, newrev, ref, identifier)
|
2011-12-14 17:38:52 +01:00
|
|
|
project = Project.find_by_path(reponame)
|
|
|
|
return false if project.nil?
|
|
|
|
|
2012-02-29 22:04:09 +01:00
|
|
|
# Ignore push from non-gitlab users
|
2012-07-02 10:44:45 +02: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 22:04:09 +01:00
|
|
|
|
2012-07-02 10:44:45 +02:00
|
|
|
project.trigger_post_receive(oldrev, newrev, ref, user)
|
2011-12-13 01:03:26 +01:00
|
|
|
end
|
|
|
|
end
|