2019-09-06 03:36:26 +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/${userInput}/unpin`,
|
|
|
|
headers: { Authorization: `Bearer ${registrar.config.fediverse.token}` },
|
2019-09-06 03:36:26 +03:00
|
|
|
}).then((response) => {
|
|
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
|
|
'',
|
|
|
|
`Unpinned:
|
2020-06-28 10:07:58 +03:00
|
|
|
<blockquote><i><a href="${registrar.config.fediverse.domain}/notice/${response.data.id}">
|
2019-09-06 14:44:39 +03:00
|
|
|
${response.data.content}</a></i>
|
|
|
|
</blockquote>`);
|
2019-09-06 03:36:26 +03:00
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
|
|
'', `${e}`);
|
|
|
|
});
|
|
|
|
};
|