forked from morphhyy/ipoResult
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
149 lines (135 loc) · 4.17 KB
/
app.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
import fetch from "node-fetch";
import boidInfo from "./data/data.js";
import colors from "colors";
import promptSync from "prompt-sync";
import { createSpinner } from "nanospinner";
import { config } from "dotenv";
import fs from "fs";
config();
const prompt = promptSync();
const url = "https://iporesult.cdsc.com.np/";
const numbers = {
zero: "0", one: "1", two: "2", three: "3", four: "4",
five: "5", six: "6", seven: "7", eight: "8", nine: "9",
};
const sleep = (ms = 2000) => new Promise((r) => setTimeout(r, ms));
const getData = () => {
return fetch(url + "result/companyShares/fileUploaded")
.then((res) => res.json())
.catch((err) => {
console.error("Error:", err);
process.exit(1);
});
};
const postData = async (userID, v, userCaptcha, captchaIdentifier) => {
try {
const res = await fetch(url + "result/result/check", {
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
companyShareId: userID,
boid: v,
userCaptcha: userCaptcha,
captchaIdentifier: captchaIdentifier,
}),
method: "POST",
});
return await res.json();
} catch (error) {
console.log("Something went wrong!".red.bold.underline);
}
};
const solveCaptcha = async (buffer) => {
try {
let captcha = "";
const data = await fetch(process.env.SPEECH_TO_TEXT_URL + "/v1/recognize", {
method: "POST",
headers: {
"Content-Type": "audio/wav",
Authorization:
"Basic " +
Buffer.from(
`apikey:${process.env.SPEECH_TO_TEXT_IAM_APIKEY}`
).toString("base64"),
},
body: buffer,
});
const res = await data.json();
if(res.error) {
console.log(`\nError: ${res.error}`.red.bold)
process.exit(1);
}
const captchaWord = res.results[0].alternatives[0].transcript.split(" ");
captchaWord.map((d) => {
captcha += numbers[d];
});
return captcha;
} catch (err) {
console.error(`\nError: ${err.message.red}`);
process.exit(1);
}
};
getData()
.then((data) => {
if (data.error) throw "Data Not Found!";
const details = [];
data.body.companyShareList.map((company) => {
details.push({ id: company.id, name: company.name });
});
details.map((a) => console.log(a.id, "=>", a.name));
console.log("");
let userID = null
try {
userID = prompt("Choose: ");
} catch (e) {
userID = "1";
}
const checking = details.filter((a) => a.id == userID)[0];
console.log("Checking Result of".green, `${checking.name}`.cyan.underline, "\n");
const result = async (v, captchaSpinner) => {
let userCaptcha,
audioCaptcha,
captchaIdentifier = null;
while (!/^(\d{5})$/.test(userCaptcha)) {
let data = await getData();
({ audioCaptcha, captchaIdentifier } = data.body.captchaData);
let buffer = Buffer.from(audioCaptcha, "base64");
userCaptcha = await solveCaptcha(buffer);
userCaptcha = userCaptcha.replace(/[^0-9]/g, "");
}
let results = await postData(userID, v, userCaptcha, captchaIdentifier);
if (
results.message &&
results.message !== "Invalid Captcha Provided. Please try again "
) {
captchaSpinner.success({ text: "Completed!" });
return results;
}
};
boidInfo.map(async (user) => {
if (user.boid) {
const captchaSpinner = createSpinner("Solving CAPTCHA...").start();
await sleep();
result(user.boid, captchaSpinner).then((r) =>
typeof r === "undefined"
? console.log(
`${user.name} => Possible Error: Incorrect BOID`.yellow + "\n"
)
: r.success === true
? console.log(
`Congratulations! ${
user.name
}. IPO Alloted. Alloted quantity: ${r.message.split(" ")[6]} `
.bgGreen.black + "\n"
)
: r.success === false &&
console.log(`${user.name} => Sorry not Alloted`.yellow + "\n")
);
}
});
})
.catch((err) => {
console.error(`\nError: ${err.message}`.red);
process.exit(1);
});