forked from siddharthvp/SDZeroBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis.ts
56 lines (49 loc) · 1.84 KB
/
redis.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import * as redis from 'redis';
import * as asyncRedis from "async-redis";
import { onToolforge, readFile } from "./utils";
// Source: https://github.com/moaxaca/async-redis (MIT)
// for some reason the Promisified type that we need isn't exported from there
// so we copy-paste that type definition here
type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
type Omitted = Omit<redis.RedisClient, keyof redis.Commands<boolean>>;
interface Redis<T = redis.RedisClient> extends Omitted, redis.Commands<Promise<boolean>> {}
export const REDIS_HOST = 'tools-redis';
let instance: Redis;
/**
* Should be used directly only when there is a need to customise the options. Otherwise, use
* getRedisClient() which prevents creating multiple connections unnecessarily.
*
* Note: this triggers a network request even though it doesn't take a callback or return a
* promise.
*
* Usage:
* const redis = await createRedisClient({customOptions});
* then
* let item = await redis.get('key');
* await redis.set('key', 'value');
* ...
*/
export function createRedisClient(config: redis.ClientOpts = {}): Redis {
return asyncRedis.createClient(getRedisConfig(config));
}
export function getRedisConfig(config: redis.ClientOpts = {}): redis.ClientOpts {
return {
host: onToolforge() ? REDIS_HOST : '127.0.0.1',
port: onToolforge() ? 6379 : 4713,
// Prefixing per https://wikitech.wikimedia.org/wiki/Help:Toolforge/Redis_for_Toolforge#Security
// A secret prefix string is stored in redis-key-prefix.txt
prefix: readFile(__dirname + '/redis-key-prefix.txt'),
...config
}
}
/**
* For typical usage with the default options.
* Note: this can trigger a network request even though it doesn't take a callback or return a
* promise.
*/
export function getRedisInstance(): Redis {
if (!instance) {
instance = createRedisClient();
}
return instance;
}