forked from TopHatHR/sit-n-paws
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathserver.js
477 lines (442 loc) · 12.8 KB
/
server.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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
const express = require('express');
const MongoClient = require('mongodb').MongoClient;
const bodyParser = require('body-parser');
const mongoose = require('mongoose');
const User = require('./db/models/users');
const Listing = require('./db/models/listing');
const Booking = require('./db/models/booking');
const jwt = require('jsonwebtoken');
const seedListingDB = require('./seed');
const cloudinary = require('cloudinary');
const cloudConfig = require('./cloudinary/config.js');
const multer = require('multer');
const nodemailer = require('nodemailer');
const upload = multer({dest: './uploads/'});
const axios = require('axios');
const geoKey = process.env.GEOCODE_API || require('./geocode.js');
let port = process.env.PORT || 3000
// This is the shape of the object from the config file which is gitignored
// const cloudConfig = {
// cloud_name: 'top-hat',
// api_key: 'API_KEY',
// api_secret: 'API_SECRET'
// };
cloudinary.config(cloudConfig);
const app = express();
app.use(express.static((__dirname + '/src/public')));
app.use(bodyParser.json({limit: '50mb'}));
seedListingDB();
//handles log in information in the db, creates jwt
app.post('/login', (req, res) => {
var username = req.body.username;
var password = req.body.password;
User.findOne({ username: username})
.exec((err, found) => {
if (err) {
throw err;
console.log('error');
} else {
if (found) {
found.comparePassword(password).then(match => {
if (match) {
let payload = {
username: found.username,
name: found.name,
email: found.email
};
let token = jwt.sign(payload, 'Shaken, not stirred', {
expiresIn: '1h'
});
res.json({
success: true,
username: found.username,
token: token
});
}
})
} else {
res.send(JSON.stringify({
success: false,
error: 'Invalid Username/Password'
}));
}
}
})
});
//handles new user creations in db
app.post('/signup', (req, res) => {
var username = req.body.username;
var password = req.body.password;
var email = req.body.email;
User.findOne({ email: email })
.exec((err, found) => {
if (err) {
throw err;
console.log('error');
}
if (found) {
res.send(JSON.stringify({
success: false,
error: 'User already exists!',
}));
} else {
User.create({
username: username,
password: password,
email: email,
name: '',
phone: '',
address: ''
})
.then((newUser) => {
let payload = {
username: newUser.username,
name: newUser.name,
email: newUser.email
};
let token = jwt.sign(payload, 'Shaken, not stirred', {
expiresIn: '1h'
});
res.json({
success: true,
username: newUser.username,
token: token
});
})
.catch((err) => {
console.log(err);
})
}
})
})
//handles updating profiles in db
app.post('/profile', (req, res) => {
var email = req.body.email;
var updateProfile = {
name: req.body.name,
phone: req.body.phone,
address: req.body.address
};
var updateListing = {
name: req.body.name,
}
User.findOneAndUpdate({email: email}, updateProfile, function(err) {
if(err) {
console.log(err);
} else {
console.log('Profile update success!');
}
})
Listing.findOneAndUpdate({email: email}, updateListing, function(err) {
if (err) {
console.log(err);
} else {
console.log('Listing update success!')
}
})
});
let dogUpload = upload.fields([{
name: 'dogsPictures',
maxCount: 1
}]);
app.post('/dog', dogUpload, (req, res, next) => {
var email = req.body.email
var dog = {
name: req.body.name,
dogSize: req.body.dogSize,
dogBreed: req.body.dogBreed,
dogActivityReq: req.body.dogActivityReq,
bio: req.body.bio,
dogPictures: "Picture is being uploaded...",
age: req.body.age
}
User.findOneAndUpdate(
{email:email},
{ $push: {
dogs: dog
}
}
, function(err, dogs) {
if(err) {
res.status(404).send(err);
next();
} else {
next();
}
})
}, (req, res) => {
// Sends files to the Cloudinary servers and updates entries in the database
if (req.files.dogsPictures) {
console.log('Send to cloudinary!', req.files.dogsPictures[0].path);
cloudinary.v2.uploader.upload(req.files.dogsPictures[0].path, (err, result) => {
if(err) {
console.log('Cloudinary error: ', err);
}
console.log('Dog Picture url: ', result.url)
User.findOneAndUpdate(
{email:req.body.email},
{ $push: {
dogsPictures: result.url
}
}
, function(err, dogs) {
if(err) {
res.status(404).send(err);
} else {
res.status(200).send({message: 'Updated dogs!'});
}
})
});
}
});
//returns User's dogs
app.get('/dog', (req, res) => {
var email = req.query.email;
if (!email) {
res.status(404).send('No email provided');
}
User.find({email: email}).select('dogs')
.exec((err, dogs) => {
if (err) {
console.log(err);
} else {
if (dogs.length) {
res.status(200).send(dogs[0].dogs);
} else res.status(200).send()
}
})
})
//returns User's dog pictures
app.get('/dogpics', (req, res) => {
var email = req.query.email;
if (!email) {
res.status(404).send('No email provided');
}
User.find({email: email})//.select('dogsPictures')
.exec((err, pics) => {
if (err) {
console.log(err);
} else {
if (pics.length) {
res.status(200).send(pics[0].dogsPictures);
} else res.status(200).send()
}
})
})
//Gets user data
app.get('/user', (req, res) => {
var email = req.query.email;
if (!email) {
res.status(404).send('No email provided');
}
User.find({email: email})
.exec((err, user) => {
if (err) {
console.log(err);
} else {
if (user.length) {
res.status(200).send(user);
} else res.status(404).send()
}
})
})
//Check post listing for uploaded files and stores in req.files
let listingsUpload = upload.fields([{
name: 'hostPictures',
maxCount: 1
}, {
name: 'homePictures',
maxCount: 1
}]);
//handles posts for listings in db
app.post('/listings', listingsUpload, (req, res, next) => {
//construct address out of request body
var street = req.body.street.split(' ').join('+');
var city = req.body.city.split(' ').join('+');
var state = req.body.state;
var mapUrl = `https://maps.googleapis.com/maps/api/geocode/json?address=${street},${city},${state}&key=${geoKey}`
var location = [];
axios.get(mapUrl)
.then(function(response) {
location = [response.data.results[0].geometry.location.lat, response.data.results[0].geometry.location.lng]
})
.catch(function(error) {
console.log(error);
})
.then(() => Listing.findOne({name: req.body.name}))
.then((found) => {
if (found) {
// update Listing
Listing.update(Object.assign({}, req.body, {position: location}));
res.json({success: true, message: 'Thank you, your listing has been successfully updated!', listing: found});
next();
} else {
// Create new Listing and save in database
var newListing = new Listing({
name: req.body.name,
email: req.body.email,
zipcode: req.body.zipcode,
dogSizePreference: req.body.dogSizePreference,
dogBreedPreference: req.body.dogBreedPreference,
// dogTemperamentPreference: req.body.dogTemperamentPreference,
dogActivityPreference: req.body.dogActivityPreference,
homeAttributes: req.body.homeAttributes,
yard: req.body.yard,
children: req.body.children,
pets: req.body.pets,
hostPictures: 'Image is being uploaded...',
homePictures: 'Image is being uploaded...',
cost: req.body.cost,
position: location
});
newListing.save((err, host) => {
if (err) {
res.json({success: false, message: err});
} else {
res.json({success: true, message: 'Thank you, your listing has been successfully saved!', listing: host});
}
next();
});
}
}).catch((err) => {
res.json({success: false, message: err});
next();
});
}, (req, res) => {
// Sends files to the Cloudinary servers and updates entries in the database
if (req.files.hostPictures) {
console.log('Send to cloudinary!', req.files.hostPictures[0].path);
cloudinary.v2.uploader.upload(req.files.hostPictures[0].path, (err, result) => {
if(err) {
console.log('Cloudinary error: ', err);
}
// console.log('Host Picture url: ', result.url) you may wish to use this if you alter file uploading
Listing.findOneAndUpdate({name: req.body.name}, {hostPictures: result.url}, (err, found) => {
if (err) {
console.log(err);
}
// console.log('Updated Host Pictures: ', found); you may wish to use this if you alter file uploading
});
});
}
if (req.files.homePictures) {
console.log('Send to cloudinary!', req.files.homePictures[0].path);
cloudinary.v2.uploader.upload(req.files.homePictures[0].path, (err, result) => {
if (err) {
console.log('Cloudinary error: ', err);
}
// console.log('Home Picture url: ', result.url); you may wish to use this if you alter file uploading
Listing.findOneAndUpdate({name: req.body.name}, {homePictures: result.url}, (err, found) => {
if (err) {
console.log(err);
}
// console.log('Updated Home Pictures: ', found) you may wish to use this if you alter file uploading
});
});
}
});
//handles getting all listings that exist
app.get('/listings', (req, res) => {
Listing.find({})
.exec((err, listings) => {
if (err) {
console.log('error');
} else {
res.send(listings);
}
})
})
//handles getting listings by zipcode from search
app.get('/listings/:zipcode', (req, res) => {
var zipcode = req.params.zipcode;
Listing.find({ "$where": `function() { return this.zipcode.toString().match(/${zipcode}/) !== null; }`})
.exec((err, listings) => {
if (err) {
console.log(err);
} else {
res.send(listings);
}
})
})
//Get all bookings that the user is hosting
app.get('/bookings/host', (req, res) => {
let email = req.query.email
Booking.find({hostEmail: email})
.exec((err, hostings) => {
if (err) {
console.log('error');
} else {
res.send(hostings);
}
})
})
// Get all bookings that the user is patronizing
app.get('/bookings/guest', (req, res) => {
let email = req.query.email
Booking.find({guestEmail: email})
.exec((err, booking) => {
if (err) {
console.log('error');
} else {
res.send(booking);
}
})
})
// Update a booking
app.post('/bookings', (req, res) => {
let confirmed = {confirmed:req.body.confirmed}
Booking.findOneAndUpdate({_id: req.body.id}, confirmed, function(err, booking) {
if (err) {
res.status(404).send(err);
} else {
res.status(200).send()
}
})
})
//handles requests for contacting host, sends email to host
app.post('/contacthost', (req, res) => {
var ownerEmail = req.body.ownerEmail;
var hostEmail = req.body.hostEmail;
var date = req.body.date;
var newBooking = new Booking({
guestEmail: ownerEmail,
hostEmail: hostEmail,
date: date,
confirmed: false
});
var transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: '[email protected]', // Your email id
pass: 'SitNPawsHR1' // Your password
}
});
var mailOptions = {
to: hostEmail,
subject: 'Hi from Sit-n-Paws! A friend wants to stay at your house on ' + date,
text: 'Email the pet owner @ ' + ownerEmail + ' Please respond within 24 hours!'
};
transporter.sendMail(mailOptions, function(error, response) {
if (error) {
console.log(error);
res.json({hi: 'error here'})
} else {
// console.log('Email sent: ' + response.response);
res.json({hi: response.response});
newBooking.save((err, booking) => {
if (err) {
console.log('err:',err)
} else {
console.log('success', booking)
}
});
}
});
})
app.get('*', (req, res) => {
res.sendFile(__dirname + '/src/public/index.html');
})
app.listen(process.env.PORT || 3000, () => {
console.log('Listening on server:3000');
});
module.exports = app;