|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- # -*- coding: utf-8 -*-
- #
- # Copyright (C) 2009-2013 Ben Kurtovic <ben.kurtovic@verizon.net>
- #
- # Permission is hereby granted, free of charge, to any person obtaining a copy
- # of this software and associated documentation files (the "Software"), to deal
- # in the Software without restriction, including without limitation the rights
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- # copies of the Software, and to permit persons to whom the Software is
- # furnished to do so, subject to the following conditions:
- #
- # The above copyright notice and this permission notice shall be included in
- # all copies or substantial portions of the Software.
- #
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- # SOFTWARE.
-
- from earwigbot import wiki
- from earwigbot.commands import Command
-
- class AFCReport(Command):
- """Get information about an AFC submission by name."""
- name = "report"
-
- def process(self, data):
- self.site = self.bot.wiki.get_site()
- self.data = data
-
- try:
- self.statistics = self.bot.tasks.get("afc_statistics")
- except KeyError:
- e = "Cannot run command: requires afc_statistics task (from earwigbot_plugins)"
- self.logger.error(e)
- msg = "command requires afc_statistics task (from earwigbot_plugins)"
- self.reply(data, msg)
- return
-
- if not data.args:
- msg = "What submission do you want me to give information about?"
- self.reply(data, msg)
- return
-
- title = " ".join(data.args)
- title = title.replace("http://en.wikipedia.org/wiki/", "")
- title = title.replace("http://enwp.org/", "").strip()
-
- # Given '!report Foo', first try [[Foo]]:
- page = self.get_page(title)
- if page:
- return self.report(page)
-
- # Then try [[Wikipedia:Articles for creation/Foo]]:
- newtitle = "/".join(("Wikipedia:Articles for creation", title))
- page = self.get_page(newtitle)
- if page:
- return self.report(page)
-
- # Then try [[Wikipedia talk:Articles for creation/Foo]]:
- newtitle = "/".join(("Wikipedia talk:Articles for creation", title))
- page = self.get_page(newtitle)
- if page:
- return self.report(page)
-
- self.reply(data, "Submission \x0302{0}\x0F not found.".format(title))
-
- def get_page(self, title):
- page = self.site.get_page(title, follow_redirects=False)
- if page.exists == page.PAGE_EXISTS:
- return page
-
- def report(self, page):
- url = page.url.encode("utf8")
- url = url.replace("en.wikipedia.org/wiki", "enwp.org")
- short = self.statistics.get_short_title(page.title)
- status = self.get_status(page)
- user = page.get_creator()
- user_name = user.name
- user_url = user.get_talkpage().url.encode("utf8")
-
- msg1 = "AfC submission report for \x0302{0}\x0F ({1}):"
- msg2 = "Status: \x0303{0}\x0F"
- msg3 = "Submitted by \x0302{0}\x0F ({1})"
- if status == "accepted":
- msg3 = "Reviewed by \x0302{0}\x0F ({1})"
-
- self.reply(self.data, msg1.format(short, url))
- self.say(self.data.chan, msg2.format(status))
- self.say(self.data.chan, msg3.format(user_name, user_url))
-
- def get_status(self, page):
- if page.is_redirect:
- target = page.get_redirect_target()
- if self.site.get_page(target).namespace == wiki.NS_MAIN:
- return "accepted"
- return "redirect"
-
- statuses = self.statistics.get_statuses(page.get())
- if "R" in statuses:
- return "being reviewed"
- elif "H" in statuses:
- return "pending draft"
- elif "P" in statuses:
- return "pending submission"
- elif "T" in statuses:
- return "unsubmitted draft"
- elif "D" in statuses:
- return "declined"
- return "unkown"
|