-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
67 lines (56 loc) · 1.78 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
require('dotenv').config()
const express = require('express')
const app = express()
const bodyParser = require('body-parser')
const hbs = require('hbs')
const hbsLayouts = require('handlebars-layouts')
const hbsHelpers = require('./lib/hbsHelpers')
const fnGetPaymentData = require('./lib/fnGetPaymentData')
const fnPaymentLinkToInvId = require('./lib/paymentLinks').paymentLinkToInvId
const fnInvIdToPaymentLink = require('./lib/paymentLinks').invIdToPaymentLink
hbs.registerPartials(__dirname + '/views/partials')
hbs.registerHelper('satsToBTC', hbsHelpers.satsToBTC)
hbs.registerHelper(hbsLayouts(hbs.handlebars))
const SERVER_PORT = process.env.SERVER_PORT || 4000
const SERVER_HOST = process.env.SERVER_HOST || 'localhost'
app.use('/static', express.static('static', {
fallthrough: false
}))
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({ extended: true }))
app.set('view engine', 'hbs')
app.get('/', (req, res) => {
res.render('pages/index.hbs')
})
app.post('/', (req, res) => {
if (req.body.bitpayLink) {
const invId = fnPaymentLinkToInvId(req.body.bitpayLink)
res.redirect(`/invoice?id=${invId}`)
} else {
res.redirect('/')
}
})
app.get('/invoice', async (req, res) => {
if (req.query.id) {
console.log(`*** Reading Invoice #${req.query.id} ***`)
const bitpayLink = fnInvIdToPaymentLink(req.query.id)
try {
const paymentData = await fnGetPaymentData(bitpayLink)
res.render('pages/payment.hbs', {
paymentData: paymentData
})
} catch (e) {
res.render('pages/error.hbs', {
message: e.message
})
}
} else {
res.redirect('/')
}
})
app.get('*', (req, res) => {
res.redirect('/')
})
app.listen(SERVER_PORT, SERVER_HOST, () => {
console.log(`*** I'm alive on ${SERVER_HOST}:${SERVER_PORT} ***`)
})