2023-03-12 07:41:06 +01:00
|
|
|
/*
|
2022-10-09 12:37:45 +02:00
|
|
|
|
2022-10-09 14:58:53 +02:00
|
|
|
PokeTube is a Free/Libre youtube front-end !
|
2022-10-09 12:37:45 +02:00
|
|
|
|
2023-01-11 17:24:54 +01:00
|
|
|
Copyright (C) 2021-2023 POKETUBE
|
2022-10-09 12:37:45 +02:00
|
|
|
|
|
|
|
This file is Licensed under LGPL-3.0-or-later. Poketube itself is GPL, Only this file is LGPL.
|
|
|
|
|
|
|
|
see a copy here:https://www.gnu.org/licenses/lgpl-3.0.txt
|
2022-10-12 16:40:31 +02:00
|
|
|
|
|
|
|
please dont remove this comment while sharing this code
|
|
|
|
|
2022-10-09 14:58:53 +02:00
|
|
|
*/
|
|
|
|
|
2022-10-09 12:37:45 +02:00
|
|
|
const fetch = require("node-fetch");
|
|
|
|
const { toJson } = require("xml2json");
|
2023-03-12 07:41:06 +01:00
|
|
|
const { curly } = require("node-libcurl");
|
2022-10-09 12:37:45 +02:00
|
|
|
|
2022-10-27 11:30:49 +02:00
|
|
|
const fetcher = require("../libpoketube/libpoketube-fetcher.js");
|
2022-10-09 12:37:45 +02:00
|
|
|
const getColors = require("get-image-colors");
|
|
|
|
|
|
|
|
const wiki = require("wikipedia");
|
2023-03-24 21:54:46 +01:00
|
|
|
const sqp = "-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw";
|
2022-10-09 12:37:45 +02:00
|
|
|
|
|
|
|
const config = {
|
2023-03-09 16:48:55 +01:00
|
|
|
tubeApi: "https://inner-api.poketube.fun/api/",
|
|
|
|
invapi: "https://invid-api.poketube.fun/api/v1",
|
2022-10-09 12:37:45 +02:00
|
|
|
dislikes: "https://returnyoutubedislikeapi.com/votes?videoId=",
|
2022-10-09 14:58:53 +02:00
|
|
|
t_url: "https://t.poketube.fun/", // def matomo url
|
2022-10-09 12:37:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Util functions
|
2022-10-09 14:30:08 +02:00
|
|
|
function getJson(str) {
|
2022-10-09 12:37:45 +02:00
|
|
|
try {
|
2022-11-16 18:32:02 +01:00
|
|
|
return JSON.parse(str);
|
2022-10-09 14:30:08 +02:00
|
|
|
} catch {
|
|
|
|
return null;
|
2022-10-09 12:37:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-18 15:11:24 +01:00
|
|
|
function checkUnexistingObject(obj) {
|
2022-12-25 17:42:08 +01:00
|
|
|
if (obj) {
|
|
|
|
if ("authorId" in obj) {
|
|
|
|
return true;
|
|
|
|
}
|
2022-12-16 20:11:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-09 12:37:45 +02:00
|
|
|
/*
|
|
|
|
* Api functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
async function channel(id, cnt) {
|
2022-10-09 14:30:08 +02:00
|
|
|
if (id == null) return "Gib ID";
|
2022-10-09 12:37:45 +02:00
|
|
|
|
2022-10-09 14:30:08 +02:00
|
|
|
const videos = await fetch(
|
|
|
|
`${config.tubeApi}channel?id=${id}&tab=videos&continuation=${cnt || ""}`
|
|
|
|
)
|
|
|
|
.then((res) => res.text())
|
2022-11-16 17:58:03 +01:00
|
|
|
.then((xml) => getJson(toJson(xml)));
|
2022-10-09 12:37:45 +02:00
|
|
|
|
2022-10-09 14:30:08 +02:00
|
|
|
const about = await fetch(`${config.tubeApi}channel?id=${id}&tab=about`)
|
|
|
|
.then((res) => res.text())
|
2022-11-16 17:58:03 +01:00
|
|
|
.then((xml) => getJson(toJson(xml)));
|
2022-10-09 12:37:45 +02:00
|
|
|
|
2022-10-09 14:30:08 +02:00
|
|
|
return { videos, about };
|
2022-10-09 12:37:45 +02:00
|
|
|
}
|
|
|
|
|
2023-03-03 18:41:19 +01:00
|
|
|
const cache = {};
|
|
|
|
|
2022-10-09 12:37:45 +02:00
|
|
|
async function video(v) {
|
2022-11-16 17:58:03 +01:00
|
|
|
if (v == null) return "Gib ID";
|
2022-12-18 15:11:24 +01:00
|
|
|
|
2023-03-03 18:41:19 +01:00
|
|
|
// Check if result is already cached
|
2023-03-12 07:41:06 +01:00
|
|
|
if (cache[v] && Date.now() - cache[v].timestamp < 3600000) {
|
2023-03-03 18:41:19 +01:00
|
|
|
console.log("Returning cached result");
|
|
|
|
return cache[v].result;
|
|
|
|
}
|
|
|
|
|
2022-12-18 15:11:24 +01:00
|
|
|
let nightlyRes;
|
2022-12-20 21:19:02 +01:00
|
|
|
var desc = "";
|
2023-03-12 07:41:06 +01:00
|
|
|
|
2023-01-24 10:01:44 +01:00
|
|
|
try {
|
2023-03-05 14:28:34 +01:00
|
|
|
var inv_comments = await fetch(`${config.invapi}/comments/${v}`).then(
|
2023-01-24 10:01:44 +01:00
|
|
|
(res) => res.text()
|
|
|
|
);
|
2022-10-09 12:37:45 +02:00
|
|
|
|
2023-01-24 10:01:44 +01:00
|
|
|
var comments = await getJson(inv_comments);
|
2023-03-11 17:03:14 +01:00
|
|
|
} catch (error) {
|
|
|
|
console.error("Error getting comments", error);
|
2023-01-24 10:01:44 +01:00
|
|
|
var comments = "";
|
|
|
|
}
|
2023-03-12 07:41:06 +01:00
|
|
|
|
2023-03-03 18:41:19 +01:00
|
|
|
let vid;
|
2023-01-24 10:10:06 +01:00
|
|
|
|
2023-03-11 17:03:14 +01:00
|
|
|
try {
|
2023-03-12 07:41:06 +01:00
|
|
|
const videoInfo = await fetch(`${config.invapi}/videos/${v}`).then((res) =>
|
|
|
|
res.text()
|
|
|
|
);
|
2023-03-11 17:03:14 +01:00
|
|
|
vid = await getJson(videoInfo);
|
|
|
|
} catch (error) {
|
|
|
|
console.error("Error getting video info", error);
|
|
|
|
}
|
2023-03-12 07:41:06 +01:00
|
|
|
|
2023-03-03 18:41:19 +01:00
|
|
|
if (!vid) {
|
2023-03-12 07:41:06 +01:00
|
|
|
console.log(
|
|
|
|
`Sorry nya, we couldn't find any information about that video qwq`
|
|
|
|
);
|
2023-03-03 18:41:19 +01:00
|
|
|
}
|
2023-02-25 18:08:54 +01:00
|
|
|
|
2022-12-18 15:11:24 +01:00
|
|
|
if (checkUnexistingObject(vid)) {
|
2022-12-21 16:38:26 +01:00
|
|
|
var a;
|
2022-12-24 11:48:55 +01:00
|
|
|
|
2022-12-21 16:38:26 +01:00
|
|
|
try {
|
2022-12-24 11:48:55 +01:00
|
|
|
var a = await fetch(
|
|
|
|
`${config.tubeApi}channel?id=${vid.authorId}&tab=about`
|
|
|
|
)
|
|
|
|
.then((res) => res.text())
|
|
|
|
.then((xml) => getJson(toJson(xml)));
|
2023-03-11 17:03:14 +01:00
|
|
|
} catch (error) {
|
|
|
|
console.error("Error getting channel info", error);
|
2022-12-24 11:48:55 +01:00
|
|
|
var a = "";
|
2022-12-21 16:38:26 +01:00
|
|
|
}
|
2022-12-24 11:48:55 +01:00
|
|
|
|
2022-12-18 15:11:24 +01:00
|
|
|
|
2022-12-20 21:19:02 +01:00
|
|
|
desc = a.Channel?.Contents?.ItemSection?.About?.Description;
|
2022-12-18 15:11:24 +01:00
|
|
|
|
2023-03-12 07:41:06 +01:00
|
|
|
const fe = await fetcher(v);
|
2022-12-18 15:11:24 +01:00
|
|
|
|
|
|
|
const nightlyJsonData = getJson(nightlyRes);
|
2023-03-03 18:41:19 +01:00
|
|
|
|
2023-03-11 17:03:14 +01:00
|
|
|
try {
|
2023-03-26 14:31:06 +02:00
|
|
|
|
|
|
|
const summary = await wiki
|
|
|
|
.summary(vid.author + " ")
|
|
|
|
.then((summary_) =>
|
|
|
|
summary_.title !== "Not found." ? summary_ : "none"
|
|
|
|
);
|
|
|
|
|
2023-03-12 07:41:06 +01:00
|
|
|
const headers = {};
|
|
|
|
|
|
|
|
var { data } = await curly.get(`${config.tubeApi}video?v=${v}`, {
|
|
|
|
httpHeader: Object.entries(headers).map(([k, v]) => `${k}: ${v}`),
|
|
|
|
});
|
|
|
|
var json = toJson(data);
|
|
|
|
const video = getJson(json);
|
2023-03-11 17:03:14 +01:00
|
|
|
|
|
|
|
// Store result in cache
|
|
|
|
cache[v] = {
|
|
|
|
result: {
|
2023-03-12 07:41:06 +01:00
|
|
|
json: fe?.video?.Player,
|
2023-03-11 17:03:14 +01:00
|
|
|
video,
|
|
|
|
vid,
|
|
|
|
comments,
|
2023-03-12 07:41:06 +01:00
|
|
|
engagement: fe.engagement,
|
2023-03-11 17:03:14 +01:00
|
|
|
wiki: summary,
|
|
|
|
desc: desc,
|
|
|
|
color: await getColors(
|
|
|
|
`https://i.ytimg.com/vi/${v}/hqdefault.jpg?sqp=${sqp}`
|
|
|
|
).then((colors) => colors[0].hex()),
|
|
|
|
color2: await getColors(
|
|
|
|
`https://i.ytimg.com/vi/${v}/hqdefault.jpg?sqp=${sqp}`
|
|
|
|
).then((colors) => colors[1].hex()),
|
|
|
|
},
|
2023-03-12 07:41:06 +01:00
|
|
|
timestamp: Date.now(),
|
2023-03-11 17:03:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
return cache[v].result;
|
|
|
|
} catch (error) {
|
|
|
|
console.error("Error getting video", error);
|
|
|
|
}
|
2022-12-16 20:11:53 +01:00
|
|
|
}
|
2022-10-09 12:37:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function search(query, cnt) {
|
2022-10-09 14:30:08 +02:00
|
|
|
if (query == null) return "Gib Query";
|
2022-10-09 12:37:45 +02:00
|
|
|
|
2022-10-09 14:30:08 +02:00
|
|
|
const data = await fetch(
|
|
|
|
`${config.tubeApi}search?query=${query}&continuation=${cnt || ""}`
|
|
|
|
)
|
|
|
|
.then((res) => res.text())
|
2022-11-16 17:58:03 +01:00
|
|
|
.then((xml) => getJson(toJson(xml)));
|
2022-10-09 12:37:45 +02:00
|
|
|
|
2022-10-09 14:30:08 +02:00
|
|
|
return data;
|
2022-10-09 12:37:45 +02:00
|
|
|
}
|
|
|
|
|
2022-11-07 17:49:21 +01:00
|
|
|
async function isvalidvideo(v) {
|
2023-03-24 21:54:46 +01:00
|
|
|
if (v != "assets") {
|
2022-12-18 15:11:24 +01:00
|
|
|
return true;
|
2023-03-24 21:54:46 +01:00
|
|
|
} else {
|
|
|
|
return false;
|
2022-12-18 15:11:24 +01:00
|
|
|
}
|
2023-03-24 21:54:46 +01:00
|
|
|
}
|
2022-11-07 17:49:21 +01:00
|
|
|
|
2022-10-09 12:37:45 +02:00
|
|
|
module.exports = {
|
|
|
|
search,
|
|
|
|
video,
|
2022-11-07 17:49:21 +01:00
|
|
|
isvalidvideo,
|
2022-10-09 14:58:53 +02:00
|
|
|
channel,
|
2022-10-12 17:03:43 +02:00
|
|
|
};
|