mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 02:14:39 -05:00
use youtubei.js for comments
This commit is contained in:
parent
a4ab2adcc5
commit
9363f5481c
1 changed files with 8 additions and 4 deletions
|
@ -11,6 +11,8 @@ 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');
|
||||
|
||||
|
||||
/**
|
||||
* Class representing PokeTube's core functionality.
|
||||
|
@ -69,6 +71,7 @@ class InnerTubePokeVidious {
|
|||
async getYouTubeApiVideo(f, v, contentlang, contentregion) {
|
||||
|
||||
const { fetch } = await import("undici");
|
||||
const yt = await Innertube.create({ cache: new UniversalCache(false), generate_session_locally: true });
|
||||
|
||||
if (v == null) return "Gib ID";
|
||||
|
||||
|
@ -81,8 +84,7 @@ class InnerTubePokeVidious {
|
|||
let desc = "";
|
||||
|
||||
try {
|
||||
const [invComments, videoInfo, videoData] = await Promise.all([
|
||||
fetch(`${this.config.invapi}/comments/${v}?hl=${contentlang}®ion=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()),
|
||||
const [videoInfo, videoData] = await Promise.all([
|
||||
fetch(`${this.config.invapi}/videos/${v}?hl=${contentlang}®ion=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()),
|
||||
curly
|
||||
.get(`${this.config.tubeApi}video?v=${v}`, {
|
||||
|
@ -95,7 +97,9 @@ class InnerTubePokeVidious {
|
|||
}),
|
||||
]);
|
||||
|
||||
const comments = await this.getJson(invComments);
|
||||
|
||||
const comments = await yt.getComments(v);
|
||||
|
||||
const vid = await this.getJson(videoInfo);
|
||||
const { json, video } = videoData;
|
||||
|
||||
|
|
Loading…
Reference in a new issue