2019-07-04 00:27:39 +03:00
|
|
|
const axios = require('axios');
|
|
|
|
|
|
|
|
exports.runQuery = function (matrixClient, room, address, flaggedInput, registrar) {
|
|
|
|
axios({
|
|
|
|
method: 'POST',
|
2020-06-28 10:07:58 +03:00
|
|
|
url: `${registrar.config.fediverse.domain}/api/v1/statuses`,
|
|
|
|
headers: { Authorization: `Bearer ${registrar.config.fediverse.token}` },
|
2020-05-16 19:48:12 +03:00
|
|
|
data: { status: flaggedInput, in_reply_to_id: address, content_type: `text/markdown` },
|
2019-07-04 00:27:39 +03:00
|
|
|
}).then((response) => {
|
|
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
|
|
'',
|
|
|
|
`${response.data.content} ${response.data.url}`);
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
|
|
'', `${e}`);
|
|
|
|
});
|
|
|
|
};
|