1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2025-02-19 05:38:51 -05:00
poke/src/libpoketube/libpoketube-fetcher.js

78 lines
1.9 KiB
JavaScript
Raw Normal View History

2022-03-02 23:05:55 +03:00
/*
2022-03-03 00:00:46 +03:00
2023-01-11 16:32:18 +00:00
Copyright (C) 2021-2023 POKETUBE (https://github.com/iamashley0/poketube)
2022-03-02 23:05:55 +03:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see https://www.gnu.org/licenses/.
*/
2022-09-23 18:54:05 +02:00
2022-03-02 23:05:55 +03:00
const fetch = require("node-fetch"); //2.5.x
const { toJson } = require("xml2json");
2022-05-17 23:19:35 +03:00
2022-03-02 23:05:55 +03:00
var youtube_url = `https://www.youtube.com/watch?v=`;
var dislike_api = `https://returnyoutubedislikeapi.com/votes?videoId=`;
2022-12-13 18:22:51 +00:00
var new_api_url = `https://tube-srv.ashley143.gay/api/player`;
2022-03-02 23:05:55 +03:00
module.exports = async function (video_id) {
2022-12-20 13:38:25 +00:00
function getJson(str) {
try {
return JSON.parse(str);
} catch {
return null;
}
2022-12-09 19:03:28 +00:00
}
2022-12-09 19:06:19 +00:00
const headers = {};
2022-05-17 23:19:35 +03:00
/*
* Parses and fetches an xml
*/
2022-09-23 18:54:05 +02:00
async function parsexml(id) {
2022-12-24 10:48:00 +00:00
2022-12-21 15:42:06 +00:00
async function fetchxmlvideo() {
try {
const player = await fetch(`${new_api_url}?v=${id}`, headers);
var h = await player.text();
var j = toJson(h);
return getJson(j);
} catch {}
}
const a = await fetchxmlvideo();
return a;
2022-03-06 16:53:46 +03:00
}
2022-07-10 23:52:00 +03:00
2022-12-20 13:38:25 +00:00
async function ryd() {
try {
const engagement = await fetch(`${dislike_api}${video_id}`).then((res) =>
res.json()
);
return engagement;
} catch {}
}
const engagement = await ryd();
2022-03-02 23:05:55 +03:00
/*
* Returner object
*/
2022-03-02 23:05:55 +03:00
const returner = {
video: await parsexml(video_id),
2022-12-20 10:59:28 +00:00
engagement,
video_url_youtube: `${youtube_url}${video_id}`,
};
2022-12-20 13:38:25 +00:00
return returner;
};