A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
3.1 KiB

  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
  4. #
  5. # Permission is hereby granted, free of charge, to any person obtaining a copy
  6. # of this software and associated documentation files (the "Software"), to deal
  7. # in the Software without restriction, including without limitation the rights
  8. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. # copies of the Software, and to permit persons to whom the Software is
  10. # furnished to do so, subject to the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included in
  13. # all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. # SOFTWARE.
  22. import re
  23. from earwigbot.commands import Command
  24. from earwigbot.irc import Data
  25. __all__ = ["Help"]
  26. class Help(Command):
  27. """Displays help information."""
  28. name = "help"
  29. def check(self, data):
  30. if data.is_command:
  31. if data.command == "help":
  32. return True
  33. if not data.command and data.trigger == data.my_nick:
  34. return True
  35. return False
  36. def process(self, data):
  37. if not data.command:
  38. self.do_hello(data)
  39. elif data.args:
  40. self.do_command_help(data)
  41. else:
  42. self.do_main_help(data)
  43. def do_main_help(self, data):
  44. """Give the user a general help message with a list of all commands."""
  45. msg = "Hi, I'm a bot! I have {0} commands loaded: {1}. You can get help for any command with '!help <command>'."
  46. cmnds = sorted(self.bot.commands)
  47. msg = msg.format(len(cmnds), ', '.join(cmnds))
  48. self.reply(data, msg)
  49. def do_command_help(self, data):
  50. """Give the user help for a specific command."""
  51. command = data.args[0]
  52. # Create a dummy message to test which commands pick up the user's
  53. # input:
  54. msg = ":foo!bar@example.com PRIVMSG #channel :msg".split()
  55. dummy = Data(self.bot, msg)
  56. dummy.command = command.lower()
  57. dummy.is_command = True
  58. for cmnd_name in self.bot.commands:
  59. cmnd = self.bot.commands.get(cmnd_name)
  60. if not cmnd.check(dummy):
  61. continue
  62. if cmnd.__doc__:
  63. doc = cmnd.__doc__.replace("\n", "")
  64. doc = re.sub("\s\s+", " ", doc)
  65. msg = "help for command \x0303{0}\x0301: \"{1}\""
  66. self.reply(data, msg.format(command, doc))
  67. return
  68. break
  69. msg = "sorry, no help for \x0303{0}\x0301.".format(command)
  70. self.reply(data, msg)
  71. def do_hello(self, data):
  72. self.say(data.chan, "Yes, {0}?".format(data.nick))