19 lines
616 B
JavaScript
19 lines
616 B
JavaScript
|
const axios = require('axios');
|
||
|
|
||
|
exports.runQuery = function (matrixClient, room, userInput, registrar) {
|
||
|
axios({
|
||
|
method: 'POST',
|
||
|
url: `${registrar.config.fediverse}/api/v1/statuses/${userInput}/favourite`,
|
||
|
headers: { Authorization: `Bearer ${registrar.config.fediverseToken}` },
|
||
|
}).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}`);
|
||
|
});
|
||
|
};
|