ligh7hau5/commands/fren.js

21 lines
720 B
JavaScript
Raw Normal View History

2019-07-04 00:27:39 +03:00
const axios = require('axios');
exports.runQuery = function (matrixClient, room, userInput, registrar) {
2020-06-28 10:07:58 +03:00
axios.get(`${registrar.config.fediverse.domain}/api/v1/accounts/${userInput}`).then((findUID) => {
2019-07-04 00:27:39 +03:00
axios({
method: 'POST',
2020-06-28 10:07:58 +03:00
url: `${registrar.config.fediverse.domain}/api/v1/accounts/${findUID.data.id}/follow`,
headers: { Authorization: `Bearer ${registrar.config.fediverse.token}` },
2019-07-04 00:27:39 +03:00
})
.then((response) => {
matrixClient.sendHtmlNotice(room.roomId,
'',
`Subscribed:
2020-06-28 10:07:58 +03:00
<blockquote>${registrar.config.fediverse.domain}/${response.data.id}`);
2019-07-04 00:27:39 +03:00
});
}).catch((e) => {
matrixClient.sendHtmlNotice(room.roomId,
'', `${e}`);
});
};