rosa-build/app/controllers/application_controller.rb

31 lines
769 B
Ruby

# coding: UTF-8
class ApplicationController < ActionController::Base
protect_from_forgery
layout :layout_by_resource
before_filter lambda { EventLog.current_controller = self }, :only => [:create, :destroy, :open_id] # :update
after_filter lambda { EventLog.current_controller = nil }
protected
def layout_by_resource
if devise_controller?
"sessions"
else
"application"
end
end
def authenticate_build_service!
if request.remote_ip != APP_CONFIG['build_service_ip']
render :nothing => true, :status => 403
end
end
def authenticate_product_builder!
if request.remote_ip != APP_CONFIG['product_builder_ip']
render :nothing => true, :status => 403
end
end
end