mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 11:38:25 +01:00
Update 'src/pt-api.js'
This commit is contained in:
parent
331c87d1b7
commit
bdd1ee952b
1 changed files with 12 additions and 1 deletions
|
@ -7,6 +7,9 @@
|
||||||
This file is Licensed under LGPL-3.0-or-later. Poketube itself is GPL, Only this file is LGPL.
|
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
|
see a copy here:https://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
|
||||||
|
please dont remove this comment while sharing this code
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const fetch = require("node-fetch");
|
const fetch = require("node-fetch");
|
||||||
|
@ -19,6 +22,7 @@ const wiki = require("wikipedia");
|
||||||
|
|
||||||
const config = {
|
const config = {
|
||||||
tubeApi: "https://tube.kuylar.dev/api/",
|
tubeApi: "https://tube.kuylar.dev/api/",
|
||||||
|
invapi: "https://inv.vern.cc/api/v1",
|
||||||
dislikes: "https://returnyoutubedislikeapi.com/votes?videoId=",
|
dislikes: "https://returnyoutubedislikeapi.com/votes?videoId=",
|
||||||
t_url: "https://t.poketube.fun/", // def matomo url
|
t_url: "https://t.poketube.fun/", // def matomo url
|
||||||
};
|
};
|
||||||
|
@ -77,6 +81,12 @@ async function video(v) {
|
||||||
.then((res) => res.text())
|
.then((res) => res.text())
|
||||||
.then((xml) => JSON.parse(toJson(xml)));
|
.then((xml) => JSON.parse(toJson(xml)));
|
||||||
|
|
||||||
|
var i = await fetch(`${config.invapi}/comments/${v}`).then((res) =>
|
||||||
|
res.text()
|
||||||
|
);
|
||||||
|
|
||||||
|
var inv = await JSON.parse(i);
|
||||||
|
|
||||||
const c = await channel(video.Video.Channel.id);
|
const c = await channel(video.Video.Channel.id);
|
||||||
|
|
||||||
const summary = await wiki
|
const summary = await wiki
|
||||||
|
@ -90,6 +100,7 @@ async function video(v) {
|
||||||
return {
|
return {
|
||||||
json: data.video.Player,
|
json: data.video.Player,
|
||||||
video,
|
video,
|
||||||
|
inv,
|
||||||
engagement: data.engagement,
|
engagement: data.engagement,
|
||||||
wiki: summary,
|
wiki: summary,
|
||||||
desc: c.about.Channel.Contents.ItemSection.About.Description,
|
desc: c.about.Channel.Contents.ItemSection.About.Description,
|
||||||
|
@ -123,4 +134,4 @@ module.exports = {
|
||||||
search,
|
search,
|
||||||
video,
|
video,
|
||||||
channel,
|
channel,
|
||||||
};
|
};
|
Loading…
Reference in a new issue