2022-11-10 14:27:26 +01:00
|
|
|
const {
|
|
|
|
fetcher,
|
|
|
|
core,
|
|
|
|
wiki,
|
|
|
|
musicInfo,
|
|
|
|
modules,
|
|
|
|
version,
|
|
|
|
initlog,
|
|
|
|
init,
|
|
|
|
} = require("../libpoketube-initsys.js");
|
2022-11-09 17:48:29 +01:00
|
|
|
const {
|
|
|
|
IsJsonString,
|
|
|
|
convert,
|
|
|
|
getFirstLine,
|
|
|
|
capitalizeFirstLetter,
|
|
|
|
turntomins,
|
|
|
|
getRandomInt,
|
|
|
|
getRandomArbitrary,
|
|
|
|
} = require("../ptutils/libpt-coreutils.js");
|
|
|
|
|
2023-06-30 13:17:52 +02:00
|
|
|
var http = require("https");
|
|
|
|
var ping = require("ping");
|
|
|
|
|
2022-11-09 17:48:29 +01:00
|
|
|
const sha384 = modules.hash;
|
|
|
|
|
2022-12-18 15:00:51 +01:00
|
|
|
function getJson(str) {
|
|
|
|
try {
|
2022-12-18 16:02:03 +01:00
|
|
|
return JSON.parse(str);
|
2022-12-18 15:00:51 +01:00
|
|
|
} catch {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-09 17:48:29 +01:00
|
|
|
module.exports = function (app, config, renderTemplate) {
|
2023-06-13 20:31:10 +02:00
|
|
|
app.get("/app", async function (req, res) {
|
2023-02-25 18:46:42 +01:00
|
|
|
let tab = "";
|
|
|
|
if (req.query.tab) {
|
|
|
|
tab = `/?type=${capitalizeFirstLetter(req.query.tab)}`;
|
|
|
|
}
|
2022-11-09 17:48:29 +01:00
|
|
|
|
2023-05-16 20:07:17 +02:00
|
|
|
const invtrend = await modules.fetch(
|
|
|
|
`https://invid-api.poketube.fun/api/v1/trending${tab}`
|
|
|
|
);
|
2023-02-25 18:46:42 +01:00
|
|
|
const t = getJson(await invtrend.text());
|
2022-11-09 17:48:29 +01:00
|
|
|
|
2023-02-25 18:46:42 +01:00
|
|
|
let j = null;
|
2022-11-10 14:27:26 +01:00
|
|
|
if (req.query.mobilesearch) {
|
2023-02-25 18:46:42 +01:00
|
|
|
const query = req.query.mobilesearch;
|
|
|
|
const continuation = req.query.continuation || "";
|
2023-05-16 20:07:17 +02:00
|
|
|
const search = await modules.fetch(
|
|
|
|
`https://inner-api.poketube.fun/api/search?query=${query}&continuation=${continuation}`
|
|
|
|
);
|
2022-11-10 14:27:26 +01:00
|
|
|
const text = await search.text();
|
2023-02-25 18:46:42 +01:00
|
|
|
j = getJson(modules.toJson(text));
|
2022-11-09 17:48:29 +01:00
|
|
|
}
|
|
|
|
|
2022-11-10 14:27:26 +01:00
|
|
|
renderTemplate(res, req, "main.ejs", {
|
|
|
|
tab: req.query.tab,
|
|
|
|
isMobile: req.useragent.isMobile,
|
|
|
|
mobilesearch: req.query.mobilesearch,
|
|
|
|
inv: t,
|
|
|
|
turntomins,
|
2023-02-25 18:46:42 +01:00
|
|
|
continuation: req.query.continuation,
|
2022-11-10 14:27:26 +01:00
|
|
|
j,
|
|
|
|
});
|
|
|
|
});
|
2023-05-16 20:07:17 +02:00
|
|
|
|
2023-06-30 13:17:52 +02:00
|
|
|
app.get("/:v*?", async function (req, res) {
|
|
|
|
const uaos = req.useragent.os;
|
|
|
|
const browser = req.useragent.browser;
|
|
|
|
const isOldWindows =
|
|
|
|
(uaos === "Windows 7" || uaos === "Windows 8") && browser === "Firefox";
|
|
|
|
|
|
|
|
if (process.env.STATUSPAGE_API) {
|
|
|
|
// The following 4 are the actual values that pertain to your account and this specific metric.
|
|
|
|
var apiKey = process.env.STATUSPAGE_API;
|
|
|
|
var pageId = process.env.STATUSPAGE_PAGEID;
|
|
|
|
var metricId = process.env.STATUSPAGE_METRICID;
|
|
|
|
var apiBase = "https://api.statuspage.io/v1";
|
|
|
|
|
|
|
|
var url =
|
|
|
|
apiBase + "/pages/" + pageId + "/metrics/" + metricId + "/data.json";
|
|
|
|
var authHeader = { Authorization: "OAuth " + apiKey };
|
|
|
|
var options = { method: "POST", headers: authHeader };
|
|
|
|
|
|
|
|
var totalPoints = (60 / 5) * 24;
|
|
|
|
var epochInSeconds = Math.floor(new Date() / 1000);
|
|
|
|
|
|
|
|
var count = 0 + 1;
|
|
|
|
|
|
|
|
if (count > totalPoints) return;
|
|
|
|
|
|
|
|
var currentTimestamp = epochInSeconds - (count - 1) * 5 * 60;
|
|
|
|
|
|
|
|
// Measure server ping here
|
|
|
|
var host = "poketube.fun"; // Replace with the server you want to ping
|
|
|
|
|
|
|
|
ping.promise
|
|
|
|
.probe(host)
|
|
|
|
.then((result) => {
|
|
|
|
var ping = result.time !== "unknown" ? parseInt(result.time) : -1;
|
2023-05-16 20:07:17 +02:00
|
|
|
|
2023-06-30 13:17:52 +02:00
|
|
|
ping = Math.min(Math.max(ping, 20), 250);
|
|
|
|
|
|
|
|
var data = {
|
|
|
|
timestamp: currentTimestamp,
|
|
|
|
value: ping,
|
|
|
|
};
|
|
|
|
|
|
|
|
var request = http.request(url, options, function (res) {
|
|
|
|
if (res.statusMessage === "Unauthorized") {
|
|
|
|
const genericError =
|
|
|
|
"Error encountered. Please ensure that your page code and authorization key are correct.";
|
|
|
|
return console.error(genericError);
|
|
|
|
}
|
|
|
|
res.on("data", function () {
|
|
|
|
console.log("Submitted point " + count + " of " + totalPoints);
|
|
|
|
});
|
|
|
|
res.on("end", function () {
|
|
|
|
|
|
|
|
});
|
|
|
|
res.on("error", (error) => {
|
|
|
|
console.error(`Error caught: ${error.message}`);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
request.end(JSON.stringify({ data: data }));
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
console.error("Ping failed:", error);
|
|
|
|
// Submit a default value if the ping fails
|
|
|
|
var data = {
|
|
|
|
timestamp: currentTimestamp,
|
|
|
|
value: -1, // Use -1 to indicate ping failure
|
|
|
|
};
|
|
|
|
|
|
|
|
var request = http.request(url, options, function (res) {
|
|
|
|
// Handle response
|
|
|
|
});
|
|
|
|
|
|
|
|
request.end(JSON.stringify({ data: data }));
|
|
|
|
});
|
2022-11-10 14:27:26 +01:00
|
|
|
}
|
2023-05-21 22:19:50 +02:00
|
|
|
|
2023-06-30 13:17:52 +02:00
|
|
|
const rendermainpage = () => {
|
|
|
|
if (req.useragent.isMobile) {
|
2023-08-09 20:41:45 +02:00
|
|
|
return res.redirect("/app?tab=search");
|
2023-06-30 13:17:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return renderTemplate(res, req, "landing.ejs", {
|
|
|
|
isOldWindows,
|
|
|
|
});
|
|
|
|
};
|
2023-05-16 20:07:17 +02:00
|
|
|
|
2023-06-30 13:17:52 +02:00
|
|
|
if (req.params.v && /[a-zA-Z0-9]+/.test(req.params.v)) {
|
|
|
|
const isvld = await core.isvalidvideo(req.params.v);
|
|
|
|
if (isvld) {
|
|
|
|
return res.redirect(`/watch?v=${req.params.v}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rendermainpage();
|
|
|
|
});
|
2022-11-10 14:27:26 +01:00
|
|
|
};
|