Go to file
b3yond 75e1ff902c function needs to take an argument 2018-01-18 13:19:11 +01:00
appkeys implement basic auto-reblogging 2017-06-17 18:15:13 +02:00
blacklists blacklisted certain racist slurs 2018-01-07 01:33:10 +01:00
goodlists change goodlist to regex patterns 2017-06-25 21:12:26 +02:00
guides invented a campaign 2017-10-11 22:22:53 +02:00
logs added empty logs folder 2017-07-20 22:37:34 +02:00
promotion added nice slogan! 2018-01-09 23:01:01 +01:00
.gitignore wrote fully fleshed out mailbot. has to be connected to ticketfrei.py #11 2018-01-05 17:13:41 +01:00
LICENSE add license 2017-10-17 00:14:57 +02:00
README.md Renamed config file to config.toml #6 2017-12-30 10:32:20 +01:00
config.toml.example remove our api-keys m( 2018-01-07 18:48:35 +01:00
mailbot.py function needs to take an argument 2018-01-18 13:19:11 +01:00
report.py Standardized reports; moved flow() logic to crawl(), repost(), & post(); bots don't own Trigger anymore 2018-01-18 11:41:08 +01:00
retootbot.py changed ticketfrei flow logic, integrated mailbot!!! #11 2018-01-18 13:06:53 +01:00
retweetbot.py changed ticketfrei flow logic, integrated mailbot!!! #11 2018-01-18 13:06:53 +01:00
sendmail.py started an IMAP listener to implement a 3rd bot: the Mailbot. #11 2018-01-05 14:16:24 +01:00
ticketfrei.py changed ticketfrei flow logic, integrated mailbot!!! #11 2018-01-18 13:06:53 +01:00
trigger.py Renamed config file to config.toml #6 2017-12-30 10:32:20 +01:00

README.md

Ticketfrei micro messaging bot

The functionality is simple: it retweets every tweet where it is mentioned.

This leads to a community which evolves around it; if you see ticket controllers, you tweet their location and mention the bot. The bot then retweets your tweet and others can read the info and think twice if they want to buy a ticket. If enough people, a critical mass, participate for the bot to become reliable, you have positive self-reinforcing dynamics.

There is one security hole: people could start mentioning the bot with useless information, turning it into a spammer. That's why it has to be maintained; if someone spams the bot, mute them and undo the retweet. So it won't retweet their future tweets and the useless retweet is deleted if someone tries to check if something was retweeted in the last hour or something. To this date, we have never heard of this happening though.

Website: https://wiki.links-it.de/IT/Ticketfrei

Install

Setting up a ticketfrei bot for your city is quite easy. Here are the few steps:

First you need to install python and virtualenv with your favourite package manager. Create and activate virtualenv:

sudo apt install python virtualenv
virtualenv -p python3 .
. bin/activate

Install the dependencies:

pip install tweepy pytoml requests Mastodon.py

Configure the bot:

cp config.toml.example config.toml
vim config.toml

Edit the account credentials, so your bot can use your accounts.

blacklisting

Also add the words to the goodlist, which you want to require. A tweet is only retweeted, if it contains at least one of them. If you want to RT everything, just add your account name.

There is also a blacklist, which you can use to automatically sort out malicious tweets. Be careful though, our filter can't read the intention with which a word was used. Maybe you wanted it there.

Note that atm the good- & blacklist are still outside of config.toml, in separate files. we will repare this soon.

screen

To keep the bots running when you are logged out of the shell, you can use screen:

sudo apt-get install screen 
echo "if [ -z "$STY" ]; then screen -RR; fi" >> ~/.bash_login
screen
python3 ticketfrei.py

To log out of the screen session, press "ctrl+a", and then "d".

ideas

  • You can only use the twitter API if you have confirmed a phone number and sacrificed a penguin in a blood ritual. So we should build it in a way that it uses the twitter web GUI. It's difficult, but maybe it works. We had another twitter bot that worked similarly, years ago: https://github.com/b3yond/twitter-bot
  • Build a tool that deletes wrong toots/tweets on both platforms, would work nicely with a web UI.
  • write the muted people to the db, to easily undo the mutes if necessary.

to do

Desktop/pycharm-community-2017.1.4/bin/pycharm.sh

  • Twitter: Crawl mentions
  • Mastodon: Crawl mentions
  • Write toots/tweets to database/log
  • Twitter: retweet people
  • Mastodon: boost people
  • Twitter: access the API
  • Web UI that lets you easily delete toots/tweets per db id and/or mute the tweet author
  • Write Bots as Classes to be easier implemented
  • Create extra Class for the filter
  • Put as much as possible into config.toml
  • Make both bots run on their own and next to each other
    • implement trigger class in retootbot
    • read config in retweetbot
  • put shutdown contact in config.toml
  • document what you have to configure if you setup the bot in another city
  • write a script to setup the bot easily. ask the admin for the necessary information
  • ongoing: solve issues