mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
GUACAMOLE-1744: Provide REST API mechanism for testing session validity.
NOTE: This test must not have the effect of resetting a session's last accessed time, or periodic validity tests will erroneously act as session keep-alives.
This commit is contained in:
@@ -261,6 +261,43 @@ angular.module('auth').factory('authenticationService', ['$injector',
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Determines whether the session associated with a particular token is
|
||||
* still valid, without performing an operation that would result in that
|
||||
* session being marked as active. If no token is provided, the session of
|
||||
* the current user is checked.
|
||||
*
|
||||
* @param {string} [token]
|
||||
* The authentication token to pass with the "Guacamole-Token" header.
|
||||
* If omitted, and the user is logged in, the user's current
|
||||
* authentication token will be used.
|
||||
*
|
||||
* @returns {Promise.<!boolean>}
|
||||
* A promise that resolves with the boolean value "true" if the session
|
||||
* is valid, and resolves with the boolean value "false" otherwise,
|
||||
* including if an error prevents session validity from being
|
||||
* determined. The promise is never rejected.
|
||||
*/
|
||||
service.getValidity = function getValidity(token) {
|
||||
|
||||
// NOTE: Because this is a HEAD request, we will not receive a JSON
|
||||
// response body. We will only have a simple yes/no regarding whether
|
||||
// the auth token can be expected to be usable.
|
||||
return service.request({
|
||||
method: 'HEAD',
|
||||
url: 'api/session'
|
||||
}, token)
|
||||
|
||||
.then(function sessionIsValid() {
|
||||
return true;
|
||||
})
|
||||
|
||||
['catch'](function sessionIsNotValid() {
|
||||
return false;
|
||||
});
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Makes a request to revoke an authentication token using the token REST
|
||||
* API endpoint, returning a promise that succeeds only if the token was
|
||||
|
@@ -99,36 +99,42 @@ public class GuacamoleSession {
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the authenticated user associated with this session.
|
||||
* Returns the authenticated user associated with this session. Invoking
|
||||
* this function automatically updates this session's last access time.
|
||||
*
|
||||
* @return
|
||||
* The authenticated user associated with this session.
|
||||
*/
|
||||
public AuthenticatedUser getAuthenticatedUser() {
|
||||
this.access();
|
||||
return authenticatedUser;
|
||||
}
|
||||
|
||||
/**
|
||||
* Replaces the authenticated user associated with this session with the
|
||||
* given authenticated user.
|
||||
* given authenticated user. Invoking this function automatically updates
|
||||
* this session's last access time.
|
||||
*
|
||||
* @param authenticatedUser
|
||||
* The authenticated user to associated with this session.
|
||||
*/
|
||||
public void setAuthenticatedUser(AuthenticatedUser authenticatedUser) {
|
||||
this.access();
|
||||
this.authenticatedUser = authenticatedUser;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a list of all UserContexts associated with this session. Each
|
||||
* AuthenticationProvider currently loaded by Guacamole may provide its own
|
||||
* UserContext for any successfully-authenticated user.
|
||||
* UserContext for any successfully-authenticated user. Invoking this
|
||||
* function automatically updates this session's last access time.
|
||||
*
|
||||
* @return
|
||||
* An unmodifiable list of all UserContexts associated with this
|
||||
* session.
|
||||
*/
|
||||
public List<DecoratedUserContext> getUserContexts() {
|
||||
this.access();
|
||||
return Collections.unmodifiableList(userContexts);
|
||||
}
|
||||
|
||||
@@ -136,6 +142,8 @@ public class GuacamoleSession {
|
||||
* Returns true if all user contexts associated with this session are
|
||||
* valid, or false if any user context is not valid. If a session is not
|
||||
* valid, it may no longer be used, and invalidate() should be invoked.
|
||||
* Invoking this function does not affect the last access time of this
|
||||
* session.
|
||||
*
|
||||
* @return
|
||||
* true if all user contexts associated with this session are
|
||||
@@ -151,7 +159,8 @@ public class GuacamoleSession {
|
||||
/**
|
||||
* Returns the UserContext associated with this session that originated
|
||||
* from the AuthenticationProvider with the given identifier. If no such
|
||||
* UserContext exists, an exception is thrown.
|
||||
* UserContext exists, an exception is thrown. Invoking this function
|
||||
* automatically updates this session's last access time.
|
||||
*
|
||||
* @param authProviderIdentifier
|
||||
* The unique identifier of the AuthenticationProvider that created the
|
||||
@@ -188,20 +197,24 @@ public class GuacamoleSession {
|
||||
|
||||
/**
|
||||
* Replaces all UserContexts associated with this session with the given
|
||||
* List of UserContexts.
|
||||
* List of UserContexts. Invoking this function automatically updates this
|
||||
* session's last access time.
|
||||
*
|
||||
* @param userContexts
|
||||
* The List of UserContexts to associate with this session.
|
||||
*/
|
||||
public void setUserContexts(List<DecoratedUserContext> userContexts) {
|
||||
this.access();
|
||||
this.userContexts = userContexts;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether this session has any associated active tunnels.
|
||||
* Returns whether this session has any associated active tunnels. Invoking
|
||||
* this function does not affect the last access time of this session.
|
||||
*
|
||||
* @return true if this session has any associated active tunnels,
|
||||
* false otherwise.
|
||||
* @return
|
||||
* true if this session has any associated active tunnels, false
|
||||
* otherwise.
|
||||
*/
|
||||
public boolean hasTunnels() {
|
||||
return !tunnels.isEmpty();
|
||||
@@ -214,10 +227,14 @@ public class GuacamoleSession {
|
||||
* session. A tunnel need not be present here to be used by the user
|
||||
* associated with this session, but tunnels not in this set will not
|
||||
* be taken into account when determining whether a session is in use.
|
||||
* Invoking this function automatically updates this session's last access
|
||||
* time.
|
||||
*
|
||||
* @return A map of all active tunnels associated with this session.
|
||||
* @return
|
||||
* A map of all active tunnels associated with this session.
|
||||
*/
|
||||
public Map<String, UserTunnel> getTunnels() {
|
||||
this.access();
|
||||
return tunnels;
|
||||
}
|
||||
|
||||
@@ -228,16 +245,23 @@ public class GuacamoleSession {
|
||||
* @param tunnel The tunnel to associate with this session.
|
||||
*/
|
||||
public void addTunnel(UserTunnel tunnel) {
|
||||
this.access();
|
||||
tunnels.put(tunnel.getUUID().toString(), tunnel);
|
||||
}
|
||||
|
||||
/**
|
||||
* Disassociates the tunnel having the given UUID from this session.
|
||||
* Invoking this function automatically updates this session's last access
|
||||
* time.
|
||||
*
|
||||
* @param uuid The UUID of the tunnel to disassociate from this session.
|
||||
* @return true if the tunnel existed and was removed, false otherwise.
|
||||
* @param uuid
|
||||
* The UUID of the tunnel to disassociate from this session.
|
||||
*
|
||||
* @return
|
||||
* true if the tunnel existed and was removed, false otherwise.
|
||||
*/
|
||||
public boolean removeTunnel(String uuid) {
|
||||
this.access();
|
||||
return tunnels.remove(uuid) != null;
|
||||
}
|
||||
|
||||
@@ -251,7 +275,8 @@ public class GuacamoleSession {
|
||||
/**
|
||||
* Returns the time this session was last accessed, as the number of
|
||||
* milliseconds since midnight January 1, 1970 GMT. Session access must
|
||||
* be explicitly marked through calls to the access() function.
|
||||
* be explicitly marked through calls to the access() function. Invoking
|
||||
* this function does not affect the last access time of this session.
|
||||
*
|
||||
* @return The time this session was last accessed.
|
||||
*/
|
||||
|
@@ -208,12 +208,12 @@ public class HashTokenSessionMap implements TokenSessionMap {
|
||||
if (authToken == null)
|
||||
return null;
|
||||
|
||||
// Update the last access time and return the GuacamoleSession
|
||||
GuacamoleSession session = sessionMap.get(authToken);
|
||||
if (session != null)
|
||||
session.access();
|
||||
|
||||
return session;
|
||||
// Return the GuacamoleSession having the given auth token (NOTE: We
|
||||
// do not update the access time here, as it is necessary to be able
|
||||
// to retrieve and check the session without causing that session to
|
||||
// be marked as active. Instead, those updates occur as needed when
|
||||
// functions within the GuacamoleSession are invoked.)
|
||||
return sessionMap.get(authToken);
|
||||
|
||||
}
|
||||
|
||||
|
@@ -24,6 +24,7 @@ import com.google.inject.assistedinject.AssistedInject;
|
||||
import javax.inject.Inject;
|
||||
import javax.ws.rs.Consumes;
|
||||
import javax.ws.rs.DELETE;
|
||||
import javax.ws.rs.HEAD;
|
||||
import javax.ws.rs.Path;
|
||||
import javax.ws.rs.PathParam;
|
||||
import javax.ws.rs.Produces;
|
||||
@@ -184,4 +185,15 @@ public class SessionResource {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests whether this session resource represented a valid session at the
|
||||
* time it was created. This function always succeeds. It is possible for
|
||||
* an HTTP request aimed at this operation to fail, but that failure occurs
|
||||
* further up the chain when locating the session.
|
||||
*/
|
||||
@HEAD
|
||||
public void checkValidity() {
|
||||
// Do nothing
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user