Sha256: 7b9183b0fda2d53e41d05e0a10681b22c95fb066e67870c4f66340e6276e56c3

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

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

7 entries across 7 versions & 1 rubygems

Version Path
phcpresspro-10.0.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-9.1.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-9.1.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-9.1.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-9.1.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-9.0.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-8.0.6 app/controllers/phcpresspro/application_controller.rb