Skip to content

hashar/pywikibugs

 
 

Repository files navigation

wikibugs is a project on Wikimedia Tool Labs which took other an old Perl based script to relay Bugzilla notifications to IRC.

The bot is currently alpha stage, being tested in a few IRC channels on freenode.net.

The entire project is Python 3.4 / asyncio based.

Steps from change to IRC

  1. User makes a change on [https://bugzilla.wikimedia.org/](Wikimedia Bugzilla)
  2. Bugzilla sends an e-mail to the list https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
  3. Tools mail server receives the e-mail. .forward pipes it to /toredis.py
  4. toredis.py sends the e-mail to Redis ('PUBLISH')

The Redis step is useful because the mail and exec hosts are not necessarily the same. Making them find eachother is also not completely trivial.

  1. The IRC bot listens to events on Redis ('SUBSCRIBE')
  2. The IRC bot receives the new e-mail
  3. bzparser.py parses the e-mail into a dict
  4. Asynchronously, bzparser.py retrieves real names for e-mail addresses. If no response is received within 30 seconds, the request is stopped. (pywikibugs.parse_email.fixup_future)
  5. For each channel, pywikibugs.send_messages builds a message (via build_message) and dispatches it to the IRC channel

Deploying

cd src/pywikibugs && git pull && cd ~ && ./start.bash

This will kill the current SGE job and start a new one.

Please log this using !log local-wikibugs <message> in #wikimedia-labs.

Adding a new channel

Adapt the pywikibugs.channels dict. The format is:

<channel name> => (filter function, parameters for build_message)

The filter function gets the bug change dict passed as parameter.

e.g.

{"#pywikipediabot": (lambda x: x.get("X-Bugzilla-Product", None) == "Pywikibot", {})}

will filter all Pywikibot bugs, without sending any special parameters to build_message.

{"#somechannel": (lambda x: True, {'hide_product': True})}

would send all bugs to #somechannel, but hides the product names.

About

Python-based Bugzilla reporter

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.3%
  • Shell 0.7%