All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javastrava.auth.TokenManager Maven / Gradle / Ivy

The newest version!
package javastrava.auth;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javastrava.auth.model.Token;
import javastrava.auth.ref.AuthorisationScope;
import javastrava.config.Messages;

/**
 * 

* Manages the caching of tokens *

* * @author Dan Shannon * */ public class TokenManager { /** *

* The singleton instance of {@link TokenManager} *

*/ private static TokenManager instance = new TokenManager(); /** * @return Singleton instance of the TokenManager */ public static TokenManager instance() { return instance; } /** * Cached tokens, mapped by username */ private final Map tokens; /** *

* Private constructor allows only for instantiation as a singleton via {@link #instance} *

*/ private TokenManager() { // Initialise as a singleton this.tokens = new HashMap(); } /** *

* Removes all tokens from the cache *

*/ public void clearTokenCache() { for (final Token token : this.tokens.values()) { revokeToken(token); } } /** *

* Retrieve a cached token which has exactly the given set * of scopes *

* * @param username * The username * @param requiredScopes * This list of scopes which must match the scopes of the token * @return The token with the matching list of scopes, or null * if there is no such token */ public Token retrieveTokenWithExactScope(final String username, final AuthorisationScope... requiredScopes) { // Get the token from the cache final Token token = this.tokens.get(username); // If there's no such token, or it has no scopes, then return null if ((token == null) || (token.getScopes() == null)) { return null; } // Check that all the required scopes are in the token for (final AuthorisationScope scope : requiredScopes) { if (!token.getScopes().contains(scope)) { return null; } } // Check that all the scopes in the token are required for (final AuthorisationScope scope : token.getScopes()) { boolean match = false; for (final AuthorisationScope requiredScope : requiredScopes) { if (scope == requiredScope) { match = true; } } if (match == false) { return null; } } // OK we're happy now, so return the token return token; } /** *

* Retrieve a cached token which has exactly the given set * of scopes *

* * @param username The user to look up for a cached token * @param scopes The set of scopes the token must have * @return The matching token from the cache, or null if there is no matching token */ public Token retrieveTokenWithExactScope(final String username, final List scopes) { if (scopes == null) { return retrieveTokenWithExactScope(username, new AuthorisationScope[] {}); } final AuthorisationScope[] array = new AuthorisationScope[scopes.size()]; for (int i = 0; i < scopes.size(); i++) { array[i] = scopes.get(i); } return retrieveTokenWithExactScope(username, array); } /** *

* Retrieve a token which has at least the given set of * scopes. *

* * @param username * The username * @param scopes * The list of scopes which are required to be in the token * @return The token, or null if there is no cached token, or * the cached token doesn't have all the required scopes */ public Token retrieveTokenWithScope(final String username, final AuthorisationScope... scopes) { // Get the token from cache final Token token = this.tokens.get(username); AuthorisationScope[] authScopes = scopes; // If scopes = null if (authScopes == null) { authScopes = new AuthorisationScope[0]; } // If there's no cached token, or it doesn't have any scopes (which // shouldn't happen) then return null if ((token == null) || (token.getScopes() == null)) { return null; } // Check that all the required scopes are in the token for (final AuthorisationScope scope : authScopes) { if (!token.getScopes().contains(scope)) { return null; } } return token; } /** *

* Retrieve a token which has at least the given set of * scopes. *

* * @param username * The username * @param scopes * The list of scopes which are required to be in the token * @return The token, or null if there is no cached token, or * the cached token doesn't have all the required scopes */ public Token retrieveTokenWithScope(final String username, final List scopes) { if (scopes == null) { return retrieveTokenWithScope(username, new AuthorisationScope[] {}); } final AuthorisationScope[] array = new AuthorisationScope[scopes.size()]; for (int i = 0; i < scopes.size(); i++) { array[i] = scopes.get(i); } return retrieveTokenWithExactScope(username, array); } /** *

* Revoke an access token - that is, remove it from the cache of tokens. *

* * @param token The token to be removed from the cache */ public void revokeToken(final Token token) { this.tokens.remove(token.getAthlete().getEmail()); } /** *

* Place a token in the cache *

* * @param token The token to be stored in the cache. * @throws IllegalArgumentException If the token is null, or the athlete contained in it is null or has a null email, or there are no authorisation scopes, then */ public void storeToken(final Token token) { String username = null; if (token == null) { throw new IllegalArgumentException(Messages.string("TokenManager.0")); //$NON-NLS-1$ } if (token.getAthlete() == null) { throw new IllegalArgumentException(Messages.string("TokenManager.1")); //$NON-NLS-1$ } if (token.getAthlete().getEmail() == null) { throw new IllegalArgumentException(Messages.string("TokenManager.2")); //$NON-NLS-1$ } if (token.getScopes() == null) { throw new IllegalArgumentException(Messages.string("TokenManager.3")); //$NON-NLS-1$ } username = token.getAthlete().getEmail(); this.tokens.put(username, token); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy