2021-02-01 11:58:59 +03:00
|
|
|
exports.runQuery = function (matrixClient, room, address, flaggedInput) {
|
2020-05-16 19:48:12 +03:00
|
|
|
axios({
|
|
|
|
method: 'POST',
|
2021-02-01 11:58:59 +03:00
|
|
|
url: `${config.fediverse.domain}/api/v1/statuses`,
|
|
|
|
headers: { Authorization: `Bearer ${fediverse_auth.access_token}` },
|
2020-05-16 19:48:12 +03:00
|
|
|
data: { status: `@10grans@fedi.cc tip `+ flaggedInput + ` to `+address },
|
|
|
|
}).then((response) => {
|
|
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
|
|
'',
|
|
|
|
`<b>
|
|
|
|
<blockquote><i>Tipping ${response.data.content}<br>
|
|
|
|
(id: ${response.data.id}</a>)
|
|
|
|
</blockquote><br>`);
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
|
|
'', `${e}`);
|
|
|
|
});
|
2021-01-17 12:58:02 +03:00
|
|
|
};
|