-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
76 lines (63 loc) · 1.9 KB
/
app.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
if (process.env.NODE_ENV !=='production'){
require("dotenv").config()
}
const stripePublicKey = process.env.STRIPE_PUBLIC_KEY
const stripeSecretKey = process.env.STRIPE_SECRET_KEY
var express = require("express");
var app = express();
var fs = require("fs");
const stripe = require('stripe')(stripeSecretKey)
app.use(express.static(__dirname + "/public"));
app.set("view engine","ejs");
app.use(express.json())
app.get("/",function(req,res){
res.render("tabs/about");
});
app.get("/index",function(req,res){
res.render("tabs/index");
});
app.get('/store', function(req, res) {
fs.readFile('items.json', function(error, data) {
if (error) {
res.status(500).end()
} else {
res.render('tabs/store', {
stripePublicKey: stripePublicKey,
items: JSON.parse(data)
})
}
})
})
app.post("/purchase",function(req,res){
fs.readFile("items.json",(err,data)=>{
if(err){
res.status(500).end()
}
else{
// console.log('purchase')
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(()=>{
console.log('charge succesful')
res.json({ message:'Transaction successful'})
}).catch(()=>{
console.log('Failed')
res.status(500).end()
})
}
})
});
app.listen(5500,function(){
console.log("Store Started");
});