-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.js
46 lines (35 loc) · 1.52 KB
/
model.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
// middleware to connect mongodb
const mongoose = require('mongoose');
//Passport-Local-Mongoose is a Mongoose plugin that simplifies building username and password login with Passport.
//This module auto-generates salt and hash fields, you don't require to hash the password with this crypto module
const passportLocalMongoose = require('passport-local-mongoose');
// connect to database --Data base name is 'userDB'
//connection from mongodb
//connection function is mangoose object
//userDB is not created yet
/// if schema is already created add name
mongoose.connect('mongodb+srv://mebashimelis:[email protected]/userDB?retryWrites=true&w=majority');
// Create Model
//define schema (table)
const Schema = mongoose.Schema;
//use schema object to crate new schema object
//No password
const User = new Schema({
fname: String,
lname: String,
email: String,
zipcode: String,
username: String
});
//Passport-Local Mongoose is a Mongoose plugin that simplifies building username and password login with Passport.
User.plugin(passportLocalMongoose);
//export the model
module.exports = mongoose.model('userinfos', User);
////////////
//testing
//This is used to insert testing data
//user is schema object userinfos is the name of collection
// create collection (userinfos) using schema object using user
/*var UserDetail = mongoose.model('userinfos', User);*/
// mongoose model calls register to insert model
/*UserDetail.register({name: 'test', email: '[email protected]', username: 'test' }, 'password');*/