VueTube/NUXT/plugins/youtube.js

132 lines
3.9 KiB
JavaScript
Raw Normal View History

2022-02-28 15:24:06 +00:00
//--- Modules/Imports ---//
2022-02-25 18:54:15 +00:00
import { Http } from '@capacitor-community/http';
2022-02-28 15:24:06 +00:00
//--- Logger Function ---//
2022-03-04 14:01:19 +00:00
function logger(func, data, isError=false) {
2022-03-02 16:02:51 +00:00
module.logs.unshift({
2022-02-28 15:24:06 +00:00
name: func,
time: Date.now(),
2022-03-04 14:01:19 +00:00
data: data,
error: isError
2022-02-28 15:24:06 +00:00
})
}
2022-03-13 23:21:41 +00:00
//--- Youtube Base Parser ---//
function youtubeParse(html, callback) {
//--- Replace Encoded Characters ---///
html = html.replace(/\\x([0-9A-F]{2})/ig, (...items) => { return String.fromCharCode(parseInt(items[1], 16)); });
//--- Properly Format JSON ---//
html = html.replaceAll("\\\\\"", "");
//--- Parse JSON ---//
html = JSON.parse(html);
//--- Get Results ---// ( Thanks To appit-online On Github ) -> https://github.com/appit-online/youtube-search/blob/master/src/lib/search.ts
let results;
if (html && html.contents && html.contents.sectionListRenderer && html.contents.sectionListRenderer.contents
&& html.contents.sectionListRenderer.contents.length > 0
&& html.contents.sectionListRenderer.contents[0].itemSectionRenderer
&& html.contents.sectionListRenderer.contents[0].itemSectionRenderer.contents.length > 0) {
results = html.contents.sectionListRenderer.contents[0].itemSectionRenderer.contents;
logger("search", results);
callback(results);
} else {
try {
results = JSON.parse(html.split('{"itemSectionRenderer":{"contents":')[html.split('{"itemSectionRenderer":{"contents":').length - 1].split(',"continuations":[{')[0]);
logger("search", results);
callback(results);
} catch (e) {}
try {
results = JSON.parse(html.split('{"itemSectionRenderer":')[html.split('{"itemSectionRenderer":').length - 1].split('},{"continuationItemRenderer":{')[0]).contents;
logger("search", results);
callback(results);
} catch(e) {}
}
}
//--- Search Main Function ---//
function youtubeSearch(text, callback) {
Http.request({
method: 'GET',
url: 'https://youtube.com/results',
params: { q: text, hl: "en" }
})
.then((res) => {
//--- Get HTML Only ---//
let html = res.data;
//--- Isolate The Script Containing Video Information ---//
html = html.split("var ytInitialData = '")[1].split("';</script>")[0];
2022-03-14 14:56:22 +00:00
2022-03-13 23:21:41 +00:00
youtubeParse(html, (data) => {
callback(data);
})
})
.catch((err) => {
2022-03-04 14:01:19 +00:00
logger("search", err, true);
callback(err);
});
}
2022-02-25 18:39:17 +00:00
const module = {
2022-02-28 15:24:06 +00:00
logs: new Array(),
2022-02-25 18:54:15 +00:00
2022-02-28 15:24:06 +00:00
//--- Get YouTube's Search Auto Complete ---//
2022-03-04 01:21:11 +00:00
autoComplete(text, callback) {
Http.request({
2022-02-26 19:35:36 +00:00
method: 'GET',
2022-02-25 18:54:15 +00:00
url: 'https://suggestqueries-clients6.youtube.com/complete/search',
2022-02-26 19:35:36 +00:00
params: { client: 'youtube', q: text }
2022-03-02 13:14:52 +00:00
})
2022-03-04 01:21:11 +00:00
.then((res) => {
logger("autoComplete", res);
callback(res.data);
})
2022-03-02 13:14:52 +00:00
.catch((err) => {
2022-03-04 14:01:19 +00:00
logger("autoComplete", err, true);
2022-03-02 13:14:52 +00:00
callback(err);
2022-02-26 19:35:36 +00:00
});
},
search(text, callback) {
2022-03-03 23:07:33 +00:00
let results = new Array();
youtubeSearch(text, (videos) => {
for (const i in videos) {
const video = videos[i];
2022-03-05 04:01:49 +00:00
if (video.compactVideoRenderer) {
2022-03-05 04:01:49 +00:00
//--- If Entry Is A Video ---//
results.push({
id: video.compactVideoRenderer.videoId,
title: video.compactVideoRenderer.title.runs[0].text,
runtime: video.compactVideoRenderer.lengthText.runs[0].text,
uploaded: video.compactVideoRenderer.publishedTimeText.runs[0].text,
views: video.compactVideoRenderer.viewCountText.runs[0].text,
thumbnails: video.compactVideoRenderer.thumbnail.thumbnails
})
2022-03-05 04:01:49 +00:00
} else {
//--- If Entry Is Not A Video ---//
2022-03-06 19:15:27 +00:00
//logger("search", { type: "Error Caught Successfully", error: video }, true);
}
2022-03-05 04:01:49 +00:00
2022-03-03 23:07:33 +00:00
}
})
callback(results);
2022-03-04 14:01:19 +00:00
2022-03-13 23:45:04 +00:00
},
2022-03-16 01:47:25 +00:00
getVideo(id) {
return id;
2022-02-25 18:39:17 +00:00
}
2022-02-25 18:39:17 +00:00
}
2022-02-28 15:24:06 +00:00
//--- Start ---//
2022-02-25 18:39:17 +00:00
export default ({ app }, inject) => {
inject('youtube', module)
}
2022-02-28 15:24:06 +00:00
logger("Initialize","Program Started");