-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfakeusers.js
executable file
·98 lines (82 loc) · 2.47 KB
/
fakeusers.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
#!/usr/bin/env node
"use strict";
const crypto = require('crypto');
const faker = require('faker');
const formatCSV = "csv";
const formatMongo = "mongo";
const supportedFormats = [formatCSV, formatMongo];
const prologues = {
[formatCSV]: "email,username,firstname,lastname,photourl",
[formatMongo]: "var bulk = db.users.initializeUnorderedBulkOp();"
};
const epilogues = {
[formatMongo]: "bulk.execute();"
};
const gravatarURL = "https://www.gravatar.com/avatar/";
if (process.argv.length < 3) {
console.error("usage:\n\t./fakeusers <number>\n")
process.exit(1)
}
var numUsers = parseInt(process.argv[2], 10)
if (isNaN(numUsers)) {
console.error("'%s' is not a valid integer", process.argv[2])
process.exit(1)
}
var format = formatCSV;
if (process.argv.length >= 4) {
format = process.argv[3]
if (supportedFormats.findIndex(f => f === format) < 0) {
console.error("'%s' is not a supported format: use one of %s", format, supportedFormats.join(", "));
process.exit(1);
}
}
//previously-generated emails and usernames
//since these must be unique, we have to keep
//track of previously-generated ones
var emails = {}
var unames = {}
/**
* genFakeUser generates a new fake user with a unique
* email address and username
*/
function genFakeUser() {
let fn = faker.name.firstName()
let ln = faker.name.lastName()
let e = faker.internet.exampleEmail(fn, ln)
while (emails.hasOwnProperty(e)) {
e = faker.internet.exampleEmail(fn, ln)
}
emails[e] = true
let purl = gravatarURL + crypto.createHash("md5").update(e.trim().toLowerCase()).digest("hex");
let un = faker.internet.userName(fn, ln)
while (unames.hasOwnProperty(un)) {
un = faker.internet.userName(fn, ln)
}
unames[un] = true
return {
email: e,
username: un,
firstname: fn,
lastname: ln,
photourl: purl
};
}
//write prologue (if any)
if (prologues.hasOwnProperty(format)) {
console.log(prologues[format]);
}
for (let i = 0; i < numUsers; i++) {
let user = genFakeUser()
switch (format) {
case formatCSV:
console.log(`"${user.email}","${user.username}","${user.firstname}","${user.lastname}","${user.photourl}"`);
break;
case formatMongo:
console.log(`bulk.insert(${JSON.stringify(user)});`);
break;
}
}
//write eiplogue (if any)
if (epilogues.hasOwnProperty(format)) {
console.log(epilogues[format]);
}