mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
68 lines
1.8 KiB
TypeScript
68 lines
1.8 KiB
TypeScript
|
import {
|
||
|
IApiToken,
|
||
|
IApiTokenCreate,
|
||
|
IApiTokenStore,
|
||
|
} from '../../lib/types/stores/api-token-store';
|
||
|
import NotFoundError from '../../lib/error/notfound-error';
|
||
|
|
||
|
export default class FakeApiTokenStore implements IApiTokenStore {
|
||
|
tokens: IApiToken[];
|
||
|
|
||
|
async delete(key: string): Promise<void> {
|
||
|
this.tokens.splice(
|
||
|
this.tokens.findIndex((t) => t.secret === key),
|
||
|
1,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
async deleteAll(): Promise<void> {
|
||
|
this.tokens = [];
|
||
|
}
|
||
|
|
||
|
destroy(): void {}
|
||
|
|
||
|
async exists(key: string): Promise<boolean> {
|
||
|
return this.tokens.some((token) => token.secret === key);
|
||
|
}
|
||
|
|
||
|
async get(key: string): Promise<IApiToken> {
|
||
|
const token = this.tokens.find((t) => t.secret === key);
|
||
|
if (token) {
|
||
|
return token;
|
||
|
}
|
||
|
throw new NotFoundError(`Could not find token with secret ${key}`);
|
||
|
}
|
||
|
|
||
|
async getAll(): Promise<IApiToken[]> {
|
||
|
return this.tokens;
|
||
|
}
|
||
|
|
||
|
async getAllActive(): Promise<IApiToken[]> {
|
||
|
return this.tokens.filter((token) => token.expiresAt > new Date());
|
||
|
}
|
||
|
|
||
|
async insert(newToken: IApiTokenCreate): Promise<IApiToken> {
|
||
|
const apiToken = {
|
||
|
createdAt: new Date(),
|
||
|
...newToken,
|
||
|
};
|
||
|
this.tokens.push(apiToken);
|
||
|
return apiToken;
|
||
|
}
|
||
|
|
||
|
async markSeenAt(secrets: string[]): Promise<void> {
|
||
|
this.tokens
|
||
|
.filter((t) => secrets.includes(t.secret))
|
||
|
.forEach((t) => {
|
||
|
// eslint-disable-next-line no-param-reassign
|
||
|
t.seenAt = new Date();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async setExpiry(secret: string, expiresAt: Date): Promise<IApiToken> {
|
||
|
const t = await this.get(secret);
|
||
|
t.expiresAt = expiresAt;
|
||
|
return t;
|
||
|
}
|
||
|
}
|