Sha256: d35ff43f64f8552236d9da2b49e4826148f5d7bf21c55ec8231fc5eb7400061b

Contents?: true

Size: 1006 Bytes

Versions: 15

Compression:

Stored size: 1006 Bytes

Contents

module Phcpresspro
	class ApplicationController < ActionController::Base

		# Load Helpers for PHCPress Widgets
		before_action :phcpress_recent_posts

		# Security Filters
		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

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

	end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
phcpresspro-6.7.7 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.7.6 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.7.5 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.7.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.7.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.6.9 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.6.8 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.6.7 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.6.6 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.6.5 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.6.4 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.6.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.6.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.6.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.6.0 app/controllers/phcpresspro/application_controller.rb