2022-06-23 17:36:44 +02:00
|
|
|
/*
|
2022-05-17 22:18:32 +02:00
|
|
|
Copyright (C) 2021-2022 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/.
|
|
|
|
*/
|
2021-07-07 14:35:33 +02:00
|
|
|
const path = require("path");
|
2022-05-20 18:23:12 +02:00
|
|
|
const htmlParser = require("node-html-parser");
|
2022-03-06 18:59:53 +01:00
|
|
|
const moment = require("moment");
|
2021-07-07 14:35:33 +02:00
|
|
|
const templateDir = path.resolve(`${process.cwd()}${path.sep}html`);
|
|
|
|
var express = require("express");
|
|
|
|
var app = express();
|
|
|
|
app.engine("html", require("ejs").renderFile);
|
2022-05-17 22:18:32 +02:00
|
|
|
app.use(express.urlencoded({ extended: true })) // for parsing application/x-www-form-urlencoded
|
2022-03-02 21:09:56 +01:00
|
|
|
var dislike_api = `https://returnyoutubedislikeapi.com/votes?videoId=`
|
2021-07-07 14:35:33 +02:00
|
|
|
app.set("view engine", "html");
|
2022-03-06 17:16:42 +01:00
|
|
|
const lyricsFinder = require("./src/lyrics.js");
|
2022-02-23 19:54:21 +01:00
|
|
|
const renderTemplate = async (res, req, template, data = {}) => {
|
|
|
|
res.render(
|
|
|
|
path.resolve(`${templateDir}${path.sep}${template}`),
|
|
|
|
Object.assign(data)
|
|
|
|
);
|
2021-07-07 14:35:33 +02:00
|
|
|
};
|
2022-03-11 21:52:04 +01:00
|
|
|
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 moive trailer"
|
|
|
|
]
|
2022-06-23 17:36:44 +02:00
|
|
|
const image_urls = [
|
|
|
|
"https://cdn.glitch.com/4095e32f-375a-40f2-841e-961cee4c2a95/sheng-l-q2dUSl9S4Xg-unsplash.jpg?v=1655990895950",
|
|
|
|
"https://cdn.glitch.com/4095e32f-375a-40f2-841e-961cee4c2a95/willian-justen-de-vasconcellos-T_Qe4QlMIvQ-unsplash(1).jpg?v=1655991004992",
|
|
|
|
"https://cdn.glitch.global/4095e32f-375a-40f2-841e-961cee4c2a95/s-b-vonlanthen-A8iLzX6OddM-unsplash.jpg?v=1655991148325",
|
|
|
|
"https://cdn.glitch.global/4095e32f-375a-40f2-841e-961cee4c2a95/pawel-czerwinski-8uZPynIu-rQ-unsplash.jpg?v=1655991178735",
|
|
|
|
"https://cdn.glitch.global/4095e32f-375a-40f2-841e-961cee4c2a95/richard-horvath-_nWaeTF6qo0-unsplash.jpg?v=1655991315976",
|
|
|
|
"https://cdn.glitch.global/4095e32f-375a-40f2-841e-961cee4c2a95/john-fowler-aaIN3y2zcMQ-unsplash.jpg?v=1655991319840",
|
|
|
|
"https://cdn.glitch.global/4095e32f-375a-40f2-841e-961cee4c2a95/kristopher-roller-zepnJQycr4U-unsplash.jpg?v=1655991322758"
|
|
|
|
]
|
2022-02-23 19:54:21 +01:00
|
|
|
const fetch = require("node-fetch");
|
2022-03-02 21:09:56 +01:00
|
|
|
const fetcher = require("./src/fetcher.js");
|
2022-05-20 18:23:12 +02:00
|
|
|
|
2022-02-23 19:54:21 +01:00
|
|
|
app.get("/watch", async function (req, res) {
|
2022-03-27 06:44:08 +02:00
|
|
|
var v = req.query.v;
|
2022-05-20 18:23:12 +02:00
|
|
|
const getColors = require('get-image-colors')
|
2022-06-22 15:33:03 +02:00
|
|
|
var e = req.query.e;
|
|
|
|
var r = req.query.r;
|
2022-06-25 11:04:01 +02:00
|
|
|
|
2022-06-22 15:33:03 +02:00
|
|
|
const { toJson } = require("xml2json");
|
|
|
|
const video = await fetch( `https://tube.kuylar.dev/api/video?v=${v}`);
|
|
|
|
const h = await video.text();
|
|
|
|
const k = JSON.parse(toJson(h));
|
2022-03-31 12:22:19 +02:00
|
|
|
if(!v) res.redirect("/")
|
|
|
|
var fetching = await fetcher(v)
|
2022-06-23 17:36:44 +02:00
|
|
|
const j = fetching.video.Player.Formats.Format,
|
2022-03-31 12:22:19 +02:00
|
|
|
j_ = Array.isArray(j)
|
|
|
|
? j[j.length - 1]
|
|
|
|
: j;
|
2022-03-27 06:44:08 +02:00
|
|
|
let url;
|
|
|
|
if (j_.URL != undefined)
|
|
|
|
url = j_.URL;
|
2022-03-06 14:52:37 +01:00
|
|
|
const json = fetching.video.Player
|
|
|
|
const engagement = fetching.engagement
|
|
|
|
const lyrics = await lyricsFinder(json.Title);
|
2022-02-13 12:01:27 +01:00
|
|
|
if (lyrics == undefined) lyrics = "Lyrics not found";
|
2022-06-04 18:35:11 +02:00
|
|
|
renderTemplate(res, req, "poketube.ejs", {
|
2022-03-06 14:52:37 +01:00
|
|
|
url: url,
|
2022-05-20 18:23:12 +02:00
|
|
|
color: await getColors(`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`).then((colors) => colors[0].hex()),
|
2022-03-06 14:52:37 +01:00
|
|
|
engagement:engagement,
|
2022-02-13 12:01:27 +01:00
|
|
|
video: json,
|
2022-06-23 17:36:44 +02:00
|
|
|
date: moment(k.Video.uploadDate).format("LL"),
|
2022-03-02 21:09:56 +01:00
|
|
|
e:e,
|
2022-06-22 15:33:03 +02:00
|
|
|
k:k,
|
|
|
|
r:r,
|
2022-02-23 19:54:21 +01:00
|
|
|
lyrics: lyrics.replace(/\n/g, " <br> "),
|
|
|
|
});
|
2022-02-13 12:01:27 +01:00
|
|
|
});
|
2022-06-22 11:52:00 +02:00
|
|
|
|
|
|
|
app.get("/old/watch", async function (req, res) {
|
|
|
|
var v = req.query.v;
|
|
|
|
const getColors = require('get-image-colors')
|
|
|
|
var e = req.query.e;
|
|
|
|
if(!v) res.redirect("/")
|
|
|
|
var fetching = await fetcher(v)
|
|
|
|
const j = fetching.video.Player.Formats.Format,
|
|
|
|
j_ = Array.isArray(j)
|
|
|
|
? j[j.length - 1]
|
|
|
|
: j;
|
|
|
|
let url;
|
|
|
|
if (j_.URL != undefined)
|
|
|
|
url = j_.URL;
|
|
|
|
const json = fetching.video.Player
|
|
|
|
const engagement = fetching.engagement
|
|
|
|
const lyrics = await lyricsFinder(json.Title);
|
|
|
|
if (lyrics == undefined) lyrics = "Lyrics not found";
|
|
|
|
renderTemplate(res, req, "poketube-old.ejs", {
|
|
|
|
url: url,
|
|
|
|
color: await getColors(`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`).then((colors) => colors[0].hex()),
|
|
|
|
engagement:engagement,
|
|
|
|
video: json,
|
|
|
|
date: moment(json.uploadDate).format("LL"),
|
|
|
|
e:e,
|
|
|
|
lyrics: lyrics.replace(/\n/g, " <br> "),
|
|
|
|
});
|
|
|
|
});
|
2022-02-23 19:54:21 +01:00
|
|
|
app.get("/", function (req, res) {
|
2022-03-11 21:52:04 +01:00
|
|
|
const things = random_words[Math.floor((Math.random()*random_words.length))];
|
2022-06-23 17:36:44 +02:00
|
|
|
const ur = image_urls[Math.floor((Math.random()*image_urls.length))];
|
|
|
|
|
2022-06-04 18:35:11 +02:00
|
|
|
renderTemplate(res, req, "main.ejs", {
|
2022-03-11 21:52:04 +01:00
|
|
|
random:things,
|
2022-06-23 17:36:44 +02:00
|
|
|
url:ur
|
2022-06-20 10:58:59 +02:00
|
|
|
});
|
|
|
|
});
|
2022-06-08 19:28:48 +02:00
|
|
|
app.get("/channel", async (req, res) => {
|
2022-06-22 11:52:00 +02:00
|
|
|
const ID = req.query.id;
|
|
|
|
const { toJson } = require("xml2json");
|
|
|
|
const bout = await fetch( `https://tube.kuylar.dev/api/channel?id=${ID}&tab=about`);
|
2022-06-08 19:28:48 +02:00
|
|
|
const h = await bout.text();
|
|
|
|
const k = JSON.parse(toJson(h));
|
2022-06-22 22:56:42 +02:00
|
|
|
const channel = await fetch( `https://tube.kuylar.dev/api/channel?id=${ID}&tab=videos`);
|
|
|
|
const c = await channel.text();
|
|
|
|
const tj = JSON.parse(toJson(c));
|
2022-06-08 19:28:48 +02:00
|
|
|
const { Subscribers: subscribers } = k.Channel.Metadata;
|
2022-05-17 22:18:32 +02:00
|
|
|
renderTemplate(res, req, "channel.ejs", {
|
|
|
|
ID:ID,
|
2022-06-08 19:28:48 +02:00
|
|
|
j:k,
|
2022-06-22 22:56:42 +02:00
|
|
|
tj:tj,
|
2022-06-08 19:28:48 +02:00
|
|
|
about:k.Channel.Contents.ItemSection.About,
|
2022-06-08 20:31:44 +02:00
|
|
|
subs:typeof subscribers === 'string' ? subscribers.replace('subscribers', '') : 'Private',
|
|
|
|
desc:k.Channel.Contents.ItemSection.About.Description
|
2022-05-17 22:18:32 +02:00
|
|
|
});});
|
|
|
|
app.get("/privacy", function (req, res) {
|
|
|
|
renderTemplate(res, req, "priv.ejs");
|
2022-03-07 17:09:55 +01:00
|
|
|
});
|
2022-06-04 18:35:11 +02:00
|
|
|
app.get("/143", function (req, res) {
|
|
|
|
renderTemplate(res, req, "143.ejs");
|
|
|
|
});
|
2022-03-07 17:09:55 +01:00
|
|
|
app.get("/domains", function (req, res) {
|
|
|
|
renderTemplate(res, req, "domains.ejs");
|
|
|
|
});
|
2022-03-06 18:59:53 +01:00
|
|
|
app.get("/api/search", async (req, res) => {
|
2022-02-23 19:54:21 +01:00
|
|
|
const query = req.query.query;
|
2022-02-13 12:15:42 +01:00
|
|
|
|
|
|
|
if (!query) {
|
2022-02-23 19:54:21 +01:00
|
|
|
return res.redirect("/");
|
2022-02-13 12:15:42 +01:00
|
|
|
}
|
2022-06-08 16:11:29 +02:00
|
|
|
return res.redirect(`/search?query=${query}`);
|
|
|
|
});
|
|
|
|
app.get("/search", async (req, res) => {
|
|
|
|
const { toJson } = require("xml2json");
|
|
|
|
const query = req.query.query;
|
2022-06-22 11:52:00 +02:00
|
|
|
const search = await fetch(`https://tube.kuylar.dev/api/search?query=${query}`);
|
2022-06-08 16:11:29 +02:00
|
|
|
const text = await search.text();
|
|
|
|
const j = JSON.parse(toJson(text));
|
|
|
|
if (!query) {
|
|
|
|
return res.redirect("/");
|
|
|
|
}
|
|
|
|
renderTemplate(res, req, "search.ejs", {
|
|
|
|
j: j,
|
2022-06-08 18:06:23 +02:00
|
|
|
q:query
|
2022-06-08 16:11:29 +02:00
|
|
|
});
|
|
|
|
});
|
2022-02-23 19:54:21 +01:00
|
|
|
app.get("/css/:id", (req, res) => {
|
|
|
|
res.sendFile(__dirname + `/css/${req.params.id}`);
|
|
|
|
});
|
2022-05-17 22:18:32 +02:00
|
|
|
app.get("/js/:id", (req, res) => {
|
|
|
|
res.sendFile(__dirname + `/js/${req.params.id}`);
|
|
|
|
});
|
2022-03-06 14:52:37 +01:00
|
|
|
app.get("/video/upload", (req, res) => {
|
2022-03-02 21:25:41 +01:00
|
|
|
res.redirect("https://youtube.com/upload?from=poketube_utc");
|
2022-03-27 11:43:29 +02:00
|
|
|
});
|
|
|
|
app.get("/api/video/download", async function (req, res) {
|
|
|
|
var v = req.query.v;var fetching = await fetcher(v);const url = fetching.video.Player.Formats.Format[1].URL;res.redirect(url)
|
2022-03-02 21:25:41 +01:00
|
|
|
});
|
2022-05-17 22:18:32 +02:00
|
|
|
app.get("/api/video/downloadjson", async function (req, res) {
|
|
|
|
var v = req.query.v;var fetching = await fetcher(v);const url = fetching.video.Player.Formats.Format[1].URL;res.json(url)
|
|
|
|
});
|
2022-06-22 11:52:00 +02:00
|
|
|
|
|
|
|
|
2022-05-17 22:18:32 +02:00
|
|
|
app.get("*", function (req, res) {
|
2022-03-11 21:52:04 +01:00
|
|
|
const things = random_words[Math.floor((Math.random()*random_words.length))];
|
|
|
|
renderTemplate(res, req, "404.ejs", {
|
|
|
|
random:things,
|
|
|
|
});});
|
2022-05-17 22:18:32 +02:00
|
|
|
app.listen("3000", () => {
|
|
|
|
})
|