-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBard.js
374 lines (288 loc) · 11.1 KB
/
Bard.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
// Provided by @erucix (github)
// Bard v3.0
// Change-logs:
// v3.0:
// - Modified for efficiency
// - Improved to work with latest Bard Version
// - Added support for recent chat history.
// - Added support for recent conversation history.
const https = require("https");
const fs = require("fs");
const constants = {
"filename": {
"dataFileName": "accounts.json"
},
"errors": {
"failedToCreateFile": "Failed to create file to save content."
},
"uri": {
"bardHomePage": "https://bard.google.com",
"chatTitleHistory": "https://bard.google.com/u/1/_/BardChatUi/data/batchexecute",
"chatHistory": "https://bard.google.com/u/1/_/BardChatUi/data/batchexecute?rpcids=hNvQHb",
"chatUri": "https://bard.google.com/u/1/_/BardChatUi/data/assistant.lamda.BardFrontendService/StreamGenerate?bl="
}
}
var cookie = "";
function handleErrorReturn(content) {
let formattedTextObject = {
"status": "fail",
"message": content
};
return formattedTextObject;
}
function handleSuccessReturn(content) {
let formattedTextObject = {
"status": "success",
"message": content
};
return formattedTextObject;
}
function getSavedPreference() {
try {
let savedFileContent =
fs.readFileSync(constants.filename.dataFileName, "utf-8");
savedFileContent = JSON.parse(savedFileContent); // We are storing the content in JSON format
return handleSuccessReturn(savedFileContent);
} catch {
try {
fs.writeFileSync(constants.filename.dataFileName, "{}");
return getSavedPreference();
} catch {
return handleErrorReturn(constants.errors.failedToCreateFile + ": " + constants.filename.dataFileName); // Giving-Up since we can't even write on file.
}
}
}
function addToSavedPreference(propertyName, propertyValue) {
let savedPreference = getSavedPreference();
if (savedPreference.status == "success") {
let newModifiedData = savedPreference.message;
newModifiedData[propertyName] = propertyValue;
try {
fs.writeFileSync(constants.filename.dataFileName, JSON.stringify(newModifiedData))
return handleSuccessReturn(null);
} catch {
return handleErrorReturn(constants.errors.failedToCreateFile + ": " + constants.filename.dataFileName);
}
} else {
return savedPreference;
}
}
function searchInText(textContent, regex) {
let match = textContent.match(regex);
if (match && match.length > 0) {
return handleSuccessReturn(match[1]);
} else {
return handleErrorReturn("Can't find " + regex + " in the provided text content.")
}
}
async function getBardApiTokens() {
let dataFromFile = getSavedPreference();
if (dataFromFile.status == "success") {
dataFromFile = dataFromFile.message;
if (dataFromFile.snlm0e)
return handleSuccessReturn(dataFromFile);
}
return new Promise(function (resolve) {
APICall({
"uri": constants.uri.bardHomePage,
"cookie": cookie,
"accept": "*/*",
"method": "GET",
}).then(data => {
if (data.status == "success") {
data = data.message;
let SNlM0e = searchInText(data, /"SNlM0e":"([^"]*)"/);
let cfb2h = searchInText(data, /"cfb2h":"([^"]*)"/);
if (SNlM0e.status == "fail") {
resolve(SNlM0e);
}
if (cfb2h.status == "fail") {
resolve(cfb2h);
}
SNlM0e.message = "THIS_IS_UNDER_DEVELOPMENT";
addToSavedPreference("snlm0e", SNlM0e.message);
addToSavedPreference("cfb2h", cfb2h.message);
resolve(handleSuccessReturn({
"snlm0e": SNlM0e.message,
"cfb2h": cfb2h.message
}));
} else {
resolve(data);
}
})
});
}
async function APICall(options) {
return new Promise(function (resolve) {
if (options.method == "POST") {
const optionss = {
"headers": {
"accept-language": "en-US,en;q=0.9",
"content-type": "application/x-www-form-urlencoded;",
"cookie": cookie
},
"method": "POST",
}
const request = https.request(options.uri, optionss, (response) => {
let responseText = "";
if (response.statusCode != 200)
resolve(handleErrorReturn("Server returned status code " + response.statusCode));
response.on("data", (chunk) => {
responseText += chunk;
});
response.on("end", () => {
resolve(handleSuccessReturn(responseText));
});
});
request.write(options.body);
request.end();
} else if (options.method == "GET") {
const optionsForRequest = {
"headers": {
"accept": options.accept,
"accept-language": "en-US,en;q=0.9",
"cookie": cookie
},
"method": "GET",
"body": null,
"referrerPolicy": "origin",
}
https.get(options.uri, optionsForRequest, (responseFromServer) => {
let responseContent = "";
if (responseFromServer.statusCode != 200)
resolve(handleErrorReturn("Server responded with status " + responseFromServer.statusCode));
responseFromServer.on("data", (chunk) => {
responseContent += chunk;
});
responseFromServer.on("end", () => {
resolve(handleSuccessReturn(responseContent));
});
})
} else {
resolve(handleErrorReturn(options.method.toUpperCase()) + ": Method not allowed");
}
});
}
async function getBardChatTitleHistory(token) {
let req = [[["MaZiqc", "[13,null,[0]]", null, "generic"]]];
req = encodeURIComponent(JSON.stringify(req));
const at = encodeURIComponent(token.snlm0e);
const postBody = `f.req=${req}&at=${at}&`;
return new Promise((resolve) => {
APICall({
"uri": constants.uri.chatTitleHistory,
"accept": "*/*",
"body": postBody,
"content-type": "application/x-www-form-urlencoded;",
"method": "POST",
"snlm0e": token.snlm0e
}).then(data => {
if (data.status == "fail") resolve(data);
data = data.message;
let arrayWithChatTitle = [];
let jsonBody = data.slice(data.indexOf("[["));
jsonBody = JSON.parse(jsonBody)[0][2];
jsonBody = JSON.parse(jsonBody);
jsonBody = jsonBody[0];
jsonBody.forEach(e => {
arrayWithChatTitle.push({
"id": e[0],
"title": e[1]
});
})
resolve(handleSuccessReturn(arrayWithChatTitle));
})
})
}
async function getChatHistory(c_id, token) {
const req = encodeURIComponent(JSON.stringify([[["hNvQHb", JSON.stringify([c_id, 10]), null, "generic"]]]));
const at = encodeURIComponent(token.snlm0e);
const postBody = `f.req=${req}&at=${at}`
return new Promise((resolve) => {
APICall({
"uri": constants.uri.chatHistory,
"content-type": "application/x-www-form-urlencoded;charset=UTF-8",
"cookie": cookie,
"method": "POST",
"body": postBody
}).then(responseChats => {
if (responseChats.status == "fail")
resolve(responseChats);
responseChats = responseChats.message;
responseChats = responseChats.slice(responseChats.indexOf("wrb.fr") - 3);
responseChats = JSON.parse(responseChats)[0][2];
responseChats = JSON.parse(responseChats)[0];
let newArrayWithChatHistory = [];
responseChats.forEach(element => {
newArrayWithChatHistory.push({
"you": element[2][0][0],
"bard": element[3][0][0][1][0]
});
});
newArrayWithChatHistory.reverse(); // Since the order of chat is last message to first message
resolve(handleSuccessReturn(newArrayWithChatHistory));
});
});
}
async function prompt(data) {
let dataFromFile = getSavedPreference().message;
let c_id = data.c_id || dataFromFile.c_id || "";
let r_id = data.r_id || dataFromFile.r_id || "";
let rc_id = data.rc_id || dataFromFile.rc_id || "";
let req = [null, JSON.stringify([[data.message], ["en"], [c_id, r_id, rc_id]])]
req = encodeURIComponent(JSON.stringify(req));
let at = encodeURIComponent(data.snlm0e);
const postBody = `f.req=${req}&at=${at}`
return new Promise(function (resolve) {
APICall({
"content-type": "application/x-www-form-urlencoded;charset=UTF-8",
"body": postBody,
"method": "POST",
"cookie": cookie,
"uri": data.uri
}).then(data => {
if (data.status == "fail")
resolve(data);
let responseMessage = data.message;
let message = JSON.parse(responseMessage.slice(responseMessage.indexOf("wrb.fr") - 3))[0][2];
message = JSON.parse(message);
let alternativeQuestions = [];
message[2].forEach(elem => {
alternativeQuestions.push(elem[0]);
});
let ids = [message[1][0], message[1][1], message[4][0][0]];
let answer = message[4][0][1][0];
let images = [];
!!(message[4][0][4]) && message[4][0][4].forEach((elem) => {
images.push({
"name": elem[2].replace("[", "").replace("]", ""),
"source": elem[1][1],
"url": elem[1][0][0],
"gstatic_url": elem[1][3]
});
})
addToSavedPreference("c_id", ids[0]);
addToSavedPreference("r_id", ids[1]);
addToSavedPreference("rc_id", ids[2]);
resolve(handleSuccessReturn({
"id": ids,
"answer": answer,
"images": images,
"altQuestions": alternativeQuestions
}));
})
});
}
exports.prompt = async function (tokenObject) {
cookie = tokenObject.cookie;
return new Promise((resolve) => {
getBardApiTokens()
.then(data => {
prompt({
"uri": constants.uri.chatUri + data.message.cfb2h,
"snlm0e": data.message.snlm0e,
"message": tokenObject.message,
}).then(data => resolve(data))
});
})
}