1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2025-02-20 17:58:49 -05:00
poke/src/libpoketube/libpoketube-fetcher.js

63 lines
1.7 KiB
JavaScript
Raw Normal View History

2022-03-02 23:05:55 +03:00
/*
2022-03-03 00:00:46 +03:00
2022-05-17 23:19:35 +03:00
Copyright (C) 2021-2022 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-09 19:03:28 +00:00
function getJson(str) {
try {
return JSON.parse(str);
} catch {
return null;
}
}
2022-12-20 11:52:34 +00:00
const engagement = await fetch(`${dislike_api}${video_id}`).then((res) =>
res.json()
);
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-11-16 17:43:53 +01:00
const player = await fetch(`${new_api_url}?v=${id}`, headers);
var h = await player.text();
var j = toJson(h);
2022-12-20 10:57:23 +00:00
return getJson(j);
2022-03-06 16:53:46 +03:00
}
2022-07-10 23:52:00 +03:00
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}`,
};
return returner;
};