ligh7hau5/commands/fediverse/clap.js

17 lines
565 B
JavaScript
Raw Normal View History

exports.runQuery = function (matrixClient, room, userInput) {
2019-07-04 00:27:39 +03:00
axios({
method: 'POST',
url: `${config.fediverse.domain}/api/v1/statuses/${userInput}/favourite`,
headers: { Authorization: `Bearer ${fediverse_auth.access_token}` },
2019-07-04 00:27:39 +03:00
}).then((response) => {
matrixClient.sendHtmlNotice(room.roomId,
'',
`You have clapped: <a href="${response.data.url}">${response.data.account.acct}</a>:
<blockquote>${response.data.content}`);
})
.catch((e) => {
matrixClient.sendHtmlNotice(room.roomId,
'', `${e}`);
});
};