2020-04-22 15:52:17 +02:00
|
|
|
import ApplicationComponent from "../ApplicationComponent";
|
2020-07-11 11:46:16 +02:00
|
|
|
import {Express} from "express";
|
2020-04-22 15:52:17 +02:00
|
|
|
import redis, {RedisClient} from "redis";
|
|
|
|
import config from "config";
|
|
|
|
import Logger from "../Logger";
|
|
|
|
import session, {Store} from "express-session";
|
|
|
|
import connect_redis from "connect-redis";
|
2020-07-19 11:57:47 +02:00
|
|
|
import CacheProvider from "../CacheProvider";
|
2020-04-22 15:52:17 +02:00
|
|
|
|
|
|
|
const RedisStore = connect_redis(session);
|
|
|
|
|
2020-09-25 22:03:22 +02:00
|
|
|
export default class RedisComponent extends ApplicationComponent implements CacheProvider {
|
2020-04-22 15:52:17 +02:00
|
|
|
private redisClient?: RedisClient;
|
|
|
|
private store?: Store;
|
|
|
|
|
2020-07-11 11:46:16 +02:00
|
|
|
public async start(app: Express): Promise<void> {
|
2020-04-25 18:31:54 +02:00
|
|
|
this.redisClient = redis.createClient(config.get('redis.port'), config.get('redis.host'), {
|
|
|
|
password: config.has('redis.password') ? config.get<string>('redis.password') : undefined,
|
|
|
|
});
|
2020-04-22 15:52:17 +02:00
|
|
|
this.redisClient.on('error', (err: any) => {
|
|
|
|
Logger.error(err, 'An error occurred with redis.');
|
|
|
|
});
|
|
|
|
this.store = new RedisStore({
|
|
|
|
client: this.redisClient,
|
2020-04-25 09:32:59 +02:00
|
|
|
prefix: config.get<string>('redis.prefix') + '-session:',
|
2020-04-22 15:52:17 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async stop(): Promise<void> {
|
|
|
|
if (this.redisClient) {
|
|
|
|
await this.close('Redis connection', this.redisClient, this.redisClient.quit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public getStore(): Store {
|
|
|
|
if (!this.store) throw `Redis store was not initialized.`;
|
|
|
|
return this.store;
|
|
|
|
}
|
|
|
|
|
|
|
|
public canServe(): boolean {
|
|
|
|
return this.redisClient !== undefined && this.redisClient.connected;
|
|
|
|
}
|
2020-07-19 11:57:47 +02:00
|
|
|
|
|
|
|
public async get(key: string, defaultValue?: string): Promise<string | null> {
|
|
|
|
return new Promise<string | null>((resolve, reject) => {
|
|
|
|
if (!this.redisClient) {
|
|
|
|
reject(`Redis store was not initialized.`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.redisClient.get(key, (err, val) => {
|
|
|
|
if (err) {
|
|
|
|
reject(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
resolve(val !== null ? val : (defaultValue !== undefined ? defaultValue : null));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async has(key: string): Promise<boolean> {
|
|
|
|
return await this.get(key) !== null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async forget(key: string): Promise<void> {
|
|
|
|
return new Promise<void>((resolve, reject) => {
|
|
|
|
if (!this.redisClient) {
|
|
|
|
reject(`Redis store was not initialized.`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.redisClient.del(key, (err) => {
|
|
|
|
if (err) {
|
|
|
|
reject(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async remember(key: string, value: string, ttl: number): Promise<void> {
|
|
|
|
return new Promise<void>((resolve, reject) => {
|
|
|
|
if (!this.redisClient) {
|
|
|
|
reject(`Redis store was not initialized.`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.redisClient.psetex(key, ttl, value, (err) => {
|
|
|
|
if (err) {
|
|
|
|
reject(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2020-04-22 15:52:17 +02:00
|
|
|
}
|