feat(cmd): add 10grans begging
This commit is contained in:
parent
867fb0daca
commit
77b0eb12e8
4 changed files with 27 additions and 0 deletions
21
commands/beg.js
Normal file
21
commands/beg.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
const axios = require('axios');
|
||||
|
||||
exports.runQuery = function (matrixClient, room, registrar) {
|
||||
axios({
|
||||
method: 'POST',
|
||||
url: `${registrar.config.fediverse}/api/v1/statuses`,
|
||||
headers: { Authorization: `Bearer ${registrar.config.fediverseToken}` },
|
||||
data: { status: `@10grans@fedi.cc beg` },
|
||||
}).then((response) => {
|
||||
matrixClient.sendHtmlNotice(room.roomId,
|
||||
'',
|
||||
`<b>
|
||||
<blockquote><i>You have begged for 10grans.<br>
|
||||
(id: ${response.data.id}</a>)
|
||||
</blockquote><br>`);
|
||||
})
|
||||
.catch((e) => {
|
||||
matrixClient.sendHtmlNotice(room.roomId,
|
||||
'', `${e}`);
|
||||
});
|
||||
};
|
|
@ -8,6 +8,7 @@ exports.runQuery = function (matrixClient, room) {
|
|||
+ '+copy [post id] : repeat/repost/retweet<br>'
|
||||
+ '+reply [post id] [content] : reply to post<br>'
|
||||
+ '+tip [@user@fedi.url] [amount] : tip 10grans'
|
||||
+ '+beg : beg for 10grans'
|
||||
+ '+clap [post id] : favorite<br>'
|
||||
+ '+boo [post id] : unfavorite</blockquote>'
|
||||
+ '<blockquote><b>channel commands<br>'
|
||||
|
|
4
main.js
4
main.js
|
@ -47,6 +47,10 @@ let CreateClient = (token) => {
|
|||
registrar.boo.runQuery(matrixClient, room, userInput, registrar);
|
||||
}
|
||||
|
||||
if (command === 'beg') {
|
||||
registrar.beg.runQuery(matrixClient, room, registrar);
|
||||
}
|
||||
|
||||
if (command === 'clap') {
|
||||
registrar.clap.runQuery(matrixClient, room, userInput, registrar);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
module.exports = {
|
||||
config: require('./config.js'),
|
||||
boo: require('./commands/boo.js'),
|
||||
beg: require('./commands/beg.js'),
|
||||
clap: require('./commands/clap.js'),
|
||||
copy: require('./commands/copy.js'),
|
||||
flood: require('./commands/flood.js'),
|
||||
|
|
Loading…
Reference in a new issue