Added linting

This commit is contained in:
Chris Troutner
2022-01-13 09:35:02 -08:00
parent cd9f2b5292
commit b72ed28d49
+38 -24
View File
@@ -6,34 +6,39 @@
const express = require('express') const express = require('express')
const router = express.Router() const router = express.Router()
const axios = require('axios') const axios = require('axios')
const util = require('util')
// Local libraries
const RouteUtils = require('../../util/route-utils') const RouteUtils = require('../../util/route-utils')
const routeUtils = new RouteUtils() const routeUtils = new RouteUtils()
// Local libraries // Local libraries
// const wlogger = require('../../../util/winston-logging') // const wlogger = require('../../../util/winston-logging')
// const config = require('../../../../config') const config = require('../../../config')
let _this
// let _this
class PsfSlpIndexer { class PsfSlpIndexer {
constructor () { constructor () {
// Encapsulate dependencies // Encapsulate dependencies
_this = this this.axios = axios
_this.axios = axios this.router = router
_this.router = router this.routeUtils = routeUtils
_this.routeUtils = routeUtils this.config = config
_this.psfSlpIndexerApi = process.env.SLP_INDEXER_API
if (!this.psfSlpIndexerApi) {
// console.warn('FULCRUM_API env var not set. Can not connect to Fulcrum indexer.')
throw new Error(
'SLP_INDEXER_API env var not set. Can not connect to psf slp indexer.'
)
}
// Define routes // Define routes
_this.router.get('/', this.root) this.router.get('/', this.root)
// this.router.get('/status', this.getStatus) // this.router.get('/status', this.getStatus)
// this.router.post('/address', this.getAddress) // this.router.post('/address', this.getAddress)
// this.router.post('/txid', this.getTxid) // this.router.post('/txid', this.getTxid)
_this.router.post('/token', this.getTokenStats) this.router.post('/token', this.getTokenStats)
// _this = this
}
// Root API endpoint. Simply acknowledges that it exists.
root (req, res, next) {
return res.json({ status: 'psf-slp-indexer' })
} }
/** /**
@@ -50,6 +55,9 @@ class PsfSlpIndexer {
*/ */
async getTokenStats (req, res, next) { async getTokenStats (req, res, next) {
try { try {
// Verify env var is set for interacting with the indexer.
this.checkEnvVar()
const tokenId = req.body.tokenId const tokenId = req.body.tokenId
if (!tokenId || tokenId === '') { if (!tokenId || tokenId === '') {
res.status(400) res.status(400)
@@ -58,22 +66,33 @@ class PsfSlpIndexer {
error: 'tokenId can not be empty' error: 'tokenId can not be empty'
}) })
} }
const response = await _this.axios.post(
`${_this.psfSlpIndexerApi}slp/token/`, const response = await this.axios.post(
`${this.psfSlpIndexerApi}slp/token/`,
{ tokenId } { tokenId }
) )
res.status(200) res.status(200)
return res.json(response.data) return res.json(response.data)
} catch (err) { } catch (err) {
return _this.errorHandler(err, res) return this.errorHandler(err, res)
}
}
// Check the the environment variable is set correctly.
checkEnvVar () {
this.psfSlpIndexerApi = process.env.SLP_INDEXER_API
if (!this.psfSlpIndexerApi) {
throw new Error(
'SLP_INDEXER_API env var not set. Can not connect to PSF SLP indexer.'
)
} }
} }
// DRY error handler. // DRY error handler.
errorHandler (err, res) { errorHandler (err, res) {
// Attempt to decode the error message. // Attempt to decode the error message.
const { msg, status } = _this.routeUtils.decodeError(err) const { msg, status } = this.routeUtils.decodeError(err)
// console.log('errorHandler msg: ', msg) // console.log('errorHandler msg: ', msg)
// console.log('errorHandler status: ', status) // console.log('errorHandler status: ', status)
@@ -92,11 +111,6 @@ class PsfSlpIndexer {
res.status(500) res.status(500)
return res.json({ error: util.inspect(err) }) return res.json({ error: util.inspect(err) })
} }
// Root API endpoint. Simply acknowledges that it exists.
root (req, res, next) {
return res.json({ status: 'psf-slp-indexer' })
}
} }
module.exports = PsfSlpIndexer module.exports = PsfSlpIndexer