ligh7hau5/commands/nitter.js

74 lines
3.5 KiB
JavaScript
Raw Normal View History

const { JSDOM } = require('jsdom');
2020-06-23 23:22:30 +03:00
const headers = ({ domain, userAgent }) => ({
Host: `${domain}`,
'User-Agent': `${userAgent}`,
2020-06-23 23:22:30 +03:00
});
const nitter = async (instance, url) => {
const req = await instance({ method: 'GET', url });
if (req.statusText !== 'OK') throw req;
const dom = new JSDOM(req.data);
const { document } = dom.window;
2020-06-24 01:00:53 +03:00
const tweet = document.querySelector('#m');
2020-06-23 23:22:30 +03:00
const stats = tweet.querySelectorAll('.tweet-body > .tweet-stats .icon-container');
2020-06-24 01:00:53 +03:00
const quote = tweet.querySelector('.tweet-body > .quote');
const isReply = tweet.querySelector('.tweet-body > .replying-to');
const replies = document.querySelectorAll('.main-thread > .before-tweet > .timeline-item');
2020-06-23 23:22:30 +03:00
return {
text: tweet.querySelector('.tweet-body > .tweet-content').innerHTML,
date: tweet.querySelector('.tweet-body > .tweet-published').textContent,
name: tweet.querySelector('.tweet-body > div .fullname').textContent,
check: !!tweet.querySelector('.tweet-body > div .fullname .icon-ok'),
2020-06-23 23:22:30 +03:00
handle: tweet.querySelector('.tweet-body > div .username').textContent,
hasAttachments: !!tweet.querySelector('.tweet-body > .attachments'),
2020-06-24 01:00:53 +03:00
quote: quote ? {
path: quote.querySelector('a.quote-link').href,
text: quote.querySelector('.quote-text') ? quote.querySelector('.quote-text').innerHTML : '',
2020-06-24 01:00:53 +03:00
} : null,
2020-09-06 18:10:41 +03:00
isReply: isReply && replies.length > 0 ? replies[replies.length - 1].classList.contains('unavailable') ? 'unavailable' : {
2020-06-24 01:00:53 +03:00
path: replies[replies.length - 1].querySelector('a.tweet-link').href,
text: replies[replies.length - 1].querySelector('.tweet-content').innerHTML,
} : null,
stats: {
2020-06-23 23:22:30 +03:00
replies: stats[0].textContent.trim(),
retweets: stats[1].textContent.trim(),
favorites: stats[2].textContent.trim(),
},
2020-06-23 23:22:30 +03:00
};
};
const card = (tweet, base, check, path) =>
2020-06-23 23:22:30 +03:00
`<a href="${base}/${tweet.handle.replace(/^@/, '')}"><b>${tweet.name}</b></a> ` +
(tweet.check ? `${check} ` : '') +
2020-06-23 23:22:30 +03:00
`<a href="${base}${path}"><b>${tweet.date}</b></a> ` +
`<span>🗨️ ${tweet.stats.replies}</span> ` +
`<span>🔁 ${tweet.stats.retweets}</span> ` +
`<span>❤️ ${tweet.stats.favorites}</span> ` +
`<br /><blockquote><b><i>${tweet.text.replace('\n', '<br />')}</i></b></blockquote>` +
(tweet.hasAttachments ? '<blockquote><b>This tweet has attached media.</b></blockquote>' : '') +
2020-09-06 18:10:41 +03:00
(tweet.isReply ? tweet.isReply === 'unavailable' ? '<blockquote>Replied Tweet is unavailable</blockquote>' : `<blockquote><b><a href="${base}${tweet.isReply.path}">Replied Tweet</a></b><br /><b><i>${tweet.isReply.text.replace('\n', '<br />')}</i></b></blockquote>` : '') +
2020-06-24 01:00:53 +03:00
(tweet.quote ? `<blockquote><b><a href="${base}${tweet.quote.path}">Quoted Tweet</a></b><br /><b><i>${tweet.quote.text.replace('\n', '<br />')}</i></b></blockquote>` : '');
const run = async (roomId, userInput) => {
2020-06-23 23:22:30 +03:00
const instance = axios.create({
baseURL: `https://${config.nitter.domain}`,
headers: headers(config.nitter),
2020-06-23 23:22:30 +03:00
transformResponse: [],
timeout: 10 * 1000,
2020-06-23 23:22:30 +03:00
});
const tweet = await nitter(instance, userInput);
return await matrixClient.sendHtmlNotice(roomId, '', card(tweet, `https://${config.nitter.domain}`, config.nitter.check, userInput));
};
2020-06-24 01:00:53 +03:00
exports.runQuery = async (roomId, event, userInput) => {
2020-06-23 23:22:30 +03:00
try {
2020-06-23 23:45:09 +03:00
const url = new URL(userInput);
if (!config.nitter.domains.includes(url.hostname)) throw '';
if (!/^\/[^/]+\/status\/\d+\/?$/.test(url.pathname)) throw '';
return await run(roomId, url.pathname);
} catch (e) {
return matrixClient.sendHtmlNotice(roomId, 'Sad!', '<strong>Sad!</strong>').catch(() => {});
2020-06-23 23:22:30 +03:00
}
};