1
Fork 0
poke/server.js

685 lines
16 KiB
JavaScript
Raw Normal View History

2022-09-21 02:36:21 -04:00
/*
2022-07-29 08:26:00 -04:00
PokeTube is an Free/Libre youtube front-end. this is our main file.
2022-05-17 16:18:32 -04:00
Copyright (C) 2021-2022 POKETUBE (https://github.com/iamashley0/poketube)
2022-02-28 12:33:58 -05: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-07-25 07:45:34 -04:00
2022-09-21 02:36:21 -04:00
///////////// DEFINITONS /////////////
2021-07-07 08:35:33 -04:00
const path = require("path");
2022-05-20 12:23:12 -04:00
const htmlParser = require("node-html-parser");
2022-07-25 07:45:34 -04:00
const getColors = require("get-image-colors");
2022-03-06 12:59:53 -05:00
const moment = require("moment");
2022-07-25 07:45:34 -04:00
const lyricsFinder = require("./src/lyrics.js");
const fetch = require("node-fetch");
const { toJson } = require("xml2json");
const fetcher = require("./src/fetcher.js");
2021-07-07 08:35:33 -04:00
const templateDir = path.resolve(`${process.cwd()}${path.sep}html`);
2022-07-25 07:45:34 -04:00
2021-07-07 08:35:33 -04:00
var express = require("express");
2022-07-26 02:46:18 -04:00
var useragent = require("express-useragent");
2022-09-21 02:36:21 -04:00
2022-08-03 17:53:26 -04:00
// hash
2022-09-04 05:00:51 -04:00
const sha384 = require("js-sha512").sha384;
2022-08-03 17:53:26 -04:00
2022-08-18 17:06:09 -04:00
const musicInfo = require("music-info");
2022-09-21 02:36:21 -04:00
const wiki = require("wikipedia");
2022-09-17 12:22:47 -04:00
2022-09-21 02:36:21 -04:00
var http = require("http");
var https = require("https");
2022-08-23 08:04:34 -04:00
http.globalAgent.maxSockets = Infinity;
https.globalAgent.maxSockets = Infinity;
2022-08-16 12:32:45 -04:00
var app = express();
2021-07-07 08:35:33 -04:00
app.engine("html", require("ejs").renderFile);
app.use(express.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
2022-07-26 02:46:18 -04:00
app.use(useragent.express());
2022-06-26 04:24:02 -04:00
2021-07-07 08:35:33 -04:00
app.set("view engine", "html");
2022-02-23 13:54:21 -05:00
const renderTemplate = async (res, req, template, data = {}) => {
res.render(
path.resolve(`${templateDir}${path.sep}${template}`),
Object.assign(data)
);
2021-07-07 08:35:33 -04:00
};
2022-07-13 08:35:18 -04:00
2022-03-11 15:52:04 -05: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 movie trailer",
2022-09-21 02:36:21 -04:00
"monke",
];
2022-07-12 13:06:02 -04:00
2022-06-26 04:24:02 -04:00
/*
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
};
2022-06-26 04:24:02 -04:00
2022-09-22 07:46:56 -04:00
///////////// FUNCTIONS /////////////
2022-07-25 07:45:34 -04:00
2022-09-18 11:20:19 -04:00
function IsJsonString(str) {
2022-09-21 02:36:21 -04:00
try {
JSON.parse(str);
} catch (e) {
return false;
}
return true;
2022-09-18 11:20:19 -04:00
}
2022-09-22 07:46:56 -04:00
function convert(value) {
2022-09-22 10:25:31 -04:00
return new Intl.NumberFormat('en-GB', {
notation: "compact"
}).format(value);
2022-09-22 07:46:56 -04:00
}
2022-09-23 07:25:02 -04:00
function getFirstLine(text) {
var index = text.indexOf("<br> ");
if (index === -1) index = undefined;
return text.substring(0, index);
}
2022-09-22 07:46:56 -04:00
/////////////////////////////////
2022-09-21 02:36:21 -04:00
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
2022-08-23 08:04:34 -04:00
2022-09-21 02:36:21 -04:00
next();
});
2022-09-17 12:22:47 -04:00
2022-08-06 15:19:04 -04:00
app.get("/encryption", async function (req, res) {
var v = req.query.v;
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("/");
2022-08-16 12:32:45 -04:00
//video
2022-08-06 15:19:04 -04:00
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;
// json response
const re = {
2022-08-16 12:32:45 -04:00
main: {
video_id: sha384(json.id),
channel: sha384(json.Channel.Name),
title: sha384(json.Title),
date: sha384(btoa(Date.now()).toString()),
2022-08-06 15:19:04 -04:00
},
2022-08-16 12:32:45 -04:00
info: {
desc: sha384(json.Description),
},
video: {
title: sha384(json.Title),
url: sha384(url),
},
};
res.json(re);
2022-08-06 15:19:04 -04:00
});
2022-08-16 12:32:45 -04:00
2022-09-21 02:36:21 -04:00
///////////// VIDEO PAGES ETC. /////////////
2022-02-23 13:54:21 -05:00
app.get("/watch", async function (req, res) {
2022-07-25 07:45:34 -04:00
/*
* QUERYS
* v = Video ID
* e = Embed
* r = Recommended videos
* f = Recent videos from channel
* t = Piwik OptOut
2022-08-08 12:48:56 -04:00
* q = quality obv
2022-07-25 07:45:34 -04:00
*/
var v = req.query.v;
2022-06-22 09:33:03 -04:00
var e = req.query.e;
var r = req.query.r;
2022-07-13 08:35:18 -04:00
var f = req.query.f;
var t = req.query.t;
2022-08-08 12:48:56 -04:00
var q = req.query.quality;
const video = await fetch(config.tubeApi + `video?v=${v}`);
2022-08-19 17:32:38 -04:00
2022-08-21 09:28:35 -04:00
const info = await fetch("http://ip-api.com/json/");
2022-09-04 02:56:59 -04:00
const jj = await info.text();
const ip = JSON.parse(jj);
2022-09-21 02:36:21 -04:00
var badges = "";
for (let i = 0; i < 3; i++) {
try {
const nightly = await fetch(
`https://lighttube-nightly.kuylar.dev/api/video?v=${v}`
);
var n = await nightly.text();
} catch (err) {
if (err.status === 503) {
// retry after a bit
await new Promise((resolve) => setTimeout(resolve, 1000));
} else {
return (n = "none");
2022-09-18 11:20:19 -04:00
}
2022-09-21 02:36:21 -04:00
}
}
2022-09-04 02:56:59 -04:00
2022-09-04 03:31:02 -04:00
var nn = "";
2022-09-22 07:46:56 -04:00
var nnn = "";
2022-09-21 02:36:21 -04:00
var comments = "";
2022-09-24 16:52:20 -04:00
2022-09-21 02:36:21 -04:00
if (n === "none") {
2022-09-24 16:52:20 -04:00
badges, nnn, comments = "";
2022-09-21 02:36:21 -04:00
}
2022-09-24 16:52:20 -04:00
2022-09-21 02:36:21 -04:00
if (IsJsonString(n)) {
if (n !== "none") {
2022-09-24 16:52:20 -04:00
badges = JSON.parse(n).channel.badges[0];
nnn = JSON.parse(n);
comments = JSON.parse(n).commentCount;
2022-09-18 11:20:19 -04:00
}
}
2022-09-21 02:36:21 -04:00
2022-07-25 07:45:34 -04:00
var fetching = await fetcher(v);
const json = fetching.video.Player;
2022-06-22 09:33:03 -04:00
const h = await video.text();
const k = JSON.parse(toJson(h));
if (!v) res.redirect("/");
2022-08-16 12:32:45 -04:00
//video
if (!q) url = `https://tube.kuylar.dev/proxy/media/${v}/22`;
if (q === "medium") {
var url = `https://tube.kuylar.dev/proxy/media/${v}/18`;
2022-08-08 12:48:56 -04:00
}
2022-09-21 02:36:21 -04:00
2022-08-07 09:30:00 -04:00
// encryption
2022-08-19 17:32:38 -04:00
const url_e =
url +
"?e=" +
2022-09-18 11:20:19 -04:00
sha384(k.Video.Channel.id) +
sha384(k.Video.Channel.id) +
2022-08-19 17:32:38 -04:00
"Piwik" +
sha384(config.t_url);
2022-07-25 07:45:34 -04:00
// channel info
const engagement = fetching.engagement;
2022-08-16 12:32:45 -04:00
const channel = await fetch(
2022-09-18 11:20:19 -04:00
config.tubeApi + `channel?id=${k.Video.Channel.id}&tab=videos`
2022-08-16 12:32:45 -04:00
);
2022-07-13 08:35:18 -04:00
const c = await channel.text();
const tj = JSON.parse(toJson(c));
2022-09-24 16:52:20 -04:00
// about
const abtchnl = await fetch(
config.tubeApi + `channel?id=${k.Video.Channel.id}&tab=about`
);
const ab = await abtchnl.text();
const a = JSON.parse(toJson(ab));
2022-07-25 07:45:34 -04:00
2022-09-24 16:52:20 -04:00
const desc = a.Channel.Contents.ItemSection.About.Description;
var d = desc.toString().replace(/\n/g, " <br> ");
if (d === "[object Object]") {
var d = false;
}
2022-08-16 12:32:45 -04:00
2022-09-18 11:20:19 -04:00
const summary = await wiki.summary(k.Video.Channel.Name);
2022-09-17 12:22:47 -04:00
2022-09-21 02:36:21 -04:00
var w = "";
if (summary.title === "Not found.") {
w = "none";
}
if (summary.title !== "Not found.") {
w = summary;
}
2022-09-24 16:52:20 -04:00
/***********
* URL = Video URl
* color= embed color
* engagement = engagement data
* video = video json info
* date = upload date
* e = embed
* k = player
* process = process information
* sha384 = encryption
* isMobile = to check if its mobile or not
* tj = channel videos page
* r = recommended videos
* qua = quality obv
* ip = ip info
2022-09-25 02:18:44 -04:00
* convert = formats a number
2022-09-24 16:52:20 -04:00
* wiki = wikipedia info
* f = recent videos from this channel
* t = default piwik url
* optout = piwik optout
* badges = channel badges
* desc = channel description
* comments = comment size
* nnn = nigthly stuff
*/
2022-09-21 02:36:21 -04:00
renderTemplate(res, req, "poketube.ejs", {
2022-08-07 09:30:00 -04:00
url: url_e,
2022-09-24 16:52:20 -04:00
color: await getColors( `https://i.ytimg.com/vi/${v}/maxresdefault.jpg` ).then((colors) => colors[0].hex()),
engagement: engagement,
video: json,
2022-06-23 11:36:44 -04:00
date: moment(k.Video.uploadDate).format("LL"),
e: e,
k: k,
2022-09-21 02:36:21 -04:00
process: process,
2022-08-16 12:32:45 -04:00
sha384: sha384,
isMobile: req.useragent.isMobile,
tj: tj,
r: r,
qua: q,
2022-09-21 02:36:21 -04:00
ip: ip,
2022-09-22 07:46:56 -04:00
convert: convert,
2022-09-21 02:36:21 -04:00
wiki: w,
2022-08-16 12:32:45 -04:00
f: f,
t: config.t_url,
optout: t,
2022-09-21 02:36:21 -04:00
badges: badges,
2022-09-24 16:52:20 -04:00
desc:desc,
2022-09-21 02:36:21 -04:00
comments: comments,
2022-09-22 07:46:56 -04:00
n: nnn,
2022-08-19 17:32:38 -04:00
lyrics: "",
2022-08-16 12:32:45 -04:00
});
});
app.get("/music", async function (req, res) {
/*
* QUERYS
* v = Video ID
* e = Embed
* r = Recommended videos
* f = Recent videos from channel
* t = Piwik OptOut
* q = quality obv
*/
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;
2022-08-19 17:32:38 -04:00
2022-08-22 00:31:22 -04:00
const info = await fetch("http://ip-api.com/json/");
const n = await info.text();
const ip = JSON.parse(n);
2022-09-21 02:36:21 -04:00
2022-08-18 17:06:09 -04:00
if (!v) res.redirect("/");
2022-08-16 12:32:45 -04:00
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));
2022-08-19 17:32:38 -04:00
2022-09-23 07:25:02 -04:00
if (!k.Video.Channel.Name.endsWith(" - Topic")) {
2022-08-16 12:32:45 -04:00
res.redirect(`/watch?v=${v}`);
}
2022-08-19 17:32:38 -04:00
2022-08-16 12:32:45 -04:00
//video
var url = `https://tube.kuylar.dev/proxy/media/${v}/18`;
2022-09-23 07:25:02 -04:00
2022-08-16 12:32:45 -04:00
// encryption
2022-08-19 17:32:38 -04:00
const url_e =
url +
"?e=" +
2022-09-23 07:25:02 -04:00
sha384(k.Video.Channel.id) +
sha384(k.Video.Channel.id) +
2022-08-19 17:32:38 -04:00
"Piwik" +
sha384(config.t_url);
2022-08-16 12:32:45 -04:00
2022-09-23 07:25:02 -04:00
2022-08-16 12:32:45 -04:00
// channel info
const engagement = fetching.engagement;
const channel = await fetch(
2022-09-23 07:25:02 -04:00
config.tubeApi + `channel?id=${k.Video.Channel.id}&tab=videos`
2022-08-16 12:32:45 -04:00
);
const c = await channel.text();
const tj = JSON.parse(toJson(c));
2022-08-18 17:06:09 -04:00
// info
2022-08-22 00:31:22 -04:00
const song = await musicInfo.searchSong(
2022-09-23 07:25:02 -04:00
{ title: k.Video.Title, artist: k.Video.Channel.Name.replace("- Topic", "") },
2022-08-19 17:32:38 -04:00
1000
);
2022-08-25 06:12:57 -04:00
2022-09-21 02:36:21 -04:00
if (!song) {
2022-08-25 06:12:57 -04:00
res.redirect(`/watch?v=${v}`);
}
2022-08-19 17:32:38 -04:00
var lyrics = await musicInfo
2022-08-22 00:31:22 -04:00
.searchLyrics({ title: song.title, artist: song.artist })
2022-08-19 17:32:38 -04:00
.catch(() => null);
2022-09-21 02:36:21 -04:00
2022-08-19 17:32:38 -04:00
var ly = "";
2022-09-21 02:36:21 -04:00
2022-08-19 17:32:38 -04:00
if (lyrics === null) {
ly = "This Is Where I'd Put The songs lyrics. IF IT HAD ONE ";
}
if (lyrics) {
ly = lyrics.lyrics.replace(/\n/g, " <br> ");
}
2022-08-16 12:32:45 -04:00
renderTemplate(res, req, "poketube-music.ejs", {
url: url_e,
2022-08-22 00:31:22 -04:00
info: song,
2022-08-16 12:32:45 -04:00
color: await getColors(
`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`
).then((colors) => colors[0].hex()),
engagement: engagement,
2022-09-21 02:36:21 -04:00
process: process,
ip: ip,
2022-08-16 12:32:45 -04:00
video: json,
date: moment(k.Video.uploadDate).format("LL"),
e: e,
k: k,
sha384: sha384,
isMobile: req.useragent.isMobile,
2022-07-13 08:35:18 -04:00
tj: tj,
r: r,
2022-07-13 08:35:18 -04:00
f: f,
t: config.t_url,
optout: t,
2022-08-19 17:32:38 -04:00
lyrics: ly,
2022-02-23 13:54:21 -05:00
});
});
2022-06-22 05:52:00 -04:00
2022-07-12 13:06:02 -04:00
app.get("/download", async function (req, res) {
var v = req.query.v;
2022-07-25 07:45:34 -04:00
// video
2022-07-12 13:06:02 -04:00
const video = await fetch(config.tubeApi + `video?v=${v}`);
const h = await video.text();
const k = JSON.parse(toJson(h));
2022-07-25 07:45:34 -04:00
2022-07-12 13:06:02 -04:00
if (!v) res.redirect("/");
2022-07-25 07:45:34 -04:00
2022-07-12 13:06:02 -04:00
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;
2022-07-25 07:45:34 -04:00
2022-07-12 13:06:02 -04:00
const json = fetching.video.Player;
const engagement = fetching.engagement;
2022-07-13 08:35:18 -04:00
2022-07-12 13:06:02 -04:00
renderTemplate(res, req, "download.ejs", {
url: url,
engagement: engagement,
k: k,
video: json,
2022-07-16 06:03:46 -04:00
date: k.Video.uploadDate,
2022-08-16 12:32:45 -04:00
color: await getColors(
`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`
).then((colors) => colors[0].hex()),
2022-07-10 17:41:52 -04:00
});
});
2022-06-22 05:52:00 -04:00
app.get("/old/watch", async function (req, res) {
var v = req.query.v;
var e = req.query.e;
if (!v) res.redirect("/");
2022-09-21 02:36:21 -04:00
res.redirect(`/watch?v=${v}`);
2022-06-22 05:52:00 -04:00
});
2022-07-25 07:45:34 -04:00
2022-09-21 02:36:21 -04:00
app.get("/search", async (req, res) => {
const { toJson } = require("xml2json");
const query = req.query.query;
2022-09-25 12:04:25 -04:00
2022-09-25 13:16:30 -04:00
if(req.query.continuation){ var continuation = req.query.continuation }
if(!req.query.continuation){ var continuation = "" }
const search = await fetch(`https://tube.kuylar.dev/api/search?query=${query}&continuation=${continuation}`);
2022-09-21 02:36:21 -04:00
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,
2022-07-18 08:23:18 -04:00
});
});
2022-07-25 07:45:34 -04:00
2022-09-21 02:36:21 -04:00
app.get("/channel/", async (req, res) => {
2022-06-22 05:52:00 -04:00
const ID = req.query.id;
2022-09-21 04:50:15 -04:00
const tab = req.query.tab;
2022-09-22 06:05:32 -04:00
2022-07-25 07:45:34 -04:00
// about
const bout = await fetch(config.tubeApi + `channel?id=${ID}&tab=about`);
2022-06-08 13:28:48 -04:00
const h = await bout.text();
const k = JSON.parse(toJson(h));
2022-07-25 07:45:34 -04:00
2022-09-25 13:16:30 -04:00
if(req.query.continuation){ var continuation = req.query.continuation }
if(!req.query.continuation){ var continuation = "" }
2022-09-25 13:24:58 -04:00
//videos
const channel = await fetch(config.tubeApi + `channel?id=${ID}&tab=videos&Continuation=${continuation}`);
const c = await channel.text();
const tj = JSON.parse(toJson(c));
2022-09-25 13:16:30 -04:00
2022-09-21 04:50:15 -04:00
const summary = await wiki.summary(k.Channel.Metadata.Name);
2022-07-25 07:45:34 -04:00
2022-09-21 04:50:15 -04:00
var w = "";
if (summary.title === "Not found.") {
w = "none";
}
if (summary.title !== "Not found.") {
w = summary;
}
2022-09-22 06:05:32 -04:00
2022-06-08 13:28:48 -04:00
const { Subscribers: subscribers } = k.Channel.Metadata;
2022-09-22 06:05:32 -04:00
const description = k.Channel.Contents.ItemSection.About.Description;
var d = description.toString().replace(/\n/g, " <br> ");
if (d === "[object Object]") {
var d = "";
}
2022-05-17 16:18:32 -04:00
renderTemplate(res, req, "channel.ejs", {
ID: ID,
2022-09-21 04:50:15 -04:00
tab: tab,
j: k,
tj: tj,
2022-09-25 13:16:30 -04:00
continuation:continuation,
2022-09-21 04:50:15 -04:00
wiki: w,
2022-09-23 07:25:02 -04:00
getFirstLine:getFirstLine,
2022-09-21 08:33:49 -04:00
isMobile: req.useragent.isMobile,
about: k.Channel.Contents.ItemSection.About,
subs:
typeof subscribers === "string"
? subscribers.replace("subscribers", "")
: "Private",
2022-09-22 06:05:32 -04:00
desc: d,
});
});
2022-07-27 18:17:05 -04:00
2022-09-21 02:36:21 -04:00
///////////// STATIC /////////////
2022-05-17 16:18:32 -04:00
app.get("/privacy", function (req, res) {
renderTemplate(res, req, "priv.ejs");
2022-03-07 11:09:55 -05:00
});
2022-07-27 18:17:05 -04:00
app.get("/143", function (req, res) {
renderTemplate(res, req, "143.ejs");
});
2022-07-27 18:17:05 -04:00
2022-03-07 11:09:55 -05:00
app.get("/domains", function (req, res) {
renderTemplate(res, req, "domains.ejs");
});
2022-09-21 02:36:21 -04:00
2022-07-29 08:26:00 -04:00
app.get("/license", function (req, res) {
renderTemplate(res, req, "license.ejs");
});
2022-02-23 13:54:21 -05:00
app.get("/css/:id", (req, res) => {
res.sendFile(__dirname + `/css/${req.params.id}`);
});
2022-07-25 07:45:34 -04:00
2022-07-15 09:29:02 -04:00
app.get("/js/:id", (req, res) => {
res.sendFile(__dirname + `/js/${req.params.id}`);
});
2022-07-25 07:45:34 -04:00
2022-03-06 08:52:37 -05:00
app.get("/video/upload", (req, res) => {
2022-07-27 18:17:05 -04:00
res.redirect("https://youtube.com/upload");
});
2022-07-25 07:45:34 -04:00
2022-09-21 02:36:21 -04:00
///////////// API /////////////
app.get("/embed/:v", async function (req, res) {
2022-09-22 06:05:32 -04:00
var e = req.query.e;
var f = req.query.f;
var t = req.query.t;
var q = req.query.quality;
2022-09-21 02:36:21 -04:00
var v = req.params.v;
2022-09-22 06:05:32 -04:00
var fetching = await fetcher(v);
const video = await fetch(config.tubeApi + `video?v=${v}`);
const json = fetching.video.Player;
const h = await video.text();
const k = JSON.parse(toJson(h));
const engagement = fetching.engagement;
if (!v) res.redirect("/");
//video
if (!q) url = `https://tube.kuylar.dev/proxy/media/${v}/22`;
if (q === "medium") {
var url = `https://tube.kuylar.dev/proxy/media/${v}/18`;
}
renderTemplate(res, req, "poketube-iframe.ejs", {
video: json,
url: url,
sha384: sha384,
qua: q,
engagement: engagement,
optout: t,
t: config.t_url,
});
2022-09-21 02:36:21 -04:00
});
app.get("/api/search", async (req, res) => {
const query = req.query.query;
if (!query) {
return res.redirect("/");
}
return res.redirect(`/search?query=${query}`);
2022-07-15 09:29:02 -04:00
});
2022-07-25 07:45:34 -04:00
2022-03-27 05:43:29 -04:00
app.get("/api/video/download", async function (req, res) {
var v = req.query.v;
2022-08-07 11:31:07 -04:00
2022-08-16 12:32:45 -04:00
var format = "mp4";
2022-08-07 11:31:07 -04:00
var q = "22";
if (req.query.q) q = req.query.q;
2022-08-16 12:32:45 -04:00
if (req.query.f) {
var format = "mp3";
2022-08-08 14:35:48 -04:00
}
var fetching = await fetcher(v);
2022-08-07 11:31:07 -04:00
2022-08-07 09:16:59 -04:00
const json = fetching.video.Player;
2022-08-16 12:32:45 -04:00
2022-08-08 14:35:48 -04:00
const url = `https://tube.kuylar.dev/proxy/download/${v}/${q}/${json.Title}.${format}`;
2022-08-07 11:31:07 -04:00
2022-08-16 12:32:45 -04:00
res.redirect(url);
});
2022-07-27 18:17:05 -04:00
2022-05-17 16:18:32 -04: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-07-13 08:35:18 -04:00
2022-09-21 02:36:21 -04:00
app.get("/api/subtitles", async (req, res) => {
const id = req.query.v;
const l = req.query.h;
const url = `https://tube.kuylar.dev/proxy/caption/${id}/${l}/`;
let f = await fetch(url);
const body = await f.text();
res.send(body);
});
app.get("/api/opensearch", async (req, res) => {
res.sendFile(__dirname + `/opensearch.xml`);
});
///////////// REDIRECTS / DEPRACATED /////////////
app.get("/discover", async function (req, res) {
res.redirect("/");
});
app.get("/video/upload", (req, res) => {
res.redirect("https://youtube.com/upload");
});
///////////// 404 AND MAIN PAGES ETC /////////////
app.get("/", 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,
isMobile: req.useragent.isMobile,
});
});
app.get("*", function (req, res) {
const things = random_words[Math.floor(Math.random() * random_words.length)];
2022-03-11 15:52:04 -05:00
renderTemplate(res, req, "404.ejs", {
random: things,
});
});
2022-07-10 17:41:52 -04:00
2022-09-22 06:05:32 -04:00
////////////////////////////////////////////////////
2022-09-21 02:36:21 -04:00
2022-07-25 07:45:34 -04:00
// listen
2022-07-10 17:41:52 -04:00
app.listen("3000", () => {});