/* Copyright (C) 2021-2022 POKETUBE (https://github.com/iamashley0/poketube) 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/. */ ///////// definitions ///////////////// const path = require("path"); const htmlParser = require("node-html-parser"); const getColors = require("get-image-colors"); const moment = require("moment"); const lyricsFinder = require("./src/lyrics.js"); const fetch = require("node-fetch"); const { toJson } = require("xml2json"); const fetcher = require("./src/fetcher.js"); const templateDir = path.resolve(`${process.cwd()}${path.sep}html`); var express = require("express"); var app = express(); app.engine("html", require("ejs").renderFile); app.use(express.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded app.set("view engine", "html"); const renderTemplate = async (res, req, template, data = {}) => { res.render( path.resolve(`${templateDir}${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", ]; /* this is our config file,you can change stuff here */ const config = { tubeApi: "https://tube.kuylar.dev/api/", dislikes: "https://returnyoutubedislikeapi.com/votes?videoId=", t_url: "https://t.poketube.fun/", // def matomo url }; // pages app.get("/mobile", async function (req, res) { /* * QUERYS * v = Video ID * e = Embed * r = Recommended videos * f = Recent videos from channel * t = Piwik OptOut */ var v = req.query.v; var e = req.query.e; var r = req.query.r; var f = req.query.f; var t = req.query.t; const video = await fetch(config.tubeApi + `video?v=${v}`); var fetching = await fetcher(v); const json = fetching.video.Player; const h = await video.text(); const k = JSON.parse(toJson(h)); if (!v) res.redirect("/"); // video 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; // channel info const engagement = fetching.engagement; const channel = await fetch(config.tubeApi + `channel?id=${json.Channel.id}&tab=videos`); const c = await channel.text(); const tj = JSON.parse(toJson(c)); // lyrics const lyrics = await lyricsFinder(json.Title); if (lyrics == undefined) lyrics = "Lyrics not found"; renderTemplate(res, req, "poketube-mobile.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(k.Video.uploadDate).format("LL"), e: e, k: k, tj: tj, r: r, f: f, t: config.t_url, optout: t, lyrics: lyrics.replace(/\n/g, "
"), }); }); app.get("/watch", async function (req, res) { /* * QUERYS * v = Video ID * e = Embed * r = Recommended videos * f = Recent videos from channel * t = Piwik OptOut */ var v = req.query.v; var e = req.query.e; var r = req.query.r; var f = req.query.f; var t = req.query.t; const video = await fetch(config.tubeApi + `video?v=${v}`); var fetching = await fetcher(v); const json = fetching.video.Player; const h = await video.text(); const k = JSON.parse(toJson(h)); if (!v) res.redirect("/"); // video 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; // channel info const engagement = fetching.engagement; const channel = await fetch(config.tubeApi + `channel?id=${json.Channel.id}&tab=videos`); const c = await channel.text(); const tj = JSON.parse(toJson(c)); // lyrics const lyrics = await lyricsFinder(json.Title); if (lyrics == undefined) lyrics = "Lyrics not found"; renderTemplate(res, req, "poketube.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(k.Video.uploadDate).format("LL"), e: e, k: k, tj: tj, r: r, f: f, t: config.t_url, optout: t, lyrics: lyrics.replace(/\n/g, "
"), }); }); app.get("/download", async function (req, res) { var v = req.query.v; // video const video = await fetch(config.tubeApi + `video?v=${v}`); const h = await video.text(); const k = JSON.parse(toJson(h)); 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; renderTemplate(res, req, "download.ejs", { url: url, engagement: engagement, k: k, video: json, date: k.Video.uploadDate, color: await getColors(`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`).then((colors) => colors[0].hex()) }); }); app.get("/old/watch", async function (req, res) { var v = req.query.v; 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: "", //return "" e: e, lyrics: lyrics.replace(/\n/g, "
"), }); }); app.get("/discover", async function (req, res) { const trends = await fetch(config.tubeApi + `trending`); const h = await trends.text(); const k = JSON.parse(toJson(h)); renderTemplate(res, req, "main.ejs", { k: k, }); }); app.get("/channel", async (req, res) => { const ID = req.query.id; // about const bout = await fetch(config.tubeApi + `channel?id=${ID}&tab=about`); const h = await bout.text(); const k = JSON.parse(toJson(h)); //videos const channel = await fetch(config.tubeApi + `channel?id=${ID}&tab=videos`); const c = await channel.text(); const tj = JSON.parse(toJson(c)); const { Subscribers: subscribers } = k.Channel.Metadata; renderTemplate(res, req, "channel.ejs", { ID: ID, j: k, tj: tj, about: k.Channel.Contents.ItemSection.About, subs: typeof subscribers === "string" ? subscribers.replace("subscribers", "") : "Private", desc: k.Channel.Contents.ItemSection.About.Description, }); }); app.get("/privacy", function (req, res) { renderTemplate(res, req, "priv.ejs"); }); app.get("/143", function (req, res) { renderTemplate(res, req, "143.ejs"); }); app.get("/domains", function (req, res) { renderTemplate(res, req, "domains.ejs"); }); app.get("/api/search", async (req, res) => { const query = req.query.query; if (!query) { return res.redirect("/"); } return res.redirect(`/search?query=${query}`); }); app.get("/search", async (req, res) => { const { toJson } = require("xml2json"); const query = req.query.query; const search = await fetch(`https://tube.kuylar.dev/api/search?query=${query}` ); const text = await search.text(); const j = JSON.parse(toJson(text)); if (!query) { return res.redirect("/"); } renderTemplate(res, req, "search.ejs", { j: j, q: query, }); }); app.get("/css/:id", (req, res) => { res.sendFile(__dirname + `/css/${req.params.id}`); }); app.get("/js/:id", (req, res) => { res.sendFile(__dirname + `/js/${req.params.id}`); }); app.get("/video/upload", (req, res) => { res.redirect("https://youtube.com/upload?from=poketube_utc"); }); app.get("/", async function (req, res) { res.redirect("/discover"); }); 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); }); 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); }); app.get("*", function (req, res) { const things = random_words[Math.floor(Math.random() * random_words.length)]; renderTemplate(res, req, "404.ejs", { random: things, }); }); // listen app.listen("3000", () => {});