1
Fork 0
poke/src/fetcher.js

51 lines
1.6 KiB
JavaScript
Raw Normal View History

2022-03-02 15:05:55 -05:00
/*
2022-03-02 16:00:46 -05:00
2022-05-17 16:19:35 -04:00
Copyright (C) 2021-2022 POKETUBE (https://github.com/iamashley0/poketube)
2022-03-02 15:05:55 -05: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/.
*/
const fetch = require("node-fetch"); //2.5.x
const { toJson } = require("xml2json");
2022-05-17 16:19:35 -04:00
2022-03-02 15:05:55 -05:00
var youtube_url = `https://www.youtube.com/watch?v=`;
var dislike_api = `https://returnyoutubedislikeapi.com/votes?videoId=`;
var new_api_url = `https://tube.kuylar.dev/api/player`;
2022-03-02 15:05:55 -05:00
module.exports = async function (video_id) {
const dislike = await fetch(`${dislike_api}${video_id}`).then((res) =>
res.json()
);
const dislikes = dislike.dislikes || "none";
2022-05-17 16:19:35 -04:00
/*
* Parses and fetches an xml
*/
async function parsexml(id) {
const player = await fetch(`${new_api_url}?v=${id}`);
var h = await player.text();
var j = toJson(h);
return JSON.parse(j);
2022-03-06 08:53:46 -05:00
}
2022-07-10 16:52:00 -04:00
2022-03-02 15:05:55 -05:00
/*
* Returner object
*/
2022-03-02 15:05:55 -05:00
const returner = {
video: await parsexml(video_id),
engagement: dislike,
video_url_youtube: `${youtube_url}${video_id}`,
};
return returner;
};