Sha256: e8f63dac3461a74f9389265959ba7028496d53f654f24259cb74f608036c5a2a

Contents?: true

Size: 1.09 KB

Versions: 17

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

17 entries across 17 versions & 1 rubygems

Version Path
phcpresspro-8.0.5 app/controllers/phcpresspro/application_controller.rb
phcpresspro-8.0.4 app/controllers/phcpresspro/application_controller.rb
phcpresspro-8.0.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-8.0.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-8.0.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-8.0.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-7.1.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-7.0.5 app/controllers/phcpresspro/application_controller.rb
phcpresspro-7.0.4 app/controllers/phcpresspro/application_controller.rb
phcpresspro-7.0.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-7.0.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-7.0.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-7.0.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.9.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.9.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.8.5 app/controllers/phcpresspro/application_controller.rb
phcpresspro-6.8.0 app/controllers/phcpresspro/application_controller.rb