ligh7hau5/commands/pin.js

21 lines
659 B
JavaScript
Raw Normal View History

2019-09-06 03:36:26 +03:00
const axios = require('axios');
exports.runQuery = function (matrixClient, room, userInput, registrar) {
axios({
method: 'POST',
url: `${registrar.config.fediverse}/api/v1/statuses/${userInput}/pin`,
headers: { Authorization: `Bearer ${registrar.config.fediverseToken}` },
}).then((response) => {
matrixClient.sendHtmlNotice(room.roomId,
'',
`Pinned:
<blockquote><i><a href="${registrar.config.fediverse}/notice/${response.data.id}">
${response.data.content}</a></i>
</blockquote>`);
2019-09-06 03:36:26 +03:00
})
.catch((e) => {
matrixClient.sendHtmlNotice(room.roomId,
'', `${e}`);
});
};