9
0
Fork 0
Bot.
Ir para arquivo
Romain H 58d727b70b update welcome message #5201 2021-05-09 17:29:53 +02:00
docs Fix statement about running coverage 2014-11-25 12:57:02 -05:00
init.d.deprecated migrate init.d to systemd service for auto restart 2018-11-08 18:02:15 +01:00
.gitignore Externalized welcomebot configuraiton file (#4286). 2020-03-11 03:38:42 +01:00
LICENSE.txt adds license, fixes #3 2014-01-27 00:54:02 -05:00
README.md Fix statement about running coverage 2014-11-25 12:57:02 -05:00
bot_settings-example.py Externalized welcomebot configuraiton file (#4286). 2020-03-11 03:38:42 +01:00
bot_settings.py Externalized welcomebot configuraiton file (#4286). 2020-03-11 03:38:42 +01:00
requirements.txt Add requirements.txt 2014-08-01 13:04:23 -04:00
test_bot.py Fixes wait time bug 2015-04-14 17:18:39 -04:00
test_nicks.csv Fixed a test involving writing nicks to csv file. 2014-05-22 21:55:43 +05:30
welcomebot.py update welcome message #5201 2021-05-09 17:29:53 +02:00
welcomebot.service Externalized welcomebot configuraiton file (#4286). 2020-03-11 03:38:42 +01:00
welcomebot.sh Externalized welcomebot configuraiton file (#4286). 2020-03-11 03:38:42 +01:00

README.md

What is this?

oh-irc-bot (or "WelcomeBot", its IRC nick) is a bot for welcoming people into the #openhatch irc channel when no one is paying attention. It has two main goals: first, to alert community members when someone new enters the room and says hello (either by using their nick in a response, or by sending a private message). Second, it helps the new person to feel welcome even when there's no one around, and provides more information to them about staying in touch.

Basic Structure

bot.py is the project's main file. It uses the socket module to communicate and gathers a list of known IRC nicknames, stored in nicks.csv. Its basic functions include:

  1. If someone enters the channel, the bot checks to see if they are a known nick. If not, it adds them to a list of people to greet. If no one else has spoken into the channel after a period of time, 60 seconds by default, it greets them. If someone else (not the new nick) speaks into the channel within the set wait time, or if the nick is known, the bot remains silent. The bots response text includes the nicks of channel maintainers/frequent contributors so that they are pinged. Channel maintainers can change the wait time of the bot by using the following command in the irc channel: Botname --wait-time new wait time in seconds.
  2. If someone says hello to the bot, the bot says hello back.
  3. If someone asks the bot for information (via key phrases like "help", "faq", etc) the bot explains what it is and links to this repository.

The repository contains test_bot.py, which is a set of automated tests for the bot. To learn more about these, see Testing below or the testing tutorial. It also contains test_nicks.csv, the set of nicks used for the automated tests.

Finally, we have a docs folder which contains tutorial-style instructions for various concepts used by WelcomeBot. Currently there is one tutorial, for unit testing.

Setting up

Currently, the bot is only compatible up to Python 2.7.

To run the bot:

  1. Download the repository. If you need help using github, see here.
  2. Edit bot.py to change the nickname to something besides "WelcomeBot" and the channel to "openhatch-bots".
  3. Open up a command line and type python bot.py.
  4. Although all IRC messages should be printed to your command line, for development purposes, it will probably be useful to be on IRC separately using your normal nick.

If you run into setup difficulties, ping shauna on freenode (via the #openhatch channel is preferred) and/or leave an issue in this repository's issue tracker.

In order to keep the bot continuously running, we put it on a server using the following command:

nohup python bot.py &

Nohup keeps it from terminating when we close the terminal and & keeps it from printing the IRC messages to the terminal.

Testing

We use Python unittest to test the bot, and Coverage to look at the test coverage.

When running tests, use this command:

python -m unittest test_bot

The output should tell you how many tests you ran and if any of them are failures.

When creating tests, you can use the following series of commands to see whether your test is testing the code you want it to test:

./bin/coverage run test_bot.py ./bin/coverage html

You can then see the results in htmlcov/index.html.

Note: You will likely need to install coverage. The above command assumes you have installed it to a virtual environment. If you haven't, use coverage instead of bin/coverage, for example: coverage run test_bot.py

How to help

The issue tracker lists improvements we want to make. Tasks that are better for newcomers are labelled first task.

I strongly encourage you to contact me and say hello before you get started (I am shauna on the #openhatch IRC). Please feel free to submit pull requests to address these issues. If you're not familiar with how to do this using github, see here. You can also always ask me for help or clarification.

Credit

This bot was adapted from code found here.