Compare commits

..

13 commits
v1.1.1 ... main

Author SHA1 Message Date
Hugh Rundle 08c32b8647 Merge pull request 'update' (#9) from update into main
Reviewed-on: #9
2024-08-10 12:19:11 +10:00
Hugh Rundle a85e056b4b
Merge branch 'main' into update 2024-08-10 12:18:25 +10:00
Hugh Rundle e2ece557c2
add some more options
- add extra reply options
- fix mentions
2024-08-10 12:09:36 +10:00
Hugh Rundle 2a6cf879b6
update readme and deps 2024-08-10 11:44:48 +10:00
Hugh Rundle fa47c7a0fb
Update README.md 2024-07-29 20:16:28 +10:00
Hugh Rundle e10a3ef7ce
Merge pull request #7 from hughrun/dependabot/npm_and_yarn/ws-7.5.10
Bump ws from 7.5.2 to 7.5.10
2024-06-29 12:32:46 +10:00
dependabot[bot] 85d6589dce
Bump ws from 7.5.2 to 7.5.10
Bumps [ws](https://github.com/websockets/ws) from 7.5.2 to 7.5.10.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](https://github.com/websockets/ws/compare/7.5.2...7.5.10)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-29 02:12:09 +00:00
Hugh Rundle a99bd4bf92
Merge pull request #5 from hughrun/dependabot/npm_and_yarn/follow-redirects-1.15.6
Bump follow-redirects from 1.14.7 to 1.15.6
2024-04-15 15:45:30 +10:00
dependabot[bot] b86560f033
Bump follow-redirects from 1.14.7 to 1.15.6
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.7 to 1.15.6.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.14.7...v1.15.6)

---
updated-dependencies:
- dependency-name: follow-redirects
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-15 05:40:05 +00:00
Hugh Rundle 391e7524ca
Update README.md 2022-10-23 21:22:16 +11:00
Hugh Rundle 7b9a90030a
Update README.md 2022-10-23 15:22:39 +11:00
Hugh Rundle 2bfa31907f
Merge pull request #4 from hughrun/dependabot/npm_and_yarn/follow-redirects-1.14.7
Bump follow-redirects from 1.14.1 to 1.14.7
2022-01-17 16:54:30 +11:00
dependabot[bot] d62209587e
Bump follow-redirects from 1.14.1 to 1.14.7
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.1 to 1.14.7.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.14.1...v1.14.7)

---
updated-dependencies:
- dependency-name: follow-redirects
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-17 05:32:17 +00:00
4 changed files with 49 additions and 33 deletions

View file

@ -45,6 +45,14 @@ Then run `npm install .` to install npm modules `axios` and `ws`.
Start the bot with the traditional `node index.js`.
However, you probably want this to run automatically on a web server. You can do this with `systemd` using the example unit file: `mastodon-clippy.service.example`. Adjust this for your user and paths, and then activate it:
```bash
sudo cp mastodon-clippy.service.example /etc/systemd/system/mastodon-clippy.service
sudo systemctl enable mastodon-clippy.service
sudo systemctl start mastodon-clippy service
```
## interacting with the bot
To "sign up" for notification from your bot, users have two options:

View file

@ -53,25 +53,33 @@ function initiateSettings(socket) {
// return random suggestion string
function suggestion(username) {
const n = crypto.randomInt(8)
const n = crypto.randomInt(12)
switch(n) {
case 0:
return 'How about logging off instead?';
case 1:
return `Would you like to delete your toot, ${username}?`;
return `Would you like to delete your toot, @${username}?`;
case 2:
return 'Can I help you take a walk outside?';
return 'Can I help you take a walk outside? 🚶‍➡️';
case 3:
return 'You may like to reconsider your life choices.';
case 4:
return 'Why not try looking at #CatsOfMastodon instead?';
case 5:
return `Come on ${username}, we've talked about this.`;
return `Come on @${username}, we've talked about this. 🤷‍♂️`;
case 6:
return `You should go look at some trees. Trees are calming`;
return `You should go look at some trees. Trees are calming 🌳`;
case 7:
return `I'm not angry. I'm just very disappointed.`;
return `I'm not angry. I'm just very disappointed. 😔`;
case 8:
return `You said you were going to stop doing that ...and yet here we are.`;
case 9:
return `Time to touch some grass 🌱`;
case 10:
return `Why not have a nice cup of tea instead? 🫖`;
case 11:
return `And yet you still haven't read all of those books in your TBR pile. 🤔`;
}
}

22
package-lock.json generated
View file

@ -1,26 +1,26 @@
{
"name": "mastodon-clippy",
"version": "1.1.0",
"version": "1.1.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"axios": {
"version": "0.21.1",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz",
"integrity": "sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==",
"version": "0.21.4",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
"integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
"requires": {
"follow-redirects": "^1.10.0"
"follow-redirects": "^1.14.0"
}
},
"follow-redirects": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz",
"integrity": "sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg=="
"version": "1.15.6",
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
"integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA=="
},
"ws": {
"version": "7.5.2",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.2.tgz",
"integrity": "sha512-lkF7AWRicoB9mAgjeKbGqVUekLnSNO4VjKVnuPHpQeOxZOErX6BPXwJk70nFslRCEEA8EVW7ZjKwXaP9N+1sKQ=="
"version": "7.5.10",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz",
"integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ=="
}
}
}

View file

@ -1,8 +1,8 @@
{
"name": "mastodon-clippy",
"version": "1.1.1",
"version": "1.1.2",
"description": "Mastodon clippy bot",
"repository": "https://github.com/hughrun/mastodon-clippy.git",
"repository": "https://git.suboptimal.solutions/hugh/mastodon-clippy",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
@ -10,7 +10,7 @@
"author": "Hugh Rundle <hugh@hughrundle.net> (https://www.hughrundle.net)",
"license": "AGPL-3.0-or-later",
"dependencies": {
"axios": "^0.21.2",
"ws": "^7.5.2"
"axios": "^1.7.3",
"ws": "^8.18"
}
}