2019-07-04 00:27:39 +03:00
|
|
|
const axios = require('axios');
|
|
|
|
|
|
|
|
exports.runQuery = function (matrixClient, room, userInput, registrar) {
|
|
|
|
axios({
|
|
|
|
method: 'POST',
|
|
|
|
url: `${registrar.config.fediverse}/api/v1/statuses`,
|
|
|
|
headers: { Authorization: `Bearer ${registrar.config.fediverseToken}` },
|
2020-05-16 19:48:12 +03:00
|
|
|
data: { status: userInput, content_type: `text/markdown` },
|
2019-07-04 00:27:39 +03:00
|
|
|
}).then((response) => {
|
|
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
|
|
'',
|
|
|
|
`<b>
|
|
|
|
<blockquote><i>${response.data.content}<br>
|
|
|
|
(id: ${response.data.id}</a>)
|
|
|
|
</blockquote><br>`);
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
|
|
'', `${e}`);
|
|
|
|
});
|
|
|
|
};
|