Sha256: ccf344397209cf52de74617387672873f32e264ab0b0eff1920816bff3fa82a7

Contents?: true

Size: 1017 Bytes

Versions: 28

Compression:

Stored size: 1017 Bytes

Contents

module Phcmemberspro
	class ApplicationController < ActionController::Base

		# Security Filters
		before_action :require_user
		protect_from_forgery with: :exception

		# Grab Member Information
		def get_member_profile_info  
			@members_profile_info = Member::Profile.find(params[:profile_id])
		end

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

		#Authentication
		def require_user
			unless current_user
				session[:last_url] = request.get? ? url_for(params.dup.permit!.except(:domain, :host, :port, :protocol, :subdomain)) : 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 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
phcmemberspro-11.8.1 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-11.8.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-11.7.5 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-11.7.1 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-11.7.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-11.6.3 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-11.6.2 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-11.6.1 app/controllers/phcmemberspro/application_controller.rb