18 lines
623 B
JavaScript
18 lines
623 B
JavaScript
const axios = require('axios');
|
|
|
|
exports.runQuery = function (matrixClient, room, userInput, registrar) {
|
|
axios({
|
|
method: 'POST',
|
|
url: `${registrar.config.fediverse.domain}/api/v1/statuses/${userInput}/unfavourite`,
|
|
headers: { Authorization: `Bearer ${registrar.config.fediverse.token}` },
|
|
}).then((response) => {
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
'',
|
|
`You have boo'd: <a href="${response.data.url}">${response.data.account.acct}</a>
|
|
<blockquote>${response.data.content}`);
|
|
})
|
|
.catch((e) => {
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
'', `${e}`);
|
|
});
|
|
};
|