-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
56 lines (48 loc) · 1.24 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
const mongoose = require('mongoose');
mongoose.Promise = global.Promise;
const db=mongoose.connect('mongodb://localhost:27017/customercli');
const Customer = require('./models/Customer');
const addCustomer = (customer) => {
Customer.create(customer).then(customer => {
console.info('New Customer Added');
db.close();
})
}
const findCustomer = (name) => {
const search = new RegExp(name, 'i');
Customer.find({$or: [{firstname: search}, {lastname: search}]})
.then(customer => {
console.info(customer);
console.info(`${customer.length} matches.`);
db.close();
});
}
const updateCustomer = (_id, customer) =>{
Customer.updateOne({_id}, customer)
.then(customer => {
console.info(' Customer updated');
db.close();
})
}
const removeCustomer = (_id) =>{
Customer.deleteOne({_id})
.then(() => {
console.info(' Customer Removed');
db.close();
})
}
const listCustomers = () => {
Customer.find()
.then(customers => {
console.info(customers);
console.info(`${customers.length} customers.`);
db.close();
})
}
module.exports = {
addCustomer,
findCustomer,
updateCustomer,
removeCustomer,
listCustomers
}