-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueueable.ts
220 lines (169 loc) · 3.92 KB
/
Queueable.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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
// @ts-nocheck
import { ms } from '@formidablejs/framework/lib/Support/Helpers'
import { delayAndRetry } from './Utils/Sync'
import { config } from "@formidablejs/framework"
import { queue } from "./Queue"
import { Job } from 'bee-queue'
import { connection } from './Utils/connection'
import type { Connection } from '../types/Common/Connection'
export class Queueable {
/**
* Delay value.
*/
private _delay: number
/**
* Job ID.
*/
_id: number | string
/**
* Set job id.
*/
_setJobId(id: number | string): void {
this._id = id
}
/**
* Set job delay value.
*/
_setDelay(delay: number): void {
this._delay = delay
}
/**
* Job id.
*/
get id(): number | string {
return this._id
}
/**
* Handle job.
*/
handle(...args): any {
}
/**
* Get job name.
*/
static _jobName(): string {
return this.name
}
/**
* Get queue connection.
*/
private get _connection(): Connection {
if (!this.queue) {
return config(`queue.connections.${config('queue.default')}`)
}
return connection(this.queue)
}
/**
* Get queue name.
*/
get queueName(): string {
if (this.queue && typeof this.queue === 'string') {
return this.queue
}
const defaultConnection = config('queue.default')
const connection = config(`queue.connections.${defaultConnection}`)
return connection.queue
}
/**
* Get queue driver.
*/
get queueDriver(): string {
if (this.queue && typeof this.queue === 'string') {
return this._connection.driver ?? 'redis'
}
const defaultConnection = config('queue.default')
const connection = config(`queue.connections.${defaultConnection}`)
return connection.driver ?? 'redis'
}
/**
* Get queue timeout.
*/
get queueTimeout(): number {
if (this.queue && typeof this.queue === 'string') {
return this._connection.timeout ?? 3000
}
const defaultConnection = config('queue.default')
const connection = config(`queue.connections.${defaultConnection}`)
return connection.timeout ?? 3000
}
/**
* Get queue retries.
*/
get queueRetries(): number {
if (this.queue && typeof this.queue === 'string') {
return this._connection.retries ?? 0
}
const defaultConnection = config('queue.default')
const connection = config(`queue.connections.${defaultConnection}`)
return connection.retries ?? 0
}
/**
* Initiate new job.
*/
_initiateJob(...args): Job<any> {
return queue(this.queueName).createJob({
name: this.constructor._jobName(),
payload: args
})
}
/**
* Delay job.
*/
static delay(delay: string): Queueable {
const job = new this
job._setDelay(
job.queueDriver == 'sync'
? ms(delay)
: Date.now() + ms(delay)
)
return job
}
/**
* Connection
*/
get connection(): object {
const connections = config('queue.connections')
let current = {}
for (const key of Object.keys(connections)) {
if (connections[key].queue == this.queueName) {
current = connections[key]
break;
}
}
return current
}
/**
* Dispatch job.
*/
static async dispatch<T = unknown>(...args): Promise<Job<any> | T> {
const job = new this
return await job.dispatch.apply(job, args)
}
/**
* Dispatch job.
*/
async dispatch<T = unknown>(...args): Promise<Job<any> | T> {
let _referredId = null
if (args.length > 0 && args[0]._referredId) {
_referredId = args[0]._referredId
args.shift()
}
const timeout = this.timeout ? this.timeout : (this.queueTimeout ? this.queueTimeout : 3000)
const retries = this.retries ? this.retries : this.queueRetries
const driver = this.queueDriver
if (driver === 'sync') {
return delayAndRetry(async () => this.handle.apply(this, args), retries, this._delay, timeout)
}
const job = this._initiateJob(...args)
job.timeout(isNaN(timeout) ? ms(timeout) : timeout)
job.retries(retries)
if (this._delay) {
job.delayUntil(this._delay)
this._delay = null
}
if (_referredId) {
job.setId(_referredId)
}
return await job.save()
}
}