-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseed.js
199 lines (177 loc) · 5.16 KB
/
seed.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
var mongoose = require('mongoose');
var Promise = require('bluebird');
var chalk = require('chalk');
var connectToDb = require('./server/db');
var User = Promise.promisifyAll(mongoose.model('User'));
var Registrant = Promise.promisifyAll(mongoose.model('Registrant'));
var Post = Promise.promisifyAll(mongoose.model('Post'));
var seedUsers = function () {
var users = [
{
email: '[email protected]',
password: 'password',
phone: '+15856629096',
name: 'Alley NYC',
address: '500 7th Ave',
city: 'New York',
zipCode: '10018',
verified: true
},
{
email: '[email protected]',
password: 'password',
phone: '+15856629096',
name: 'Trader Joe\'s',
address: '2073 Broadway',
city: 'New York',
zipCode: '10010',
verified: true
},
{
email: '[email protected]',
password: 'password',
phone: '+15856629096',
name: 'Trader Joe\'s',
address: '675 6th Ave',
city: 'New York',
zipCode: '10023',
verified: true
},
{
email: '[email protected]',
password: 'password',
phone: '+15856629096',
name: 'Panera Bread',
address: '330 5th Ave',
city: 'New York',
zipCode: '10001',
verified: true
},
{
email: '[email protected]',
password: 'password',
phone: '+15856629096',
name: 'Starbucks',
address: '151 W 34th St Fifth Floor',
city: 'New York',
zipCode: '10001',
verified: true
},
{
email: '[email protected]',
password: 'password',
phone: '+15856629096',
name: 'McDonald\'s',
address: '429 7th Ave',
city: 'New York',
zipCode: '10001',
verified: true
}
];
return User.createAsync(users);
};
var seedRegistrants = function () {
var registrants = [
{
phone: '+15856629096',
zipCodes: ['10023']
},
{
phone: '+16503031192',
zipCodes: ['10023']
},
{
phone: '+16027381559',
zipCodes: ['10018']
},
{
phone: '+19148445238',
zipCodes: ['10018']
}
];
return Registrant.createAsync(registrants);
};
var seedPosts = function () {
var posts = [
{
organizationID: null,
organizationName: 'McDonald\'s',
address: '429 7th Ave',
zipCode: '10001',
city: 'New York',
description: 'Free Big Mac burgers near front door!',
pictureUrl: null
},
{
organizationID: null,
organizationName: 'Starbucks',
address: '151 W 34th St Fifth Floor',
zipCode: '10001',
city: 'New York',
description: '20 free cookies in a bag near in lobby!',
pictureUrl: null
},
{
organizationID: null,
organizationName: 'Panera Bread',
address: '330 5th Ave',
zipCode: '10001',
city: 'New York',
description: 'Fresh bread in a paper bag',
pictureUrl: null
},
{
organizationID: null,
organizationName: 'Panera Bread',
address: '330 5th Ave',
zipCode: '10001',
city: 'New York',
description: 'More free bread just left near the emergency exit',
pictureUrl: null
},
{
organizationID: null,
organizationName: 'Trader Joe\'s',
address: '675 6th Ave',
zipCode: '10001',
city: 'New York',
description: '20 free frozen food being handed out near our entrance!',
pictureUrl: null
},
{
organizationID: null,
organizationName: 'Trader Joe\'s',
address: '2073 Broadway',
zipCode: '10010',
city: 'New York',
description: 'Fresh fruit being given away at 2073 Broadway!',
pictureUrl: null
},
];
return Post.createAsync(posts);
};
var seed = function () {
seedUsers().then(function (users) {
console.log(chalk.magenta('Seeded Users!'));
return seedRegistrants();
}).then(function() {
console.log(chalk.magenta('Seeded Registrant!'));
return seedPosts();
}).then(function() {
console.log(chalk.magenta('Seeded Posts!'));
process.kill(0);
}).catch(function (err) {
console.error(err);
process.kill(1);
});
};
var wipeDB = function () {
var models = [User, Registrant, Post];
models.forEach(function (model) {
model.find({}).remove(function () {});
});
return Promise.resolve();
};
connectToDb.then(function () {
wipeDB().then(seed);
});