2021-02-14 15:57:35 +08:00
|
|
|
exports.runQuery = function (roomId, event, userInput) {
|
2019-07-03 17:27:39 -04:00
|
|
|
axios({
|
|
|
|
method: 'POST',
|
2021-02-01 16:58:59 +08:00
|
|
|
url: `${config.fediverse.domain}/api/v1/statuses/${userInput}/favourite`,
|
2021-02-14 15:57:35 +08:00
|
|
|
headers: { Authorization: `Bearer ${fediverse.auth.access_token}` },
|
2019-07-03 17:27:39 -04:00
|
|
|
})
|
2021-02-14 15:57:35 +08:00
|
|
|
.then(() => {
|
|
|
|
matrix.utils.addReact(event, '✅');
|
|
|
|
})
|
2019-07-03 17:27:39 -04:00
|
|
|
.catch((e) => {
|
2021-02-14 15:57:35 +08:00
|
|
|
matrix.utils.addReact(event, '❌');
|
|
|
|
matrix.utils.sendError(event, roomId, e);
|
2019-07-03 17:27:39 -04:00
|
|
|
});
|
|
|
|
};
|