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.

54 lines
2.0 KiB

  1. # Copyright (C) 2009-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
  2. #
  3. # Permission is hereby granted, free of charge, to any person obtaining a copy
  4. # of this software and associated documentation files (the "Software"), to deal
  5. # in the Software without restriction, including without limitation the rights
  6. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. # copies of the Software, and to permit persons to whom the Software is
  8. # furnished to do so, subject to the following conditions:
  9. #
  10. # The above copyright notice and this permission notice shall be included in
  11. # all copies or substantial portions of the Software.
  12. #
  13. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  19. # SOFTWARE.
  20. from urllib.parse import quote_plus
  21. from earwigbot import exceptions
  22. from earwigbot.commands import Command
  23. class Editcount(Command):
  24. """Return a user's edit count."""
  25. name = "editcount"
  26. commands = ["ec", "editcount"]
  27. def process(self, data):
  28. if not data.args:
  29. name = data.nick
  30. else:
  31. name = " ".join(data.args)
  32. site = self.bot.wiki.get_site()
  33. user = site.get_user(name)
  34. try:
  35. count = user.editcount
  36. except exceptions.UserNotFoundError:
  37. msg = "The user \x0302{0}\x0f does not exist."
  38. self.reply(data, msg.format(name))
  39. return
  40. safe = quote_plus(user.name.encode("utf8"))
  41. url = f"https://xtools.wmflabs.org/ec/{site.domain}/{safe}"
  42. fullurl = url.format(safe, site.domain)
  43. msg = "\x0302{0}\x0f has {1} edits ({2})."
  44. self.reply(data, msg.format(name, count, fullurl))