-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
81 lines (47 loc) · 1.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import { ObjectId } from 'bson';
import dotenv from 'dotenv'
import express from "express";
import { createCustomer, findCustomers, findCustomerById} from './src/customers.js';
// import { createInventory, findInventory} from './src/inventory.js';
// import { createTransactions , findTransactions} from './src/transaction.js';
dotenv.config()
const app = express()
app.use(express.json())
/* @@@@@@@@@@@@@@@@@@@@@@@--CUSTOMERS--@@@@@@@@@@@@@@@@ */
app.get('/customers/:id', async (req, res) => {
try {
const id = new ObjectId(req.params.id)
let customer = await findCustomerById(req.body)
res.status(200).send(customer)
} catch(err) {
res.status(500).send(err)
console.log(err)
}
})
app.get('/customers', async (req, res) => {
try {
let customer = await findCustomers(req.body)
res.status(200).send(customer)
} catch(err) {
res.status(500).send(err)
console.log(err)
}
})
app.post('/customers', async (req, res) => {
try {
let customer = await createCustomer(req.body)
res.status(200).send(customer)
} catch(err) {
res.status(500).send(err)
}
})
/* @@@@@@@@@@@@@@@@@@@@@@@--INVENTORY--@@@@@@@@@@@@@@@@ */
/* app.get('/inventory/:id', findInventory)
app.post('/inventory', createInventory)
*/
/* @@@@@@@@@@@@@@@@@@@@@@@--TRANSACTIONS--@@@@@@@@@@@@@@@@ */
/* app.post('/transactions:id', createTransactions)
app.post('/transactions', createTransactions)
*/
app.listen(3000, () => console.log('listening on port 3000'))
// exports.app = functions.https.onRequest(app)