-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
69 lines (55 loc) · 1.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
if(process.env.NODE_ENC!=='production'){
require('dotenv').config()
}
const stripeSecretKey = process.env.STRIPE_SECRET_KEY
const stripePublicKey = process.env.STRIPE_PUBLIC_KEY
const express=require('express')
const app=express()
const fs=require('fs')
const stripe=require('stripe')(stripeSecretKey)
app.set('view engine','ejs')
app.use(express.static('public'))
app.use(express.json())
app.get('/store',function(req,res){
fs.readFile('items.json',function(error,data){
if(error){
res.status(500).end()
}else{
res.render('Store.ejs',{
stripePublicKey:stripePublicKey,
items: JSON.parse(data)
})
}
})
})
app.post('/purchase',function(req,res){
fs.readFile('items.json',function(error,data){
if(error){
res.status(500).end()
}else{
const itemsJson=JSON.parse(data)
const itemsArray=itemsJson.music.concat(itemsJson.merch)
let total=0
req.body.items.forEach(function(item){
const itemJson = itemsArray.find(function(i) {
return i.id == item.id
})
total = total + itemJson.price * item.quantity
})
stripe.charges.create(
{
amount:total,
source:req.body.stripeTokenId,
currency:'usd'
}
).then(function() {
console.log('Charge Successful')
res.json({ message: 'Successfully purchased items' })
}).catch(function() {
console.log('Charge Fail')
res.status(500).end()
})
}
})
})
app.listen(3000)