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.

63 lines
2.6 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 earwigbot.commands import Command
  21. class Langcode(Command):
  22. """Convert a language code into its name (or vice versa), and give a list
  23. of WMF sites in that language."""
  24. name = "langcode"
  25. commands = ["langcode", "lang", "language"]
  26. def process(self, data):
  27. if not data.args:
  28. self.reply(data, "Please specify a language code or name.")
  29. return
  30. code, lcase = data.args[0], data.args[0].lower()
  31. site = self.bot.wiki.get_site()
  32. matrix = site.api_query(action="sitematrix")["sitematrix"]
  33. del matrix["count"]
  34. del matrix["specials"]
  35. for site in matrix.values():
  36. if not site["name"]:
  37. continue
  38. name = site["name"].encode("utf8")
  39. localname = site["localname"].encode("utf8")
  40. if site["code"] == lcase:
  41. if name != localname:
  42. name += f" ({localname})"
  43. sites = ", ".join([s["url"] for s in site["site"]])
  44. msg = f"\x0302{code}\x0f is {name} ({sites})"
  45. self.reply(data, msg)
  46. return
  47. elif name.lower() == lcase or localname.lower() == lcase:
  48. if name != localname:
  49. name += f" ({localname})"
  50. sites = ", ".join([s["url"] for s in site["site"]])
  51. msg = "{0} is \x0302{1}\x0f ({2})"
  52. self.reply(data, msg.format(name, site["code"], sites))
  53. return
  54. self.reply(data, f"Language \x0302{code}\x0f not found.")