Sha256: b824ee0233a6fecbd51b9b4c31b007d2c40ab1088434ed03d9dfacbfc49c2407

Contents?: true

Size: 981 Bytes

Versions: 2

Compression:

Stored size: 981 Bytes

Contents

module Phcpresspro
	class ApplicationController < ActionController::Base

		# Load Helpers for 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

		# Widgets
		def phcpress_recent_posts
			@recent_posts = Articles::Post.all
		end

	end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
phcpresspro-6.5.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.5.2 app/controllers/phcpresspro/application_controller.rb