fix issues

This commit is contained in:
Ashley //// 2024-04-22 11:36:54 +00:00
parent f593fbd876
commit 72f2c1b862

View file

@ -10,8 +10,9 @@ const { toJson } = require("xml2json");
const { curly } = require("node-libcurl");
const getdislikes = require("../libpoketube/libpoketube-dislikes.js");
const getColors = require("get-image-colors");
const config = require("../../config.json");
const { Innertube, UniversalCache } = require("youtubei.js");
const config = require("../../config.json")
const { Innertube, UniversalCache } = require('youtubei.js');
/**
* Class representing PokeTube's core functionality.
@ -30,11 +31,10 @@ class InnerTubePokeVidious {
this.config = config;
this.cache = {};
this.language = "hl=en-US";
this.apikey = "AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8";
this.INNERTUBE_CONTEXT_CLIENT_VERSION = "1";
this.apikey = "AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8"
this.INNERTUBE_CONTEXT_CLIENT_VERSION = "1"
this.region = "region=US";
this.sqp =
"-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw";
this.sqp = "-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw";
}
/**
@ -69,26 +69,9 @@ class InnerTubePokeVidious {
* @returns {Promise<object>} Promise resolving to the video information.
*/
async getYouTubeApiVideo(f, v, contentlang, contentregion) {
/**
* Fetch data from the specified URL with the given headers.
* @param {string} url - The URL to fetch data from.
* @param {Object} headers - The headers to include in the fetch request.
* @returns {Promise<string>} A promise that resolves to the text content of the response.
*/
async function fetchData(url, headers) {
/**
* @type {Response}
*/
const response = await fetch(url, { headers });
return response.text();
}
const { fetch } = await import("undici");
const yt = await Innertube.create({
cache: new UniversalCache(false),
generate_session_locally: true,
});
const yt = await Innertube.create({ cache: new UniversalCache(false), generate_session_locally: true });
if (v == null) return "Gib ID";
@ -102,7 +85,7 @@ class InnerTubePokeVidious {
try {
const [videoInfo, videoData] = await Promise.all([
fetchData(`${this.config.invapi}/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`),
fetch(`${this.config.invapi}/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()),
curly
.get(`${this.config.tubeApi}video?v=${v}`, {
httpHeader: Object.entries(headers).map(([k, v]) => `${k}: ${v}`),
@ -114,12 +97,13 @@ class InnerTubePokeVidious {
}),
]);
const comments = await yt.getComments(v);
const vid = await this.getJson(videoInfo);
const { json, video } = videoData;
var channel_uploads = {};
var channel_uploads = { };
if (f == "true") {
channel_uploads = await fetch(
`${this.config.invapi}/channels/${vid.authorId}?hl=${contentlang}&region=${contentregion}`
@ -165,8 +149,11 @@ class InnerTubePokeVidious {
this.initError("Error getting video", error);
}
}
} catch {}
} catch {
}
}
/**
* Check if a video ID is valid.
@ -195,10 +182,7 @@ class InnerTubePokeVidious {
const pokeTubeApiCore = new InnerTubePokeVidious({
tubeApi: "https://inner-api.poketube.fun/api/",
invapi: "https://invid-api.poketube.fun/api/v1",
invapi_alt:
config.proxylocation === "EU"
? "https://invid-api.poketube.fun/api/v1"
: "https://iv.ggtyler.dev/api/v1",
invapi_alt: config.proxylocation === "EU" ? "https://invid-api.poketube.fun/api/v1" : "https://iv.ggtyler.dev/api/v1",
dislikes: "https://returnyoutubedislikeapi.com/votes?videoId=",
t_url: "https://t.poketube.fun/",
});