Moe-counter/index.js

103 lines
2.2 KiB
JavaScript
Raw Normal View History

2020-08-03 08:11:58 -04:00
'use strict'
const fs = require('fs')
const config = require('config-yml')
2020-08-03 08:11:58 -04:00
const express = require('express')
const compression = require('compression')
const db = require('./db')
2020-08-05 01:37:12 -04:00
const themify = require('./utils/themify')
2020-08-03 08:11:58 -04:00
const PLACES = 7
const app = express()
2020-08-04 04:36:37 -04:00
app.use(express.static('assets'))
2020-08-03 08:11:58 -04:00
app.use(compression())
app.set('view engine', 'pug')
app.get('/', (req, res) => {
res.render('index')
});
const getCountByName = async name=> {
// console.log(name)
if (name === 'demo') return { num: '0123456789', name }
try {
const counter = await db.getNum(name) || { name, num: 0 }
const r = counter.num + 1
db.setNum(counter.name, r)
return counter
} catch (error) {
console.log("get count by name is error: ", error)
const errorDefaultCount = 0
return errorDefaultCount
}
}
// the rest api get data
// link: https://www.liaoxuefeng.com/wiki/1022910821149312/1105009634703392
app.get('/rest/@:name', async (req, res) => {
const name = req.params.name
try {
const data = await getCountByName(name)
res.send(data)
} catch (error) {
res.send({
num: 0,
name
})
}
})
2020-08-03 08:11:58 -04:00
// get the image
app.get('/get/@:name', async (req, res) => {
const name = req.params.name
const theme = req.query.theme || 'moebooru'
let length = PLACES, count = 0
2020-08-03 08:11:58 -04:00
// This helps with GitHub's image cache
res.set({
'content-type': 'image/svg+xml',
'cache-control': 'max-age=0, no-cache, no-store, must-revalidate'
})
const data = await getCountByName(name)
count = data.num
2020-08-05 01:37:12 -04:00
if (name === 'demo') {
2020-08-09 12:18:18 -04:00
res.set({
'cache-control': 'max-age=31536000'
})
2020-08-05 01:37:12 -04:00
length = 10
}
2020-08-03 08:11:58 -04:00
// Send the generated SVG as the result
const renderSvg = themify.getCountImage({ count, theme, length })
res.send(renderSvg)
2020-08-03 08:11:58 -04:00
})
app.get('/heart-beat', (req, res) => {
res.set({
'cache-control': 'max-age=0, no-cache, no-store, must-revalidate'
})
res.send('alive')
console.log('heart-beat')
});
let port = 3000
try {
let configPort = config.app.port
if (configPort) {
port = configPort
}
} catch (error) {
throw new Error(error)
}
const listener = app.listen(port, () => {
2020-08-03 08:11:58 -04:00
console.log('Your app is listening on port ' + listener.address().port)
})