mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-14 05:09:00 +01:00
add alot of stuff :3
This commit is contained in:
parent
4f77b145ea
commit
a4ff42f7b2
1 changed files with 17 additions and 10 deletions
|
@ -29,11 +29,14 @@ function getJson(str) {
|
||||||
const pkg = require("../../../package.json");
|
const pkg = require("../../../package.json");
|
||||||
const cnf = require("../../../config.json");
|
const cnf = require("../../../config.json");
|
||||||
|
|
||||||
const ver = "v23.1311-aMy-MAJOR-stable-nonLTS-git-MTY5OTg5NDg3Mw==";
|
const verfull = "v23.1311-JeSsIcA-MAJOR-stable-dev-nonLTS-git-MTcwMDI5ODc4OQ==";
|
||||||
const branch = "dev";
|
const versmol = "v23.1311-JeSsIcA"
|
||||||
const codename = "amy";
|
const branch = "dev/master";
|
||||||
const versionnumber = "270";
|
const codename = "jessica";
|
||||||
const relaseunixdate = "MTY5OTg5NDg3Mw==";
|
const versionnumber = "272";
|
||||||
|
const relaseunixdate = "MTcwMDI5ODc4OQ==
|
||||||
|
const updatequote = "Empty your cup so that it may be filled; become devoid to gain totality. - Bruce Lee"
|
||||||
|
|
||||||
|
|
||||||
module.exports = function (app, config, renderTemplate) {
|
module.exports = function (app, config, renderTemplate) {
|
||||||
app.get("/embed/:v", async function (req, res) {
|
app.get("/embed/:v", async function (req, res) {
|
||||||
|
@ -42,12 +45,14 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
|
|
||||||
app.get("/admin", async function (req, res) {
|
app.get("/admin", async function (req, res) {
|
||||||
if(req.hostname === "poketube.fun") {
|
if(req.hostname === "poketube.fun") {
|
||||||
res.redirect("https://console.sudovanilla.com/?from=pt_admin")
|
res.redirect("https://console.sudovanilla.com/")
|
||||||
|
} else {
|
||||||
|
res.redirect("/sex")
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get("/vi/:v/:t", async function (req, res) {
|
app.get("/vi/:v/:t", async function (req, res) {
|
||||||
var url = `https://vid.theedgeofrage.com/vi/${req.params.v}/${req.params.t}`
|
var url = `https://inv.vern.cc/vi/${req.params.v}/${req.params.t}`
|
||||||
|
|
||||||
let f = await modules.fetch(url + `?cachefixer=${btoa(Date.now())}`, {
|
let f = await modules.fetch(url + `?cachefixer=${btoa(Date.now())}`, {
|
||||||
method: req.method,
|
method: req.method,
|
||||||
|
@ -58,7 +63,7 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get("/avatars/:v", async function (req, res) {
|
app.get("/avatars/:v", async function (req, res) {
|
||||||
var url = `https://vid.theedgeofrage.com/ggpht/${req.params.v}`;
|
var url = `https://inv.vern.cc/ggpht/${req.params.v}`;
|
||||||
|
|
||||||
let f = await modules.fetch(url + `?cachefixer=${btoa(Date.now())}`, {
|
let f = await modules.fetch(url + `?cachefixer=${btoa(Date.now())}`, {
|
||||||
method: req.method,
|
method: req.method,
|
||||||
|
@ -68,7 +73,7 @@ app.get("/avatars/:v", async function (req, res) {
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get("/avatars/ytc/:v", async function (req, res) {
|
app.get("/avatars/ytc/:v", async function (req, res) {
|
||||||
var url = `https://vid.theedgeofrage.com/ggpht/ytc/${req.params.v.replace("ytc", "")}`;
|
var url = `https://inv.vern.cc/ggpht/ytc/${req.params.v.replace("ytc", "")}`;
|
||||||
|
|
||||||
let f = await modules.fetch(url + `?cachefixer=${btoa(Date.now())}`, {
|
let f = await modules.fetch(url + `?cachefixer=${btoa(Date.now())}`, {
|
||||||
method: req.method,
|
method: req.method,
|
||||||
|
@ -156,8 +161,10 @@ app.get("/avatars/:v", async function (req, res) {
|
||||||
.then((txt) => getJson(txt));
|
.then((txt) => getJson(txt));
|
||||||
|
|
||||||
const response = {
|
const response = {
|
||||||
pt_version: ver,
|
pt_version: versmol,
|
||||||
|
pt_version_full: verfull,
|
||||||
branch,
|
branch,
|
||||||
|
updatequote,
|
||||||
relaseunixdate,
|
relaseunixdate,
|
||||||
vernum: versionnumber,
|
vernum: versionnumber,
|
||||||
codename,
|
codename,
|
||||||
|
|
Loading…
Reference in a new issue