20 lines
674 B
JavaScript
20 lines
674 B
JavaScript
const axios = require('axios');
|
|
|
|
exports.runQuery = function (matrixClient, room, userInput, registrar) {
|
|
axios({
|
|
method: 'POST',
|
|
url: `${registrar.config.fediverse.domain}/api/v1/statuses/${userInput}/pin`,
|
|
headers: { Authorization: `Bearer ${registrar.config.fediverse.token}` },
|
|
}).then((response) => {
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
'',
|
|
`Pinned:
|
|
<blockquote><i><a href="${registrar.config.fediverse.domain}/notice/${response.data.id}">
|
|
${response.data.content}</a></i>
|
|
</blockquote>`);
|
|
})
|
|
.catch((e) => {
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
'', `${e}`);
|
|
});
|
|
};
|