-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
128 lines (108 loc) · 3.44 KB
/
Copy pathindex.js
File metadata and controls
128 lines (108 loc) · 3.44 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
const Queue = require("bull");
const moment = require("moment");
const Redis = require("ioredis");
const fs = require("fs");
const path = require("path");
module.exports = class Queueable {
constructor() {
if (this.constructor === Queueable) {
throw new Error("Abstract class can't be instantiated.");
}
this.checkMethodImplementations();
this.derivedClassName = this.constructor.name;
}
checkMethodImplementations() {
const abstractMethods = ["handler"];
// Check if the required methods are implemented in the derived class
abstractMethods.forEach((method) => {
if (typeof this[method] !== "function") {
throw new Error(
`Method '${method}' must be implemented in derived classes.`
);
}
});
const reservedMethods = ["dispatch", "queueHandler", "queueInstance"];
// Check if the reserved methods are implemented in the derived class
reservedMethods.forEach((method) => {
if (this.constructor.prototype.hasOwnProperty(method)) {
throw new Error(
`Method '${method}' is reserved for Queueable class and cannot be overridden.`
);
}
});
return true;
}
dispatch(...args) {
this.dispatchArgs = args;
this.queueHandler();
}
queueHandler() {
const instance = this.queueInstance();
instance.add(this.dispatchArgs);
instance.process(async (job) => {
try {
this.processStartAt = moment();
console.log(
`\x1b[33m[${this.processStartAt.format("YYYY-MM-DD HH:mm:ss")}] ${
this.derivedClassName
} queue processing... \x1b[0m`
);
const result = await this.handler(...job.data);
return result;
} catch (err) {
console.error(`Error in ${this.derivedClassName}:`, err);
return false;
}
});
instance.on("completed", async (job, result) => {
const processEndAt = moment();
const duration = processEndAt.diff(this.processStartAt);
if (!result) {
console.log(
`\x1b[31m[${processEndAt.format("YYYY-MM-DD HH:mm:ss")}] ${
this.derivedClassName
} queue failed in ${duration} milliseconds\x1b[0m`
);
this.failed(job, result);
} else {
console.log(
`\x1b[32m[${processEndAt.format("YYYY-MM-DD HH:mm:ss")}] ${
this.derivedClassName
} queue processed in ${duration} milliseconds \x1b[0m`
);
this.completed(job, result);
}
// Remove the job from the queue
await job.remove();
// // Clean up the queue
await instance.clean(0, 'completed');
await instance.clean(0, 'failed');
// Close the queue connection and redis connection
await instance.close();
this.redisClient.quit();
});
}
queueInstance() {
const configFilePath = path.resolve(process.cwd(), "queueable.config.js");
let defaultConfig = {
redis: {
host: "127.0.0.1",
port: 6379,
username: "",
password: "",
},
};
if (fs.existsSync(configFilePath)) {
const queueableConfig = require(configFilePath);
defaultConfig = { ...defaultConfig, ...queueableConfig };
}
this.redisClient = new Redis({
...defaultConfig.redis,
maxRetriesPerRequest: null,
enableReadyCheck: false,
});
return new Queue(this.derivedClassName, this.redisClient);
}
completed(job, result) {}
failed(job, result) {}
};