|
|
||
|---|---|---|
| index.js | ||
| LICENSE | ||
| mastodon-clippy.service.example | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
mastodon-clippy
A customisable nodejs clippy bot for mastodon.
mastodon-clippy notices when you are tooting about a topic that is bad for your health, and gently suggests you stop.
See an example in action at auspol_clippy.
configuration
mastodon-clippy takes all configuration as ENV variables:
CLIPPY_TOPICis the topic your clippy bot makes suggestions for. e.g. "auspol".CLIPPY_DOMAINis the base domain for the Mastodon server your bot runs on without a protocol. e.g. "botsin.space"CLIPPY_USERis the username of the bot, e.g. "auspol_clippy".CLIPPY_ACCESS_TOKENis the API access token for your bot.
auto-config
Some settings for your bot account will be automatically set/overridden whenever the bot starts. These are:
locked: false,
bot: true,
discoverable: true,
source: { privacy: 'private' }
That is, your bot must always:
- accept new followers
- declare it is a bot
- be discoverable on the server suggestions page
- post messages in "followers only" mode
manual config
It does not appear to be possible to use the API to set accounts to hide their social graph. users should be able to use your bot without other people necessarily knowing, but the bot needs to follow them in order to work. Therefore you should manually select Hide your network in https://example.com/settings/preferences/other.
setup
You can use the example systemd file at mastodon-clippy.service.example tweaked to suit your setup. This will keep the bot running and set your environment variables as above.
Then run npm install . to install npm modules axios and ws.
running
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:
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:
- follow the bot account
- send a toot to the bot with the word
STARTin capital letters. e.g.@auspol_clippy START
To "unsubscribe" from the bot, users can send a toot with the word STOP in capital letters. e.g. @auspol_clippy STOP