2020-06-25 14:32:36 +03:00
|
|
|
const headers = ({ domain, userAgent }) => ({
|
2021-02-14 10:57:35 +03:00
|
|
|
Host: `${domain}`,
|
|
|
|
'User-Agent': `${userAgent}`,
|
2020-06-25 14:32:36 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
const invidious = async (instance, url) => {
|
|
|
|
const req = await instance({ method: 'GET', url });
|
|
|
|
if (req.statusText !== 'OK') throw req;
|
|
|
|
const video = JSON.parse(req.data);
|
|
|
|
return {
|
|
|
|
name: video.title,
|
|
|
|
date: video.publishedText,
|
|
|
|
description: video.descriptionHtml,
|
|
|
|
author: video.author,
|
|
|
|
views: video.viewCount,
|
|
|
|
likes: video.likeCount,
|
2021-02-14 10:57:35 +03:00
|
|
|
dislikes: video.dislikeCount,
|
2020-06-25 14:32:36 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const card = (video, base, path) =>
|
|
|
|
`<a href="${base}/${path}"><b>${video.name}</a></b><blockquote><b><i>` +
|
|
|
|
((video.description.length > 300) ? `${video.description.substr(0, 300)}…` : ``)+
|
|
|
|
((video.description === '<p></p>') ? `No description.`: ``)+
|
|
|
|
((video.description.length < 300 && video.description !== '<p></p>') ? `${video.description}` : ``)+
|
|
|
|
`<br /><span>🔍️ ${video.views.toLocaleString()}</span> ` +
|
|
|
|
`<span>❤️ ${video.likes.toLocaleString()}</span> ` +
|
|
|
|
`<span>❌ ${video.dislikes.toLocaleString()}</span>`+
|
|
|
|
`<br />(${video.date})</b> <br />
|
|
|
|
</blockquote>`;
|
|
|
|
|
2021-02-14 10:57:35 +03:00
|
|
|
const run = async (roomId, userInput) => {
|
2020-06-25 14:32:36 +03:00
|
|
|
const instance = axios.create({
|
2021-02-01 11:58:59 +03:00
|
|
|
baseURL: `https://${config.invidious.domain}/api/v1/videos/`,
|
|
|
|
headers: headers(config.invidious),
|
2020-06-25 14:32:36 +03:00
|
|
|
transformResponse: [],
|
2021-02-14 10:57:35 +03:00
|
|
|
timeout: 10 * 1000,
|
2020-06-25 14:32:36 +03:00
|
|
|
});
|
|
|
|
const video = await invidious(instance, userInput);
|
2021-02-01 11:58:59 +03:00
|
|
|
return await matrixClient.sendHtmlNotice(roomId, '', card(video, `https://${config.invidious.domain}`, userInput));
|
2021-02-14 10:57:35 +03:00
|
|
|
};
|
2020-06-25 14:32:36 +03:00
|
|
|
|
2021-02-14 10:57:35 +03:00
|
|
|
exports.runQuery = async (roomId, event, userInput) => {
|
2020-06-25 14:32:36 +03:00
|
|
|
try {
|
|
|
|
const url = new URL(userInput);
|
2021-02-14 10:57:35 +03:00
|
|
|
if (!config.invidious.domains.includes(url.hostname)) throw '';
|
|
|
|
if (/^\/[\w-]{11}$/.test(url.pathname)) return await run(roomId, url.pathname.slice(1));
|
|
|
|
const params = new URLSearchParams(url.search).get('v');
|
|
|
|
if (!/^[\w-]{11}$/.test(params)) throw '';
|
|
|
|
return await run(roomId, params);
|
|
|
|
} catch (e) {
|
|
|
|
return matrixClient.sendHtmlNotice(roomId, 'Sad!', '<strong>Sad!</strong>').catch(() => {});
|
2020-06-25 14:32:36 +03:00
|
|
|
}
|
|
|
|
};
|