Sha256: b55368147145c8a3ae63000376a8889d43bbec936ab20119034c0d1a2f256c80

Contents?: true

Size: 857 Bytes

Versions: 28

Compression:

Stored size: 857 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

		# Grab Auth Member Information
		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

28 entries across 28 versions & 1 rubygems

Version Path
phcpresspro-5.10.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.9.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.9.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.9.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.8.9 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.8.8 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.8.7 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.8.6 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.8.5 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.8.4 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.8.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.8.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.8.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.8.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.7.7 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.7.6 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.7.5 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.7.4 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.7.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-5.7.2 app/controllers/phcpresspro/application_controller.rb