convert function

This commit is contained in:
Ashley 2022-09-22 13:46:56 +02:00
parent af1efb12d5
commit 4353d1c7d9

View file

@ -81,7 +81,7 @@ const config = {
t_url: "https://t.poketube.fun/", // def matomo url t_url: "https://t.poketube.fun/", // def matomo url
}; };
///////////// PAGES ///////////// ///////////// FUNCTIONS /////////////
function IsJsonString(str) { function IsJsonString(str) {
try { try {
@ -92,6 +92,17 @@ function IsJsonString(str) {
return true; return true;
} }
function convert(value) {
if (value >= 1000000) {
value = value / 1000000 + "M";
} else if (value >= 1000) {
value = value / 1000 + "K";
}
return value;
}
/////////////////////////////////
app.use(function (req, res, next) { app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*"); res.header("Access-Control-Allow-Origin", "*");
@ -187,6 +198,17 @@ app.get("/watch", async function (req, res) {
} }
} }
var nnn = "";
if (n === "none") {
nnn = "";
}
if (IsJsonString(n)) {
if (n !== "none") {
nnn = JSON.parse(n);
}
}
var comments = ""; var comments = "";
if (n === "none") { if (n === "none") {
comments = ""; comments = "";
@ -257,12 +279,14 @@ app.get("/watch", async function (req, res) {
r: r, r: r,
qua: q, qua: q,
ip: ip, ip: ip,
convert: convert,
wiki: w, wiki: w,
f: f, f: f,
t: config.t_url, t: config.t_url,
optout: t, optout: t,
badges: badges, badges: badges,
comments: comments, comments: comments,
n: nnn,
lyrics: "", lyrics: "",
}); });
}); });