Sha256: cd99eadd31ed2df9bdd92af9cbcae29b240377640b061518fc8b20e975cddfb0

Contents?: true

Size: 1.3 KB

Versions: 10

Compression:

Stored size: 1.3 KB

Contents

module Phcmemberspro
	class ApplicationController < ActionController::Base

		# Load Helpers for PHCPress Widgets
		before_action :phcpress_recent_posts

		# Security Filters
		protect_from_forgery with: :exception

		# Papertrail Whodunnit Username
		def user_for_paper_trail
			# Default is: current_user rescue nil
			current_user ? current_user.username : 'Public user'
		end

		# 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

		# PHCPress Widget Helpers
		def phcpress_recent_posts
			@recent_posts = Articles::Post.all
		end

	end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
phcmemberspro-14.0.3 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-14.0.2 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-14.0.1 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-14.0.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-13.6.6 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-13.6.5 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-13.6.4 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-13.6.3 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-13.6.2 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-13.6.1 app/controllers/phcmemberspro/application_controller.rb