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.

153 lines
6.0 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 threading
  23. import re
  24. from earwigbot.commands import BaseCommand
  25. from earwigbot.irc import KwargParseException
  26. class Command(BaseCommand):
  27. """Manage wiki tasks from IRC, and check on thread status."""
  28. name = "threads"
  29. def check(self, data):
  30. commands = ["tasks", "task", "threads", "tasklist"]
  31. if data.is_command and data.command in commands:
  32. return True
  33. return False
  34. def process(self, data):
  35. self.data = data
  36. if data.host not in self.config.irc["permissions"]["owners"]:
  37. msg = "you must be a bot owner to use this command."
  38. self.connection.reply(data, msg)
  39. return
  40. if not data.args:
  41. if data.command == "tasklist":
  42. self.do_list()
  43. else:
  44. msg = "no arguments provided. Maybe you wanted '!{0} list', '!{0} start', or '!{0} listall'?"
  45. self.connection.reply(data, msg.format(data.command))
  46. return
  47. if data.args[0] == "list":
  48. self.do_list()
  49. elif data.args[0] == "start":
  50. self.do_start()
  51. elif data.args[0] in ["listall", "all"]:
  52. self.do_listall()
  53. else: # They asked us to do something we don't know
  54. msg = "unknown argument: \x0303{0}\x0301.".format(data.args[0])
  55. self.connection.reply(data, msg)
  56. def do_list(self):
  57. """With !tasks list (or abbreviation !tasklist), list all running
  58. threads. This includes the main threads, like the irc frontend and the
  59. watcher, and task threads."""
  60. threads = threading.enumerate()
  61. normal_threads = []
  62. task_threads = []
  63. for thread in threads:
  64. tname = thread.name
  65. if tname == "MainThread":
  66. t = "\x0302MainThread\x0301 (id {0})"
  67. normal_threads.append(t.format(thread.ident))
  68. elif tname in self.config.components:
  69. t = "\x0302{0}\x0301 (id {1})"
  70. normal_threads.append(t.format(tname, thread.ident))
  71. elif tname.startswith("reminder"):
  72. tname = tname.replace("reminder ", "")
  73. t = "\x0302reminder\x0301 (until {0})"
  74. normal_threads.append(t.format(tname))
  75. else:
  76. tname, start_time = re.findall("^(.*?) \((.*?)\)$", tname)[0]
  77. t = "\x0302{0}\x0301 (id {1}, since {2})"
  78. task_threads.append(t.format(tname, thread.ident, start_time))
  79. if task_threads:
  80. msg = "\x02{0}\x0F threads active: {1}, and \x02{2}\x0F task threads: {3}."
  81. msg = msg.format(len(threads), ', '.join(normal_threads),
  82. len(task_threads), ', '.join(task_threads))
  83. else:
  84. msg = "\x02{0}\x0F threads active: {1}, and \x020\x0F task threads."
  85. msg = msg.format(len(threads), ', '.join(normal_threads))
  86. self.connection.reply(self.data, msg)
  87. def do_listall(self):
  88. """With !tasks listall or !tasks all, list all loaded tasks, and report
  89. whether they are currently running or idle."""
  90. threads = threading.enumerate()
  91. tasklist = []
  92. for task in sorted(self.bot.tasks):
  93. threadlist = [t for t in threads if t.name.startswith(task)]
  94. ids = [str(t.ident) for t in threadlist]
  95. if not ids:
  96. tasklist.append("\x0302{0}\x0301 (idle)".format(task))
  97. elif len(ids) == 1:
  98. t = "\x0302{0}\x0301 (\x02active\x0F as id {1})"
  99. tasklist.append(t.format(task, ids[0]))
  100. else:
  101. t = "\x0302{0}\x0301 (\x02active\x0F as ids {1})"
  102. tasklist.append(t.format(task, ', '.join(ids)))
  103. tasklist = ", ".join(tasklist)
  104. msg = "{0} tasks loaded: {1}.".format(len(all_tasks), tasklist)
  105. self.connection.reply(self.data, msg)
  106. def do_start(self):
  107. """With !tasks start, start any loaded task by name with or without
  108. kwargs."""
  109. data = self.data
  110. try:
  111. task_name = data.args[1]
  112. except IndexError: # No task name given
  113. self.connection.reply(data, "what task do you want me to start?")
  114. return
  115. try:
  116. data.parse_kwargs()
  117. except KwargParseException, arg:
  118. msg = "error parsing argument: \x0303{0}\x0301.".format(arg)
  119. self.connection.reply(data, msg)
  120. return
  121. if task_name not in self.bot.tasks:
  122. # This task does not exist or hasn't been loaded:
  123. msg = "task could not be found; either it doesn't exist, or it wasn't loaded correctly."
  124. self.connection.reply(data, msg.format(task_name))
  125. return
  126. data.kwargs["fromIRC"] = True
  127. self.bot.tasks.start(task_name, **data.kwargs)
  128. msg = "task \x0302{0}\x0301 started.".format(task_name)
  129. self.connection.reply(data, msg)