IdentityServer3.Contrib.RedisStore is a persistance layer using Redis DB for operational data of Identity Server 3. Specifically, this store provides implementation for AuthorizationCodeStore, RefreshTokenStore and TokenHandleStore.
You need to install the nuget package
then you can inject the stores in the Identity Server service Factory
like the following:
var factory = new IdentityServerServiceFactory();
...
factory.ConfigureOperationalRedisStoreServices(new ConfigurationOptions { /* ... */ });
Or:
var factory = new IdentityServerServiceFactory();
...
factory.ConfigureOperationalRedisStoreServices("--- redis store connection string goes here ---");
Note: you can add prefix to the keys stored in Redis Store by setting keyPrefix parameter to a value of your own choice on any of ConfigureOperationalRedisStoreServices overloads.
the solution was approached based on how the SQL Store storing the operational data, but the concept of Redis as a NoSQL db is totally different than relational db concepts, all the operational data stores implement the following ITransientDataRepository interface:
public interface ITransientDataRepository<T>
where T : ITokenMetadata
{
Task StoreAsync(string key, T value);
Task<T> GetAsync(string key);
Task RemoveAsync(string key);
Task<IEnumerable<ITokenMetadata>> GetAllAsync(string subject);
Task RevokeAsync(string subject, string client);
}
and the ITokenMetadata defines the following contract:
public interface ITokenMetadata
{
string SubjectId { get; }
string ClientId { get; }
IEnumerable<string> Scopes { get; }
}
with the ITransientDataRepository contract, we notice that the GetAllAsync(subject) and RevokeAsync(subject,client) defines a contract to read based on subject id and revoke all the tokens in the store based on subject and client ids.
this brings trouble to Redis store since redis as a reliable dictionary is not designed for relational queries, so the trick is to store multiple entries for the same token, and can be reached using key, subject and client ids.
so the StoreAsync operation stores the following entries in Redis:
-
Key(TokenType:Key) -> Token: stored as key string value pairs, used to retrieve the Token based on the key, if the token exists or not expired.
-
Key(TokenType:SubjectId) -> Key* : stored in a redis Set, used on the GetAllAsync, to retrieve all the tokens related to a given subject id.
-
Key(TokenType:SubjectId:ClientId) -> Key* : stored in a redis set, used to retrieve all the keys that are related to a subject and client ids, to revoke them while calling RevokeAsync.
for more information on data structures used to store the token please refer to Redis data types documentation
since Redis has a key Expiration feature based on a defined date time or time span, and to not implement a logic similar to SQL store implementation for cleaning up the store periodically from dangling tokens, the store uses the key expiration of Redis while storing based on the following criteria:
-
for Key(TokenType:Key) the expiration is straight forward, it's set on the StringSet Redis operation as defined by identity server on the token object.
-
for Key(TokenType:SubjectId:ClientId) set the expiration also set as the lifetime of the token passed by the identity server, since the Client has unified lifetime for the token defined in the configuration.
-
for Key(TokenType:SubjectId) Set, there is no expiration since the subject id is involved, so on GetAllAsync and RevokeAsync the Store is clearing the expired keys.
feedbacks are always welcomed, please open an issue for any problem or bug found, and the suggestions are also welcomed.