Sha256: 9a913ead6949e06cc11eed8f29d2a068d840ff2732346fa913a022e6e422bb29

Contents?: true

Size: 784 Bytes

Versions: 11

Compression:

Stored size: 784 Bytes

Contents

module Phcpresspro
	class ApplicationController < ActionController::Base

		# Prevent CSRF attacks by raising an exception.
		before_filter :require_user
		protect_from_forgery with: :exception

		# AuthRocket User Helpers
		def require_user
			unless current_user
				url_params = params
				url_params.permit!
				session[:last_url] = request.get? ? url_for(url_params) : url_for
				redirect_to new_login_url
			end
		end
	
		def current_user
			@_current_user ||= AuthRocket::Session.from_token(session[:ar_token]).try(:user)
		end
		helper_method :current_user
	
		def new_login_url
		ENV['AUTHROCKET_LOGIN_URL']
			# $ar_login_url
		end
		helper_method :new_login_url

		# Load PHCEngine Helpers
		helper Phctitleseo::Engine.helpers
		helper Phcnotifi::Engine.helpers

	end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
phcpresspro-4.4.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.3.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.3.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.3.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.2.12 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.2.11 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.2.10 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.2.9 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.2.8 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.2.7 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.2.6 app/controllers/phcpresspro/application_controller.rb