-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.js
393 lines (368 loc) · 10.4 KB
/
index.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
const _ = require('lodash');
const atob = require('atob');
const fs = require('fs');
const inquirer = require('inquirer');
const path = require('path');
const ora = require('ora');
const AuthFetcher = require('./lib/googleAPIWrapper');
const FileHelper = require('./lib/fileHelper');
const { time } = require('console');
let pageCounter = 1;
let messageIds = [];
let gmail;
String.prototype.replaceAll = function (search, replacement) {
var target = this;
return target.split(search).join(replacement);
}
const spinner = ora('Reading 1 page');
AuthFetcher.getAuthAndGmail(main);
/**
* Lists the labels in the user's account.
*
* @param {google.auth.OAuth2} auth An authorized OAuth2 client.
*/
function listLabels(auth, gmail) {
return new Promise((resolve, reject) => {
gmail.users.labels.list({
auth: auth,
userId: 'me',
}, (err, response) => {
if (err) {
console.log('The API returned an error: ' + err);
reject(err);
}
resolve(response);
});
})
}
function main(auth, gmailInstance) {
let labels;
let coredata = {};
let workflow;
gmail = gmailInstance;
if (detectCommandOptions()) {
workflow = scanForLabelOption;
} else {
workflow = defaultBehaviour;
}
workflow(auth, gmail, coredata)
.then((mailList) => {
coredata.mailList = mailList;
return fetchMailsByMailIds(auth, mailList);
})
.then((mails) => {
coredata.attachments = pluckAllAttachments(mails);
return fetchAndSaveAttachments(auth, coredata.attachments);
})
.then(() => {
spinner.stop()
console.log('Done');
})
.catch((e) => console.log(e));
}
const detectCommandOptions = () => process.argv.length > 2;
const defaultBehaviour = (auth, gmail, coredata) => {
return askForFilter()
.then((option) => {
if (option === 'label') {
return listLabels(auth, gmail)
.then((response) => {
labels = response.data.labels;
return labels;
})
.then(askForLabel)
.then((selectedLabel) => {
coredata.label = selectedLabel;
spinner.start()
return getListOfMailIdByLabel(auth, coredata.label.id, 200);
});
} else if (option === 'from') {
return askForMail()
.then((mailId) => {
spinner.start()
return getListOfMailIdByFromId(auth, mailId, 50);
});
} else {
spinner.start()
return getAllMails(auth, 500)
}
});
};
const scanForLabelOption = (auth, gmail) => {
return new Promise((resolve, reject) => {
const paramsNumber = process.argv.length;
if (paramsNumber == 4) {
const optionName = process.argv[2];
if (optionName === '--label') {
resolve(process.argv[3]);
}
}
reject("WARNING: expected --label LABEL_NAME option")
})
.then(labelName => {
return listLabels(auth, gmail)
.then(response => {
const labelObj = _.find(response.data.labels, l => l.name === labelName);
return getListOfMailIdByLabel(auth, labelObj.id, 200);
});
});
};
async function fetchAndSaveAttachments(auth, attachments) {
let results = [];
let promises = [];
let counter = 0;
let processed = 0;
spinner.text = "Fetching attachment from mails"
for (index in attachments) {
if (attachments[index].id) {
promises.push(fetchAndSaveAttachment(auth, attachments[index]));
counter++;
processed++;
if (counter === 100) {
attachs = await Promise.all(promises);
_.merge(results, attachs);
promises = [];
counter = 0;
spinner.text = processed + " attachemets are saved"
}
}
}
attachs = await Promise.all(promises);
_.merge(results, attachs);
return results;
}
function fetchAndSaveAttachment(auth, attachment) {
return new Promise((resolve, reject) => {
gmail.users.messages.attachments.get({
auth: auth,
userId: 'me',
messageId: attachment.mailId,
id: attachment.id
}, function (err, response) {
if (err) {
console.log('The API returned an error: ' + err);
reject(err);
}
if (!response) {
console.log('Empty response: ' + response);
reject(response);
}
var data = response.data.data.replaceAll('-', '+');
data = data.replaceAll('_', '/');
var content = fixBase64(data);
resolve(content);
});
})
.then((content) => {
var fileName = path.resolve(__dirname, 'files', attachment.name);
return FileHelper.isFileExist(fileName)
.then((isExist) => {
if (isExist) {
return FileHelper.getNewFileName(fileName);
}
return fileName;
})
.then((availableFileName) => {
return FileHelper.saveFile(availableFileName, content);
})
})
}
function pluckAllAttachments(mails) {
return _.compact(_.flatten(_.map(mails, (m) => {
if (!m.data || !m.data.payload || !m.data.payload.parts) {
return undefined;
}
if (m.data.payload.mimeType === "multipart/signed") {
return _.flatten(_.map(m.data.payload.parts, (p) => {
if (p.mimeType !== "multipart/mixed") {
return undefined;
}
return _.map(p.parts, (pp) => {
if (!pp.body || !pp.body.attachmentId) {
return undefined;
}
const attachment = {
mailId: m.data.id,
name: pp.filename,
id: pp.body.attachmentId
};
return attachment;
})
}))
} else {
return _.map(m.data.payload.parts, (p) => {
if (!p.body || !p.body.attachmentId) {
return undefined;
}
const attachment = {
mailId: m.data.id,
name: p.filename,
id: p.body.attachmentId
};
return attachment;
})
}
})));
}
function askForLabel(labels) {
return inquirer.prompt([
{
type: 'list',
name: 'label',
message: 'Choose label for filter mails:',
choices: _.map(labels, 'name'),
filter: val => _.find(labels, l => l.name === val)
}
])
.then(answers => answers.label);
}
function askForFilter(labels) {
return inquirer.prompt([
{
type: 'list',
name: 'option',
message: 'How do you like to filter',
choices: ['Using from email Id', 'Using label', "All"],
filter: val => {
if (val === 'Using from email Id') {
return 'from';
} else if (val === 'Using label') {
return 'label';
} else {
return 'all'
}
}
}
])
.then(answers => answers.option);
}
function askForMail() {
return inquirer.prompt([
{
type: 'input',
name: 'from',
message: 'Enter from mailId:'
}
])
.then(answers => answers.from);
}
function getListOfMailIdByLabel(auth, labelId, maxResults = 500, nextPageToken) {
return new Promise((resolve, reject) => {
gmail.users.messages.list({
auth: auth,
userId: 'me',
labelIds: labelId,
maxResults: maxResults,
pageToken: nextPageToken ? nextPageToken : undefined
}, function (err, response) {
if (err) {
console.log('The API returned an error: ' + err);
reject(err);
}
if (response.data) {
messageIds = messageIds.concat(response.data.messages)
if (response.data.nextPageToken) {
spinner.text = "Reading page: " + ++pageCounter
resolve(getListOfMailIdByLabel(auth, labelId, maxResults, response.data.nextPageToken))
}
}
spinner.text = "All pages are read"
resolve(messageIds)
});
});
}
function getAllMails(auth, maxResults = 500, nextPageToken) {
return new Promise((resolve, reject) => {
gmail.users.messages.list({
auth: auth,
userId: 'me',
maxResults: maxResults,
pageToken: nextPageToken ? nextPageToken : undefined
}, function (err, response) {
if (err) {
console.log('The API returned an error: ' + err);
reject(err);
}
if (response.data) {
messageIds = messageIds.concat(response.data.messages)
if (response.data.nextPageToken) {
spinner.text = "Reading page: " + ++pageCounter
resolve(getAllMails(auth, maxResults, response.data.nextPageToken))
}
}
spinner.text = "All pages are read"
resolve(messageIds)
});
});
}
function getListOfMailIdByFromId(auth, mailId, maxResults = 500) {
return new Promise((resolve, reject) => {
gmail.users.messages.list({
auth: auth,
userId: 'me',
q: 'from:' + mailId,
maxResults: maxResults
}, function (err, response) {
if (err) {
console.log('The API returned an error: ' + err);
reject(err);
}
resolve(response.data.messages);
});
});
}
async function fetchMailsByMailIds(auth, mailList) {
let results = [];
let promises = [];
let counter = 0;
let processed = 0;
spinner.text = "Fetching each mail"
for (index in mailList) {
if (mailList[index]) {
promises.push(getMail(auth, mailList[index].id));
counter++;
processed++;
if (counter === 100) {
mails = await Promise.all(promises);
results = results.concat(mails)
promises = [];
counter = 0;
spinner.text = processed + " mails fetched"
await sleep(3000)
}
}
};
mails = await Promise.all(promises);
results = results.concat(mails)
return results;
}
function sleep(ms) {
spinner.text = `sleeping for ${ms/1000} s`
return new Promise(resolve => setTimeout(resolve, ms));
}
function getMail(auth, mailId) {
return new Promise((resolve, reject) => {
gmail.users.messages.get({
userId: 'me',
id: mailId,
auth,
}, (err, response) => {
if (err) {
reject(err);
}
resolve(response);
})
})
}
function fixBase64(binaryData) {
const base64str = binaryData// base64 string from thr response of server
const binary = atob(base64str.replace(/\s/g, ''));// decode base64 string, remove space for IE compatibility
const len = binary.length; // get binary length
const buffer = new ArrayBuffer(len); // create ArrayBuffer with binary length
const view = new Uint8Array(buffer); // create 8-bit Array
// save unicode of binary data into 8-bit Array
for (let i = 0; i < len; i++) {
view[i] = binary.charCodeAt(i);
}
return view;
}