Sha256: 949a8bae1179db7c7c67f44165e44a53290bdc914e8f89f89c7270757f6b5d80

Contents?: true

Size: 824 Bytes

Versions: 33

Compression:

Stored size: 824 Bytes

Contents

module Phcpresspro
	class ApplicationController < ActionController::Base

		# Security Filters
		before_action :require_user
		protect_from_forgery with: :exception

		# AuthRocket User Helpers
		def require_user
			unless current_user
				params.permit!
				session[:last_url] = request.get? ? url_for(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']
		end
		helper_method :new_login_url

		def membership_info
			AuthRocket::Membership.all(user_id: current_user.id).first
		end

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

	end
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
phcpresspro-5.5.4 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.5.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.5.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.5.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.5.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.4.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.4.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.4.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.3.4 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.3.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.3.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.3.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.3.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.2.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.2.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.2.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.1.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.1.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.1.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.0.3 app/controllers/phcpresspro/application_controller.rb