* Install upstash redis again - base of noficationSender * Setup email handler etc and use tasker * Remove logs * Sending emails and correct format and spacing in emails * Update email styles * Update email styles * add switch to enable feature * fix: reset tasker types - will fix in new PR * WIP: test suite * WIP: test suite * Add redis service and add WIP mock test * Add tests for redis service and fix lpush * More working tests * More working tests * fix: type error + typo * update export to match i18n next mock * (debug) push for debug * Fix: fixed hosting in mocks * Add common.json i18n * add better test descriptions * reset mocks after each test to allow concurancy * Remove redundant RedisService.test.ts * Rename and remove redundant isAdmin check * Rename to .d.ts * Add key versioning to constructRedisKey * Update packages/trpc/server/routers/viewer/slots/handleNotificationWhenNoSlots.ts Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> * Update packages/trpc/server/routers/viewer/slots/handleNotificationWhenNoSlots.ts Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> * Add try/catch * fix breaking when option === undefined * Add missing await to Promise.all * Rename data stored in redis to save space * Include thrown error in logs --------- Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
34 lines
948 B
TypeScript
34 lines
948 B
TypeScript
import { Redis } from "@upstash/redis";
|
|
|
|
import type { IRedisService } from "./IRedisService";
|
|
|
|
export class RedisService implements IRedisService {
|
|
private redis: Redis;
|
|
|
|
constructor() {
|
|
this.redis = Redis.fromEnv();
|
|
}
|
|
|
|
async get<TData>(key: string): Promise<TData | null> {
|
|
return this.redis.get(key);
|
|
}
|
|
|
|
async set<TData>(key: string, value: TData): Promise<"OK" | TData | null> {
|
|
// Implementation for setting value in Redis
|
|
return this.redis.set(key, value);
|
|
}
|
|
|
|
async expire(key: string, seconds: number): Promise<0 | 1> {
|
|
// Implementation for setting expiration time for key in Redis
|
|
return this.redis.expire(key, seconds);
|
|
}
|
|
|
|
async lrange<TResult = string>(key: string, start: number, end: number): Promise<TResult[]> {
|
|
return this.redis.lrange(key, start, end);
|
|
}
|
|
|
|
async lpush<TData>(key: string, ...elements: TData[]): Promise<number> {
|
|
return this.redis.lpush(key, elements);
|
|
}
|
|
}
|