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.

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