import AsyncStorage from '@react-native-async-storage/async-storage'
import { validate } from '../utils/validate'
import AccessTokenItem from './accessTokenItem'
import RefreshTokenItem from './refreshTokenItem'
import BaseTokenItem from './baseTokenItem'
/**
* Token persistent cache
*
* @namespace TokenCache
*
* @param {Object} input - init parameters
* @param {String} input.clientId
* @param {Boolean} input.persistent - if true - the RN `AsyncStorage` is used for persistent caching,
* otherwise only the class instance. (default: true)
*
* @class TokenCache
* @memberof TokenCache
*/
export default class TokenCache {
static _instance
constructor(input = {}) {
// for better testability check params first
const params = validate({
parameters: {
clientId: { required: true },
persistent: { required: false, type: 'boolean' },
}
}, input)
if (TokenCache._instance) {
return TokenCache._instance
}
this.cache = {}
this.clientId = params.clientId
this.persistent = params.persistent != null ? params.persistent : true // by default enabled
TokenCache._instance = this
}
async saveAccessToken(tokenResponse) {
let accessToken = new AccessTokenItem(tokenResponse, this.clientId)
const key = accessToken.tokenKey()
// remove scope intersection
const userTokens = await this.getAllUserTokenKeys(accessToken.userId)
userTokens.forEach((uTokenKey) => {
const scopeFormKey = BaseTokenItem.scopeFromKey(uTokenKey)
if (scopeFormKey && !accessToken.scope.equals(scopeFormKey) &&
accessToken.scope.isIntersects(scopeFormKey)) {
this.removeToken(uTokenKey)
}
})
this.cache[key] = accessToken.toString()
if (this.persistent) {
AsyncStorage.setItem(key, accessToken.toString())
//.catch(err => { return err /* log error?*/ })
}
return accessToken
}
saveRefreshToken(tokenResponse) {
let refreshToken = new RefreshTokenItem(tokenResponse, this.clientId)
const key = refreshToken.tokenKey()
this.cache[key] = refreshToken.toString()
if (this.persistent) {
AsyncStorage.setItem(key, refreshToken.toString())
//.catch(err => { return err /* log error?*/ })
}
return refreshToken
}
removeToken(tokenKey) {
delete this.cache[tokenKey]
if (this.persistent) {
AsyncStorage.removeItem(tokenKey)
//.catch(err => { return err /* log error?*/ })
}
}
async getAccessToken(userId, scope) {
const key = BaseTokenItem.createAccessTokenKey(this.clientId, userId, scope)
if (this.cache[key]) {
return AccessTokenItem.fromJson(this.cache[key])
}
const accessTokenKeyPrefix = BaseTokenItem.createTokenKeyPrefix(this.clientId, userId)
for (const key of Object.getOwnPropertyNames(this.cache)) {
const scopeFormKey = BaseTokenItem.scopeFromKey(key)
if (scopeFormKey && key.startsWith(accessTokenKeyPrefix) && scope.isSubsetOf(scopeFormKey)) {
return AccessTokenItem.fromJson(this.cache[key])
}
}
if (this.persistent) {
let keys = await AsyncStorage.getAllKeys()
for (const key of keys) {
const scopeFormKey = BaseTokenItem.scopeFromKey(key)
if (scopeFormKey && key.startsWith(accessTokenKeyPrefix) && scope.isSubsetOf(scopeFormKey)) {
const token = await AsyncStorage.getItem(key)
this.cache[key] = token
return AccessTokenItem.fromJson(token)
}
}
}
return null
}
async getRefreshToken(userId) {
const key = BaseTokenItem.createRefreshTokenKey(this.clientId, userId)
let refreshToken = null
if (this.cache[key]) {
refreshToken = RefreshTokenItem.fromJson(this.cache[key])
}
if (this.persistent) {
const token = await AsyncStorage.getItem(key)
refreshToken = RefreshTokenItem.fromJson(token)
}
if ((this.cache[key] || this.persistent) && !refreshToken) {
// broken token was saved
this.removeToken(key)
}
return refreshToken
}
/**
* Return all tokens for the client ID the cache initialized with and
* given user ID. If userId omitted - for all users of current client ID
*
*/
async getAllUserTokenKeys(userId){
const tokenKeyPrefix = BaseTokenItem.createTokenKeyPrefix(this.clientId, userId)
console.info('getting tokens')
let tokenKeys = []
if (this.persistent) {
let keys = await AsyncStorage.getAllKeys()
for (const key of keys) {
if (key.startsWith(tokenKeyPrefix)) tokenKeys.push(key)
}
} else {
for (const key of Object.getOwnPropertyNames(this.cache)) {
if (key.startsWith(tokenKeyPrefix)) tokenKeys.push(key)
}
}
return tokenKeys
}
}