ffpb_fun.py 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # -*- coding: utf-8 -*-
  2. from __future__ import print_function
  3. import willie
  4. import random
  5. COFFEE_RULE = '(make[_-]me[_-](a[_-])?)?coffee'
  6. def setup(bot):
  7. """Called by willie upon loading this plugin."""
  8. pass
  9. def shutdown(bot):
  10. """Called by willie upon unloading this plugin."""
  11. pass
  12. @willie.module.rule(r'(?i)(hi|hallo|moin|morgen|guten morgen|re)[ \t]*$')
  13. def ffpb_greeting(bot, trigger):
  14. stats = bot.memory['ffpb_stats'] if 'ffpb_stats' in bot.memory else None
  15. if stats is None:
  16. print("ffpb_greeting: stats is None -> keine Antwort")
  17. return
  18. greeting = random.choice((
  19. 'Hi {0}, bist du einer der {2} Clients an unseren {1} Knoten?',
  20. 'Hey {0}, schön dich zu sehen. Gerade sind übrigens {1} Knoten mit {2} Clients online.',
  21. '{1} Knoten online, {2} Clients im Netz und {0} gibt uns die Ehre - Herzlich Willkommen :)'))
  22. bot.say(greeting.format(trigger.nick, stats["nodes_active"], stats["clients"]))
  23. @willie.module.rule(r'(?i)(alles )?fake[?!]?')
  24. def ffpb_nofake(bot, trigger):
  25. msg = random.choice((
  26. u'zweifelt {0}s Glaubwürdigkeit an.',
  27. 'glaubt nicht, dass {0} echt ist.',
  28. ))
  29. bot.action(msg.format(trigger.nick))
  30. @willie.module.commands('fake')
  31. def ffpb_fakecmd(bot, trigger):
  32. bot.say('Public Service Announcement: {0} ist ein Fake.'.format(trigger.nick))
  33. @willie.module.rule(r'(?i)!(sudo )?rm -rf (--no-preserve-root )?/')
  34. def ffpb_rmrf(bot, trigger):
  35. bot.action("liest dann mal sehr schnell " + trigger.nick + "s Mails o.O")
  36. @willie.module.rule(r'(?i)!' + COFFEE_RULE)
  37. def ffpb_kaffee(bot, trigger):
  38. bot.say("Kein sudo, kein Kaffee.")
  39. @willie.module.rule(r'(?i)!sudo ' + COFFEE_RULE)
  40. def ffpb_sudokaffee(bot, trigger):
  41. bot.action("reicht " + trigger.nick + " eine dampfende, aromatisch duftende Tasse Kaffee.")
  42. @willie.module.rule(r'(?i).*(teurer|besser|neuer|cooler|geiler|mehr|weniger) wie')
  43. def ffpb_grammarnazi_als(bot, trigger):
  44. bot.say("*als")
  45. @willie.module.rule(r'(?i).*(genauso|genau so) als')
  46. def ffpb_grammarnazi_wie(bot, trigger):
  47. bot.say("*wie")
  48. @willie.module.rule(r'(?i).*als wie')
  49. def ffpb_grammarnazi_alswie(bot, trigger):
  50. bot.action("denkt spontan an seine Deutschlehrerin")
  51. @willie.module.rule(r'(?i)gi(ve |m)me the key to your heart')
  52. def ffpb_botkey(bot, trigger):
  53. bot.reply('ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDJfsG/myO4y9WzJSP+ixluHFmkIMJJRsvRT8t5h4y/5A7QzovOw1GpCmWJWnZ6GKXilTxb8ycqVfDcFPB2NRkdJUjYL+v4IMriPeBigAjc6FoUZXOS3TOZVhaTlNT4XxXKOYF/Rpgscv5f0iu1SG0Tp4mb2TX04pZjbnLNBABbjn592abEuMG5bH/g9odi50S0MoU/qCH9AZvkoc8vGu+flOBrKfFi+7g2GxF/w66mMvCJfK27QFSPOiFV3CT6ZfSZM138OCdC1SOi89X9+oCEQ3LB9A+bJgyYnxqp8eVpRPui6K9sPkax71tMimRJA5Xgdvqt9HpcgtNYxKJ4gYMR ffpb-statusbot')