ligh7hau5/commands/fediverse/status.js

18 lines
708 B
JavaScript
Raw Normal View History

exports.runQuery = function (matrixClient, room, userInput, ) {
2020-07-03 20:05:39 +03:00
axios({
method: 'GET',
url: `${config.fediverse.domain}/api/v1/statuses/${userInput}`,
headers: { Authorization: `Bearer ${fediverse_auth.access_token}` },
2020-07-03 20:05:39 +03:00
}).then((response) => {
matrixClient.sendHtmlNotice(room.roomId,
'',
`<b><a href="${config.fediverse.domain}/notice/${response.data.id}">${response.data.account.acct}</a>
2020-07-03 20:05:39 +03:00
<blockquote><i>${response.data.content}<br>
${response.data.media_attachments.map(media =>
`<a href="${media.remote_url}"><b>${media.description}</b></a>`)
.join('<br>')}
(id: ${response.data.id}</a>)
</blockquote>`);
});
};