From 17659ce1983f39720de51b5fb898af515f701206 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Tue, 12 Mar 2024 07:37:29 +0200 Subject: Caching enabled results and a fix --- api/routes/getPeers/index.js | 2 +- api/routes/getSLatest/index.js | 2 +- api/routes/getZblock/index.js | 2 +- bin/ak-schain-latest-cached | 9 +++++++++ 4 files changed, 12 insertions(+), 3 deletions(-) create mode 100755 bin/ak-schain-latest-cached diff --git a/api/routes/getPeers/index.js b/api/routes/getPeers/index.js index 302f23a..699cebb 100644 --- a/api/routes/getPeers/index.js +++ b/api/routes/getPeers/index.js @@ -6,7 +6,7 @@ module.exports = (req, res) => { // const command = spawn("ak-config", ["get-published"]); const path = config.peersFile; if(fs.existsSync(path)){ - res.send(fs.readFileSync(path)); + res.send(JSON.parse(fs.readFileSync(path))); } else { res.send({"error":"404"}) } diff --git a/api/routes/getSLatest/index.js b/api/routes/getSLatest/index.js index 995fe69..5a31ae7 100644 --- a/api/routes/getSLatest/index.js +++ b/api/routes/getSLatest/index.js @@ -8,7 +8,7 @@ const HomeDir = os.userInfo().homedir; * sorry I was laughing at the term.. superchain */ module.exports = (req, res) => { - const command = spawn("ak-find-latest-mined-sblock"); + const command = spawn("ak-schain-latest-cached"); response_string = ""; command.stdout.on("data", data => { response_string = response_string + data; diff --git a/api/routes/getZblock/index.js b/api/routes/getZblock/index.js index c975594..a9ec02c 100644 --- a/api/routes/getZblock/index.js +++ b/api/routes/getZblock/index.js @@ -12,7 +12,7 @@ const config = require("../../config"); */ function fetchZblock(zblock, res){ regex= /Qm[A-Za-z0-9]{44}/; - if (regex.test(req.params.zblock)){ + if (regex.test(zblock)){ const command = spawn("ak-zblock-cache",[zblock]); command.stdout.on("data", data => { }); diff --git a/bin/ak-schain-latest-cached b/bin/ak-schain-latest-cached new file mode 100755 index 0000000..87d9194 --- /dev/null +++ b/bin/ak-schain-latest-cached @@ -0,0 +1,9 @@ +#!/bin/bash + +PROGRAM="$(basename $0)" +source $AK_LIBDIR/logit +if [ ! -f $AK_WORKDIR/schain.latest ] +then + ak-find-latest-mined-sblock > $AK_WORKDIR/schain.latest +fi +cat $AK_WORKDIR/schain.latest -- cgit v1.2.3