poke/src/libpoketube/libpoketube-video.js

77 lines
2.1 KiB
JavaScript
Raw Normal View History

2023-01-10 16:59:43 +01:00
/*
PokeTube is a Free/Libre youtube front-end !
Copyright (C) 2021-2023 POKETUBE
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
please dont remove this comment while sharing this code
2023-02-25 18:48:15 +01:00
*/
2023-01-10 16:59:43 +01:00
const {
fetcher,
core,
wiki,
musicInfo,
modules,
version,
initlog,
init,
} = require("./libpoketube-initsys.js");
const {
IsJsonString,
convert,
getFirstLine,
capitalizeFirstLetter,
turntomins,
getRandomInt,
getRandomArbitrary,
} = require("./ptutils/libpt-coreutils.js");
module.exports = async function (video_id) {
2023-02-25 18:48:15 +01:00
// function to convert an array to an object, ignoring undefined values
2023-01-10 16:59:43 +01:00
function toObject(arr) {
2023-02-25 18:48:15 +01:00
return arr.reduce((acc, cur, i) => {
if (cur !== undefined) {
acc[i] = cur;
}
return acc;
}, {});
2023-01-10 16:59:43 +01:00
}
// gets invidious instances
const invInstanceList = require("./invapi.json");
2023-01-10 16:59:43 +01:00
// gets random instances from the list
const instance =
invInstanceList[Math.floor(Math.random() * invInstanceList.length)];
2023-01-10 16:59:43 +01:00
let url;
if (instance[1].type != "https") {
2023-03-19 19:00:32 +01:00
url = "https://invidious.lunar.icu";
} else {
2023-03-19 19:00:32 +01:00
//replaces bad proxys (e.g the proxys that do not support media proxys, or the proxys that are down )
url = instance[1].uri
2023-03-19 19:00:32 +01:00
.replace("invidious.tiekoetter.com", "inv.odyssey346.dev")
.replace("invidious.slipfox.xyz", "invidious.lunar.icu")
.replace("yewtu.be", "invidious.lunar.icu")
.replace("iv.melmac.space", "inv.vern.cc")
.replace("yt.oelrichsgarcia.de", "y.com.sb")
2023-03-20 21:17:04 +01:00
.replace("yt.funami.tech", "y.com.sb")
2023-03-19 19:00:32 +01:00
.replace("invidious.lidarshield.cloud", "inv.odyssey346.dev")
.replace("vid.priv.au", "inv.vern.cc")
2023-03-20 21:17:04 +01:00
.replace("invidious.privacydev.net", "inv.vern.cc")
2023-03-19 19:00:32 +01:00
.replace("watch.thekitty.zone", "y.com.sb")
.replace("invidious.snopyta.org", "inv.odyssey346.dev")
.replace("invidious.weblibre.org", "invidious.lunar.icu")
.replace("invidious.sethforprivacy.com", "y.com.sb")
2023-02-05 13:30:17 +01:00
}
return url;
2023-01-10 16:59:43 +01:00
};