Sha256: 7d3a312d645184ce00f3caa33d04c9ad3de99504ba3b6dbec1423fdb94d33741

Contents?: true

Size: 1.17 KB

Versions: 5

Compression:

Stored size: 1.17 KB

Contents

module Phcmemberspro
  class ApplicationController < ActionController::Base

    # Security Filters
    protect_from_forgery with: :exception

    # Load Helpers
    helper Phctitleseo::Engine.helpers
    helper Phcnotifi::Engine.helpers
    helper Phcaccountspro::Engine.helpers

    # AuthRocket Definitions
    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

    def authrocket_membership_info
      AuthRocket::Membership.all(user_id: current_user.id).first
    end

    # 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

    private

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
phcmemberspro-32.0.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-31.0.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-30.0.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-29.2.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-29.1.0 app/controllers/phcmemberspro/application_controller.rb