-
Notifications
You must be signed in to change notification settings - Fork 5
/
wrapper.js
433 lines (404 loc) · 15.1 KB
/
wrapper.js
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
const { default: axios } = require('axios')
const crypto = require('crypto')
const { EventEmitter } = require('events')
const { httpsOverHttp } = require('tunnel')
const fs = require('fs')
const tools = require('./tools')
const { Location } = require('./locationModel')
const em = new EventEmitter()
const secretKey = "b5cab167-7977-4df1-8027-a63aa144f04e"
const AES_KEY = "CoWIN@$#&*(!@%^&"
var requestCount = 0
const proxies = fs.readFileSync('proxies.txt').toString().split('\n')?.filter(line => !!line)?.map(line => ({ host: line.split(':')[0], port: line.split(':')[1] }))
const headers = {
'authority': 'cdn-api.co-vin.in',
'sec-ch-ua': '" Not;A Brand";v="99", "Google Chrome";v="91", "Chromium";v="91"',
'accept': 'application/json, text/plain, */*',
'sec-ch-ua-mobile': '?0',
'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36',
'origin': 'https://selfregistration.cowin.gov.in',
'sec-fetch-site': 'cross-site',
'sec-fetch-mode': 'cors',
'sec-fetch-dest': 'empty',
'referer': 'https://selfregistration.cowin.gov.in/',
'accept-language': 'en-US,en-IN;q=0.9,en;q=0.8',
}
function getRandomAgent() {
if (!proxies.length) {
return null
}
const agent = httpsOverHttp({ proxy: proxies[Math.floor(Math.random() * proxies.length)] })
return agent
}
const sha256 = (data) => {
return crypto.createHash('sha256').update(data).digest('hex')
}
function randomstring(len) {
const lower = 'abcdefghijklmnopqrstuvwxyz'
const upper = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
const digits = '1234567890'
const chars = lower + upper + digits
let result = ''
for (let i=0; i<len; i++) {
result += chars[Math.floor(Math.random() * chars.length)]
}
return result
}
const verifyOtp = async (otp, txnId) => {
try {
const res = await axios({
method: 'POST',
url: 'https://cdn-api.co-vin.in/api/v2/auth/validateMobileOtp',
data: {
otp: sha256(otp),
txnId: txnId
},
headers: {
'authority': 'cdn-api.co-vin.in',
'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="90", "Google Chrome";v="90"',
'accept': 'application/json, text/plain, */*',
'sec-ch-ua-mobile': '?0',
'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',
'content-type': 'application/json',
'origin': 'https://selfregistration.cowin.gov.in',
'sec-fetch-site': 'cross-site',
'sec-fetch-mode': 'cors',
'sec-fetch-dest': 'empty',
'referer': 'https://selfregistration.cowin.gov.in/',
'accept-language': 'en-US,en-IN;q=0.9,en;q=0.8',
},
httpsAgent: getRandomAgent()
})
console.log(res.data)
// this.token = res.data.token
return res.data.token
} catch(err) {
console.log(err)
throw new Error('Invalid otp!')
}
}
function sleep(ms) {
return new Promise((resolve) => {
setTimeout(() => resolve(), ms)
})
}
const _getBeneficiaries = async (token) => {
const res = await axios({
method: 'GET',
url: 'https://cdn-api.co-vin.in/api/v2/appointment/beneficiaries',
headers: {
...headers,
authorization: 'Bearer ' + token
},
httpsAgent: getRandomAgent()
})
console.log(res.data)
return res.data.beneficiaries
}
const getToday = () => {
const dateObj = new Date()
const seperators = [ '-', '/', '=', '+', '&', '$' ]
// choose random seperator
const seperator = seperators[Math.floor(Math.random() * seperators.length)] + String().padStart(Math.floor(Math.random() * seperators.length))
const pad = Math.floor(Math.random() * 100) % 2 === 0 ? 1 : 2
const day = String(dateObj.getDate()).padStart(pad, '0')
const month = String(dateObj.getMonth()+1).padStart(pad, '0')
const yearFull = dateObj.getFullYear().toString()
const year = Math.floor(Math.random() * 100) % 2 === 0 ? yearFull : yearFull.substr(-2)
return [day, month, year].join(seperator)
}
const normalToday = () => {
const dateObj = new Date()
const seperators = ['-', '/']
const seperator = seperators[Math.floor(Math.random() * seperators.length)]
const pad = Math.floor(Math.random() * 100) % 2 === 0 ? 1 : 2
const day = String(dateObj.getDate()).padStart(pad, '0')
const month = String(dateObj.getMonth()+1).padStart(pad, '0')
const yearFull = dateObj.getFullYear().toString()
const year = Math.floor(Math.random() * 100) % 2 === 0 ? yearFull : yearFull.substr(-2)
return [day, month, year].join(seperator)
}
// const proxies = fs.readFileSync('proxies.txt').toString('ascii').split('\n').map(line => ({ host: line.split(':')[0], port: line.split(':')[1] }))
// let currentProxy = proxies[Math.floor(Math.random() * proxies.length)]
class CoWIN {
constructor(mobileNumber) {
if (!mobileNumber) {
throw new Error(`mobileNumber is required!`)
}
this.mobile = mobileNumber
// return await this.sendOtp(mobileNumber)
}
async sendOtp() {
const postData = {
mobile: this.mobile,
secret: "U2FsdGVkX18BUM3xhsRAs3GJT2PpZV1UFSdrdLzmgEKxiTmyTvBCvRjEPJT6w+mL7Tu9EneKydezRLPWDXGFdw=="
}
const res = await axios({
method: 'POST',
url: 'https://cdn-api.co-vin.in/api/v2/auth/generateMobileOTP',
data: postData,
headers
})
console.log(res.data)
this.txnId = res.data.txnId
return this.txnId
}
static async verifyOtpStatic(otp, txnId) {
return verifyOtp(otp, txnId)
}
async verifyOtp(otp, txnId=null) {
this.token = await verifyOtp(otp, txnId || this.txnId)
return this.token
}
async getBeneficiaries() {
return _getBeneficiaries(this.token)
}
static async getBeneficiariesStatic(token) {
return _getBeneficiaries(token)
}
static async getStates() {
if (fs.existsSync('states.json')) {
const localStates = JSON.parse(fs.readFileSync('states.json'))
if (localStates?.length) {
return localStates
}
}
const res = await axios({
method: 'GET',
url: 'https://cdn-api.co-vin.in/api/v2/admin/location/states',
headers,
httpsAgent: getRandomAgent()
})
fs.writeFileSync('states.json', JSON.stringify(res.data.states, null, '\t'))
return res.data.states
}
static async getDistrict(stateId) {
try {
const { districts } = await Location.findOne({ stateId })
if (districts.length) {
return districts
}
} catch (err) {
const res = await axios({
method: 'GET',
url: 'https://cdn-api.co-vin.in/api/v2/admin/location/districts/' + stateId,
headers,
httpAgent: getRandomAgent()
})
await Location.create({
stateId, districts: res.data.districts
})
return res.data.districts
}
}
/**
* @deprecated
*/
static async getCenters(pincode, token, vaccine=null) {
let params = {
pincode,
date: getToday()
}
if (vaccine) {
params.vaccine = vaccine
}
console.log(params)
try {
const agent = httpsOverHttp({ proxy: proxies[requestCount] })
console.log('Request Count:', requestCount)
console.log('Proxy:', proxies[requestCount] || 'Using system\'s IP')
const axiosConfig = {
method: 'GET',
url: 'https://cdn-api.co-vin.in/api/v2/appointment/sessions/public/calendarByPin',
params,
headers,
httpsAgent: agent
}
if (requestCount >= proxies.length) {
delete axiosConfig.httpsAgent
requestCount = 0
}
const res = await axios(axiosConfig)
requestCount++
return res.data.centers
} catch (err) {
console.log(err)
if (err.response.status == 403) {
console.log("Rate limit exceeded! Waiting for 10 minutes...")
await sleep(10* 60 * 1000)
em.emit('rate-limit')
// currentProxy = proxies[Math.floor(Math.random() * proxies.length)]
return
}
const centers = []
requestCount++
return centers
}
}
/**
* returns solved captcha
*/
static async getCaptcha(token, chatId) {
const res = await axios({
method: 'POST',
url: 'https://cdn-api.co-vin.in/api/v2/auth/getRecaptcha',
data: '{}',
headers: {
...headers,
authorization: 'Bearer ' + token
},
httpsAgent: getRandomAgent()
})
const svgCode = res.data.captcha
const result = await tools.solveCaptcha(svgCode, chatId)
return result
}
static async schedule(token, payload, _pre) {
const res = await axios({
method: 'POST',
url: 'https://cdn-api.co-vin.in/api/v2/appointment/' + _pre,
headers: {
...headers,
authorization: 'Bearer ' + token
},
data: payload,
httpsAgent: getRandomAgent()
})
return res.data.appointment_confirmation_no
}
static async getAppointmentSlip(appointmentId, token, chatId) {
const res = await axios({
method: 'GET',
url: 'https://cdn-api.co-vin.in/api/v2/appointment/appointmentslip/download',
headers: {
...headers,
accept: 'application/pdf',
authorization: 'Bearer ' + token
},
params: {
appointment_id: appointmentId
},
responseType: 'arraybuffer',
httpsAgent: getRandomAgent()
})
const outputPath = `./appointments/Appointment-Slip_${chatId}.pdf`
fs.writeFileSync(outputPath, res.data, 'binary')
return outputPath
}
static async getCentersByDist(districtId, token, normalDate=false) {
const params = {
district_id: districtId,
date: normalDate ? normalToday() : getToday(),
}
console.log(params)
try {
if (!token) {
throw new Error('No token direct public request.')
}
if (proxies.length) {
const agent = httpsOverHttp({ proxy: proxies[requestCount] })
console.log('Request Count:', requestCount, 'API: Private')
console.log('Proxy:', proxies[requestCount] || 'Using system\'s IP')
const axiosConfig = {
method: 'GET',
url: 'https://cdn-api.co-vin.in/api/v2/appointment/sessions/calendarByDistrict',
params,
headers: {
...headers,
authorization: 'Bearer ' + token
},
httpsAgent: agent
}
if (requestCount >= proxies.length-1) {
delete axiosConfig.httpsAgent
requestCount = -1
}
const res = await axios(axiosConfig)
requestCount++
return res.data.centers
} else {
const axiosConfig = {
method: 'GET',
url: 'https://cdn-api.co-vin.in/api/v2/appointment/sessions/calendarByDistrict',
params,
headers: {
...headers,
authorization: 'Bearer ' + token
},
}
const res = await axios(axiosConfig)
requestCount++
return res.data.centers
}
} catch (err) {
try {
console.log(err?.response?.data)
if (requestCount < 0) {
requestCount = 0
}
if (proxies.length) {
const agent = httpsOverHttp({ proxy: proxies[requestCount] })
console.log('Request Count:', requestCount, 'API: Public')
console.log('Proxy:', proxies[requestCount] || 'Using system\'s IP')
const axiosConfig = {
method: 'GET',
url: 'https://cdn-api.co-vin.in/api/v2/appointment/sessions/public/calendarByDistrict',
params,
headers,
httpsAgent: agent
}
if (requestCount >= proxies.length-1) {
delete axiosConfig.httpsAgent
requestCount = -1
}
const res = await axios(axiosConfig)
requestCount++
return res.data.centers
} else {
const axiosConfig = {
method: 'GET',
url: 'https://cdn-api.co-vin.in/api/v2/appointment/sessions/public/calendarByDistrict',
params,
headers
}
const res = await axios(axiosConfig)
requestCount++
return res.data.centers
}
} catch (err) {
console.log(err)
if (err.response.status == 504) {
this.getCentersByDist(districtId, null, true)
}
if (err.response.status == 403) {
console.log("Rate limit exceeded! Waiting for 10 minutes...")
await sleep(10* 60 * 1000)
em.emit('rate-limit')
// currentProxy = proxies[Math.floor(Math.random() * proxies.length)]
return
}
const centers = []
requestCount++
return centers
}
}
}
static async downloadCertificate(beneficiary_reference_id, token, chatId) {
const res = await axios({
method: 'GET',
url: 'https://www.cowin.gov.in/api/v2/registration/certificate/download',
params: {
beneficiary_reference_id
},
headers: {
...headers,
authorization: 'Bearer ' + token
},
responseType: 'arraybuffer'
})
const outputPath = `./certificates/Certificate_${chatId}.pdf`
fs.writeFileSync(outputPath, res.data, 'binary')
return outputPath
}
}
module.exports = { CoWIN, em }