joye-backend-utility 7.3.5 → 7.3.6-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,15 @@
1
- import { createClient } from 'redis';
1
+ import { createClient, createCluster } from 'redis';
2
+ /**
3
+ * Standalone or `node-redis` cluster client. Cluster mode uses `createCluster` + `nodeAddressMap` so slot
4
+ * topology (internal IPs from MOVED / CLUSTER SLOTS) maps to the Azure TLS hostname — avoids ioredis
5
+ * MOVED + `natMap` slot-key mismatch that caused “Too many Cluster redirections”.
6
+ */
7
+ export declare type RedisConnection = Awaited<ReturnType<ReturnType<typeof createClient>['connect']>> | ReturnType<typeof createCluster>;
2
8
  declare class RedisClient {
3
9
  private static instance;
4
- static getInstance(): Promise<ReturnType<typeof createClient>>;
10
+ /** Ensures concurrent `getInstance()` share one in-flight connect (avoids duplicate clients / flaky MOVED). */
11
+ private static initPromise;
12
+ private static createConnection;
13
+ static getInstance(): Promise<RedisConnection>;
5
14
  }
6
15
  export { RedisClient };
@@ -2,17 +2,72 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.RedisClient = void 0;
4
4
  const redis_1 = require("redis");
5
+ function trimEnv(value) {
6
+ if (value === undefined)
7
+ return undefined;
8
+ let t = value.trim();
9
+ if ((t.startsWith('"') && t.endsWith('"')) || (t.startsWith("'") && t.endsWith("'"))) {
10
+ t = t.slice(1, -1).trim();
11
+ }
12
+ return t;
13
+ }
14
+ function envBool(value, defaultValue) {
15
+ var _a;
16
+ const v = (_a = trimEnv(value)) === null || _a === void 0 ? void 0 : _a.toLowerCase();
17
+ if (v === undefined || v === '')
18
+ return defaultValue;
19
+ if (v === 'true' || v === '1' || v === 'yes')
20
+ return true;
21
+ if (v === 'false' || v === '0' || v === 'no')
22
+ return false;
23
+ return defaultValue;
24
+ }
25
+ /**
26
+ * Azure Managed Redis (ACL): default user is `default`.
27
+ * Set `REDIS_CACHE_USERNAME=none` (or empty after trim) to omit username for legacy password-only caches.
28
+ */
29
+ function redisUsername() {
30
+ const raw = process.env.REDIS_CACHE_USERNAME;
31
+ if (raw === undefined)
32
+ return 'default';
33
+ const t = trimEnv(raw);
34
+ if (t === '' || t.toLowerCase() === 'none')
35
+ return undefined;
36
+ return t;
37
+ }
38
+ function mapClusterAddressToPublicEndpoint(address, publicHost, fallbackPort) {
39
+ const idx = address.lastIndexOf(':');
40
+ if (idx === -1)
41
+ return { host: publicHost, port: fallbackPort };
42
+ const p = Number.parseInt(address.slice(idx + 1), 10);
43
+ return Number.isNaN(p) ? { host: publicHost, port: fallbackPort } : { host: publicHost, port: p };
44
+ }
5
45
  class RedisClient {
6
- static async getInstance() {
7
- if (!RedisClient.instance) {
8
- const cachePort = process.env.REDIS_CACHE_PORT;
9
- const cacheHostName = process.env.REDIS_CACHE_HOST;
10
- const cachePassword = process.env.REDIS_CACHE_PASSWORD;
11
- RedisClient.instance = await (0, redis_1.createClient)({
12
- // redis for TLS
13
- url: `rediss://${cacheHostName}:${cachePort}`,
14
- password: cachePassword,
15
- })
46
+ static async createConnection() {
47
+ const cachePortRaw = trimEnv(process.env.REDIS_CACHE_PORT);
48
+ const cacheHostName = trimEnv(process.env.REDIS_CACHE_HOST);
49
+ const cachePassword = trimEnv(process.env.REDIS_CACHE_PASSWORD);
50
+ const cachePort = cachePortRaw ? Number.parseInt(cachePortRaw, 10) : Number.NaN;
51
+ const username = redisUsername();
52
+ const useCluster = envBool(process.env.REDIS_CACHE_CLUSTER, false);
53
+ const unifiedClusterEndpoint = useCluster && envBool(process.env.REDIS_CACHE_CLUSTER_UNIFIED_ENDPOINT, true);
54
+ if (!cacheHostName || Number.isNaN(cachePort)) {
55
+ throw new Error('RedisClient: REDIS_CACHE_HOST and a numeric REDIS_CACHE_PORT are required');
56
+ }
57
+ const tlsSocket = {
58
+ tls: true,
59
+ servername: cacheHostName,
60
+ };
61
+ const standaloneSocket = Object.assign({ host: cacheHostName, port: cachePort }, tlsSocket);
62
+ const authOptions = Object.assign(Object.assign({}, (username !== undefined ? { username } : {})), (cachePassword !== undefined ? { password: cachePassword } : {}));
63
+ if (useCluster) {
64
+ console.log('RedisClient: CLUSTER mode (node-redis createCluster), unifiedEndpoint=%s, maxCommandRedirections=64', String(unifiedClusterEndpoint));
65
+ const clusterRoot = Object.assign({ socket: standaloneSocket }, authOptions);
66
+ const cluster = (0, redis_1.createCluster)(Object.assign({ rootNodes: [clusterRoot], defaults: Object.assign(Object.assign({}, authOptions), { socket: tlsSocket }), maxCommandRedirections: 64 }, (unifiedClusterEndpoint
67
+ ? {
68
+ nodeAddressMap: (address) => mapClusterAddressToPublicEndpoint(address, cacheHostName, cachePort),
69
+ }
70
+ : {})))
16
71
  .on('error', err => {
17
72
  console.log('Redis Client Error', err);
18
73
  })
@@ -21,14 +76,42 @@ class RedisClient {
21
76
  })
22
77
  .on('end', () => {
23
78
  console.log('Connection to Redis end');
24
- })
25
- .connect();
79
+ });
80
+ await cluster.connect();
81
+ return cluster;
82
+ }
83
+ console.log('RedisClient: STANDALONE mode (node-redis createClient) — not for OSS cluster endpoints (MOVED).');
84
+ const client = (0, redis_1.createClient)(Object.assign({ socket: standaloneSocket }, authOptions))
85
+ .on('error', err => {
86
+ console.log('Redis Client Error', err);
87
+ })
88
+ .on('connect', () => {
89
+ console.log('Connected to Redis');
90
+ })
91
+ .on('end', () => {
92
+ console.log('Connection to Redis end');
93
+ });
94
+ return await client.connect();
95
+ }
96
+ static async getInstance() {
97
+ if (!RedisClient.instance) {
98
+ if (!RedisClient.initPromise) {
99
+ RedisClient.initPromise = RedisClient.createConnection();
100
+ }
101
+ try {
102
+ RedisClient.instance = await RedisClient.initPromise;
103
+ }
104
+ finally {
105
+ RedisClient.initPromise = null;
106
+ }
26
107
  }
27
108
  if (!RedisClient.instance.isOpen) {
28
- return await RedisClient.instance.connect();
109
+ await RedisClient.instance.connect();
29
110
  }
30
111
  return RedisClient.instance;
31
112
  }
32
113
  }
33
114
  exports.RedisClient = RedisClient;
34
115
  RedisClient.instance = null;
116
+ /** Ensures concurrent `getInstance()` share one in-flight connect (avoids duplicate clients / flaky MOVED). */
117
+ RedisClient.initPromise = null;
@@ -8,6 +8,12 @@ const UserAnalytic = new mongoose_1.Schema({
8
8
  required: true,
9
9
  index: true,
10
10
  },
11
+ /** Denormalized from `User.bucket` for sharded schedulers (e.g. daily-suggestion queue cron). */
12
+ bucket: {
13
+ type: Number,
14
+ required: false,
15
+ index: true,
16
+ },
11
17
  date: {
12
18
  type: String,
13
19
  required: true,
@@ -133,4 +139,5 @@ const UserAnalytic = new mongoose_1.Schema({
133
139
  });
134
140
  UserAnalytic.index({ employeeId: 1, weekNumber: -1, year: -1, date: -1 });
135
141
  UserAnalytic.index({ employeeId: 1, month: -1, year: -1, date: -1 });
142
+ UserAnalytic.index({ year: 1, weekNumber: 1, bucket: 1 });
136
143
  exports.UserAnalyticSchema = UserAnalytic;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joye-backend-utility",
3
- "version": "7.3.5",
3
+ "version": "7.3.6-beta.2",
4
4
  "description": "Joye backend utility for db functions and common functions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",