ligh7hau5/commands/fediverse/mordy.js

27 lines
744 B
JavaScript
Raw Normal View History

2020-05-21 02:02:27 +03:00
const axios = require('axios');
exports.runQuery = function (matrixClient, room, userInput, registrar) {
axios({
method: 'POST',
2020-06-28 10:07:58 +03:00
url: `${registrar.config.fediverse.domain}/api/v1/statuses`,
headers: { Authorization: `Bearer ${registrar.fediverse_auth.access_token}` },
data: {
status: `@mordekai ${userInput}`,
2020-05-21 02:02:27 +03:00
content_type: `text/markdown`,
visibility: 'unlisted',
expires_in: '7200'
},
}).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}`);
});
};