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.8 KiB

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