Sha256: 3a4d090123a5a75df61dec9154f1357c15e9a10178bdef0a7b46960311db7985

Contents?: true

Size: 1.36 KB

Versions: 2

Compression:

Stored size: 1.36 KB

Contents

# frozen_string_literal: true

module Osso
  module Helpers
    module Auth
      attr_accessor :current_scope
      
      def enterprise_protected!(domain = nil)
        return if admin_authorized?
        return if enterprise_authorized?(domain)

        redirect ENV['JWT_URL']
      end

      def enterprise_authorized?(domain)
        payload, _args = JWT.decode(
          token,
          ENV['JWT_HMAC_SECRET'],
          true,
          { algorithm: 'HS256' },
        )

        @current_scope = payload['scope']

        true
      rescue JWT::DecodeError
        false
      end

      def admin_protected!
        return if admin_authorized?

        redirect ENV['JWT_URL']
      end

      def admin_authorized?
        payload, _args = JWT.decode(
          token,
          ENV['JWT_HMAC_SECRET'],
          true,
          { algorithm: 'HS256' },
        )

        if payload['scope'] == 'admin'
          @current_scope = :admin
          return true
        end

        false
      rescue JWT::DecodeError
        false
      end

      def token
        request.env['admin_token'] || session['admin_token'] || request['admin_token']
      end

      def chomp_token
        return unless request['admin_token'].present?

        session['admin_token'] = request['admin_token']

        return if request.post?

        redirect request.path
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
osso-0.0.3.4 lib/osso/helpers/auth.rb
osso-0.0.3.2 lib/osso/helpers/auth.rb