18 lines
645 B
JavaScript
18 lines
645 B
JavaScript
exports.runQuery = function (matrixClient, room, userInput) {
|
|
axios.get(`${config.fediverse.domain}/api/v1/accounts/${userInput}`).then((findUID) => {
|
|
axios({
|
|
method: 'POST',
|
|
url: `${config.fediverse.domain}/api/v1/accounts/${findUID.data.id}/unfollow`,
|
|
headers: { Authorization: `Bearer ${fediverse_auth.access_token}` },
|
|
})
|
|
.then((response) => {
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
'',
|
|
`Unsubscribed:
|
|
<blockquote>${config.fediverse.domain}/${response.data.id}`);
|
|
});
|
|
}).catch((e) => {
|
|
matrixClient.sendHtmlNotice(room.roomId,
|
|
'', `${e}`);
|
|
});
|
|
};
|