Skip to content

Commit

Permalink
Add Management API calls for session API endpoints #613 (#616)
Browse files Browse the repository at this point in the history
  • Loading branch information
arpit-jn authored Nov 13, 2024
2 parents 2d58da0 + b254e07 commit 0b7449b
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/auth0/api/v2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
require 'auth0/api/v2/resource_servers'
require 'auth0/api/v2/guardian'
require 'auth0/api/v2/attack_protection'
require 'auth0/api/v2/sessions'

module Auth0
module Api
Expand Down Expand Up @@ -55,6 +56,7 @@ module V2
include Auth0::Api::V2::Tenants
include Auth0::Api::V2::Tickets
include Auth0::Api::V2::AttackProtection
include Auth0::Api::V2::Sessions
end
end
end
43 changes: 43 additions & 0 deletions lib/auth0/api/v2/sessions.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# frozen_string_literal: true

module Auth0
module Api
module V2
# Methods to use the Session endpoints
module Sessions
# Retrieve session information by id
# @see https://auth0.com/docs/api/management/v2/sessions/get-session
# @param id [string] The id of the session to retrieve.
def session(session_id)
raise Auth0::InvalidParameter, 'Must supply a valid session_id' if session_id.to_s.empty?

get "#{sessions_path}/#{session_id}"
end

# Deletes a session by id
# @see https://auth0.com/docs/api/management/v2/sessions/delete-session
# @param id [string] The id of the session to delete.
def delete_session(session_id)
raise Auth0::InvalidParameter, 'Must supply a valid session_id' if session_id.to_s.empty?

delete "#{sessions_path}/#{session_id}"
end

# Revokes a session by ID and all associated refresh tokens
# @see https://auth0.com/docs/api/management/v2/sessions/revoke-session
# @param id [string] The ID of the session to revoke
def revoke_session(session_id)
raise Auth0::InvalidParameter, 'Must supply a valid session_id' if session_id.to_s.empty?

post "#{sessions_path}/#{session_id}/revoke"
end

private

def sessions_path
@sessions_path ||= '/api/v2/sessions'
end
end
end
end
end
71 changes: 71 additions & 0 deletions spec/lib/auth0/api/v2/sessions_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# frozen_string_literal: true

require 'spec_helper'

describe Auth0::Api::V2::Sessions do
before :all do
dummy_instance = DummyClass.new
dummy_instance.extend(Auth0::Api::V2::Sessions)
@instance = dummy_instance
end

context '.session' do
it 'is expected to respond to a session method' do
expect(@instance).to respond_to(:session)
end

it 'is expected to GET a session' do
expect(@instance).to receive(:get).with(
'/api/v2/sessions/SESSION_ID'
)

expect do
@instance.session('SESSION_ID')
end.not_to raise_error
end

it 'is expected to raise an exception when the session ID is empty' do
expect { @instance.session(nil) }.to raise_error('Must supply a valid session_id')
end
end

context '.delete_session' do
it 'is expected to respond to a delete_session method' do
expect(@instance).to respond_to(:delete_session)
end

it 'is expected to DELETE a session' do
expect(@instance).to receive(:delete).with(
'/api/v2/sessions/SESSION_ID'
)

expect do
@instance.delete_session('SESSION_ID')
end.not_to raise_error
end

it 'is expected to raise an exception when the session ID is empty' do
expect { @instance.delete_session(nil) }.to raise_error('Must supply a valid session_id')
end
end

context '.revoke_session' do
it 'is expected to respond to a revoke_session method' do
expect(@instance).to respond_to(:revoke_session)
end

it 'is expected to POST to /api/v2/sessions/{id}/revoke' do
expect(@instance).to receive(:post).with(
'/api/v2/sessions/SESSION_ID/revoke'
)

expect do
@instance.revoke_session('SESSION_ID')
end.not_to raise_error
end

it 'is expected to raise an exception when the session ID is empty' do
expect { @instance.revoke_session(nil) }.to raise_error('Must supply a valid session_id')
end
end
end

0 comments on commit 0b7449b

Please sign in to comment.