Sha256: cba19d18f898783a1b6d83e57e843728f387b8f980c68a02f85a7c36ebe9ed2d

Contents?: true

Size: 1.36 KB

Versions: 22

Compression:

Stored size: 1.36 KB

Contents

module Phcmemberspro
  class ApplicationController < ActionController::Base

    # Security Filters
    protect_from_forgery with: :exception

    # Load Helpers for PHCPress Widgets
		before_action :phcpress_recent_posts

    # 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

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

  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
phcmemberspro-25.1.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-25.0.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-24.2.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-24.1.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-24.0.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-23.1.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-23.0.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-22.2.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-22.1.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-22.0.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-21.3.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-21.2.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-21.0.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-20.5.2 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-20.5.1 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-20.5.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-20.4.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-20.3.1 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-20.3.0 app/controllers/phcmemberspro/application_controller.rb
phcmemberspro-20.2.2 app/controllers/phcmemberspro/application_controller.rb