2022-09-21 08:36:21 +02:00
|
|
|
/*
|
2022-07-29 14:26:00 +02:00
|
|
|
|
|
|
|
PokeTube is an Free/Libre youtube front-end. this is our main file.
|
|
|
|
|
2023-01-11 17:20:38 +01:00
|
|
|
Copyright (C) 2021-2023 POKETUBE (https://github.com/iamashley0/poketube)
|
2022-02-28 18:33:58 +01:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see https://www.gnu.org/licenses/.
|
|
|
|
*/
|
2022-11-06 12:09:28 +01:00
|
|
|
|
2023-01-11 17:20:38 +01:00
|
|
|
(async function () {
|
|
|
|
const {
|
|
|
|
fetcher,
|
|
|
|
core,
|
|
|
|
wiki,
|
|
|
|
musicInfo,
|
|
|
|
modules,
|
|
|
|
version,
|
|
|
|
initlog,
|
|
|
|
init,
|
|
|
|
} = require("./src/libpoketube/libpoketube-initsys.js");
|
|
|
|
const media_proxy = require("./src/libpoketube/libpoketube-video.js");
|
|
|
|
const { sinit } = require("./src/libpoketube/init/superinit.js");
|
|
|
|
const u = await media_proxy();
|
|
|
|
|
|
|
|
initlog("Loading...");
|
|
|
|
initlog(
|
|
|
|
"[Welcome] Welcome To PokeTube :3 " +
|
|
|
|
"Running " +
|
|
|
|
`Node ${process.version} - V8 v${
|
|
|
|
process.versions.v8
|
|
|
|
} - ${process.platform.replace("linux", "GNU/Linux")} ${
|
|
|
|
process.arch
|
|
|
|
} Server - libpt ${version}`
|
2022-02-23 19:54:21 +01:00
|
|
|
);
|
2022-07-12 19:06:02 +02:00
|
|
|
|
2023-01-11 17:20:38 +01:00
|
|
|
const {
|
|
|
|
IsJsonString,
|
|
|
|
convert,
|
|
|
|
getFirstLine,
|
|
|
|
capitalizeFirstLetter,
|
|
|
|
turntomins,
|
|
|
|
getRandomInt,
|
|
|
|
getRandomArbitrary,
|
|
|
|
} = require("./src/libpoketube/ptutils/libpt-coreutils.js");
|
|
|
|
|
|
|
|
initlog("Loaded libpt-coreutils");
|
|
|
|
|
|
|
|
const templateDir = modules.path.resolve(
|
|
|
|
`${process.cwd()}${modules.path.sep}html`
|
|
|
|
);
|
|
|
|
|
|
|
|
const sha384 = modules.hash;
|
|
|
|
|
|
|
|
var app = modules.express();
|
|
|
|
initlog("Loaded express.js");
|
|
|
|
app.engine("html", require("ejs").renderFile);
|
|
|
|
app.use(modules.express.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
|
|
|
|
app.use(modules.useragent.express());
|
|
|
|
app.use(modules.express.json()); // for parsing application/json
|
|
|
|
|
|
|
|
const renderTemplate = async (res, req, template, data = {}) => {
|
|
|
|
res.render(
|
|
|
|
modules.path.resolve(`${templateDir}${modules.path.sep}${template}`),
|
|
|
|
Object.assign(data)
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const random_words = [
|
|
|
|
"banana pie",
|
|
|
|
"how to buy an atom bomb",
|
|
|
|
"is love just an illusion",
|
|
|
|
"things to do if ur face becomes benjamin frenklin",
|
|
|
|
"how do defeat an pasta",
|
|
|
|
"can you go to space?",
|
|
|
|
"how to become a god?",
|
|
|
|
"is a panda a panda if pandas???",
|
|
|
|
"Minecraft movie trailer",
|
|
|
|
"monke",
|
|
|
|
];
|
|
|
|
|
|
|
|
/*
|
2022-06-26 10:24:02 +02:00
|
|
|
this is our config file,you can change stuff here
|
|
|
|
*/
|
2023-01-11 17:20:38 +01:00
|
|
|
const config = {
|
|
|
|
tubeApi: "https://tube-srv.ashley143.gay/api/",
|
2023-01-11 20:18:19 +01:00
|
|
|
invapi: "https://invidious.sethforprivacy.com/api/v1",
|
2023-01-11 17:20:38 +01:00
|
|
|
dislikes: "https://returnyoutubedislikeapi.com/votes?videoId=",
|
|
|
|
t_url: "https://t.poketube.fun/", // def matomo url
|
|
|
|
};
|
2022-08-23 14:04:34 +02:00
|
|
|
|
2023-01-11 17:20:38 +01:00
|
|
|
app.use(function (req, res, next) {
|
|
|
|
res.header("Access-Control-Allow-Origin", "*");
|
2022-09-17 18:22:47 +02:00
|
|
|
|
2023-01-11 17:20:38 +01:00
|
|
|
next();
|
|
|
|
});
|
2022-12-05 18:44:37 +01:00
|
|
|
|
2023-01-11 17:20:38 +01:00
|
|
|
sinit(app, config, renderTemplate);
|
2022-09-21 08:36:21 +02:00
|
|
|
|
2023-01-11 17:20:38 +01:00
|
|
|
init(app);
|
|
|
|
})();
|