16 lines
497 B
JavaScript
16 lines
497 B
JavaScript
exports.runQuery = function (matrixClient, room, userInput) {
|
|
axios({
|
|
method: 'POST',
|
|
url: `${config.fediverse.domain}/api/v1/statuses/${userInput}/reblog`,
|
|
headers: { Authorization: `Bearer ${fediverse_auth.access_token}` },
|
|
}).then((response) => {
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
'',
|
|
`You have repeated:
|
|
<blockquote>${response.data.content}`);
|
|
})
|
|
.catch((e) => {
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
'', `${e}`);
|
|
});
|
|
};
|