Additional IRC commands and bot tasks for EarwigBot https://en.wikipedia.org/wiki/User:EarwigBot
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

752 rindas
32 KiB

  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright (C) 2009-2017 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. from datetime import datetime
  23. import re
  24. from os.path import expanduser
  25. from threading import Lock
  26. from time import sleep
  27. import mwparserfromhell
  28. import oursql
  29. from earwigbot import exceptions
  30. from earwigbot import wiki
  31. from earwigbot.tasks import Task
  32. class AFCStatistics(Task):
  33. """A task to generate statistics for WikiProject Articles for Creation.
  34. Statistics are stored in a MySQL database ("u_earwig_afc_statistics")
  35. accessed with oursql. Statistics are synchronied with the live database
  36. every four minutes and saved once an hour, on the hour, to self.pagename.
  37. In the live bot, this is "Template:AFC statistics".
  38. """
  39. name = "afc_statistics"
  40. number = 2
  41. # Chart status number constants:
  42. CHART_NONE = 0
  43. CHART_PEND = 1
  44. CHART_REVIEW = 3
  45. CHART_ACCEPT = 4
  46. CHART_DECLINE = 5
  47. CHART_MISPLACE = 6
  48. def setup(self):
  49. self.cfg = cfg = self.config.tasks.get(self.name, {})
  50. self.site = self.bot.wiki.get_site()
  51. self.revision_cache = {}
  52. # Set some wiki-related attributes:
  53. self.pagename = cfg.get("page", "Template:AFC statistics")
  54. self.pending_cat = cfg.get("pending", "Pending AfC submissions")
  55. self.ignore_list = cfg.get("ignoreList", [])
  56. default_summary = "Updating statistics for [[WP:WPAFC|WikiProject Articles for creation]]."
  57. self.summary = self.make_summary(cfg.get("summary", default_summary))
  58. # Templates used in chart generation:
  59. templates = cfg.get("templates", {})
  60. self.tl_header = templates.get("header", "AFC statistics/header")
  61. self.tl_row = templates.get("row", "#invoke:AfC|row")
  62. self.tl_footer = templates.get("footer", "AFC statistics/footer")
  63. # Connection data for our SQL database:
  64. kwargs = cfg.get("sql", {})
  65. kwargs["read_default_file"] = expanduser("~/.my.cnf")
  66. self.conn_data = kwargs
  67. self.db_access_lock = Lock()
  68. def run(self, **kwargs):
  69. """Entry point for a task event.
  70. Depending on the kwargs passed, we will either synchronize our local
  71. statistics database with the site (self.sync()) or save it to the wiki
  72. (self.save()). We will additionally create an SQL connection with our
  73. local database.
  74. """
  75. action = kwargs.get("action")
  76. if not self.db_access_lock.acquire(False): # Non-blocking
  77. if action == "sync":
  78. self.logger.info("A sync is already ongoing; aborting")
  79. return
  80. self.logger.info("Waiting for database access lock")
  81. self.db_access_lock.acquire()
  82. try:
  83. self.site = self.bot.wiki.get_site()
  84. self.conn = oursql.connect(**self.conn_data)
  85. self.revision_cache = {}
  86. try:
  87. if action == "save":
  88. self.save(kwargs)
  89. elif action == "sync":
  90. self.sync(kwargs)
  91. finally:
  92. self.conn.close()
  93. finally:
  94. self.db_access_lock.release()
  95. #################### CHART BUILDING AND SAVING METHODS ####################
  96. def save(self, kwargs):
  97. """Save our local statistics to the wiki.
  98. After checking for emergency shutoff, the statistics chart is compiled,
  99. and then saved to self.pagename using self.summary iff it has changed
  100. since last save.
  101. """
  102. self.logger.info("Saving chart")
  103. if kwargs.get("fromIRC"):
  104. summary = self.summary + " (!earwigbot)"
  105. else:
  106. if self.shutoff_enabled():
  107. return
  108. summary = self.summary
  109. statistics = self._compile_charts()
  110. page = self.site.get_page(self.pagename)
  111. text = page.get()
  112. newtext = re.sub(u"<!-- stat begin -->(.*?)<!-- stat end -->",
  113. "<!-- stat begin -->\n" + statistics + "\n<!-- stat end -->",
  114. text, flags=re.DOTALL)
  115. if newtext == text:
  116. self.logger.info("Chart unchanged; not saving")
  117. return # Don't edit the page if we're not adding anything
  118. newtext = re.sub("<!-- sig begin -->(.*?)<!-- sig end -->",
  119. "<!-- sig begin -->~~~ at ~~~~~<!-- sig end -->",
  120. newtext)
  121. page.edit(newtext, summary, minor=True, bot=True)
  122. self.logger.info(u"Chart saved to [[{0}]]".format(page.title))
  123. def _compile_charts(self):
  124. """Compile and return all statistics information from our local db."""
  125. stats = ""
  126. with self.conn.cursor() as cursor:
  127. cursor.execute("SELECT * FROM chart")
  128. for chart in cursor:
  129. stats += self._compile_chart(chart) + "\n"
  130. return stats[:-1] # Drop the last newline
  131. def _compile_chart(self, chart_info):
  132. """Compile and return a single statistics chart."""
  133. chart_id, chart_title, special_title = chart_info
  134. chart = self.tl_header + "|" + chart_title
  135. if special_title:
  136. chart += "|" + special_title
  137. chart = "{{" + chart + "}}"
  138. query = "SELECT * FROM page JOIN row ON page_id = row_id WHERE row_chart = ?"
  139. with self.conn.cursor(oursql.DictCursor) as cursor:
  140. cursor.execute(query, (chart_id,))
  141. for page in cursor.fetchall():
  142. chart += "\n" + self._compile_chart_row(page)
  143. chart += "\n{{" + self.tl_footer + "}}"
  144. return chart
  145. def _compile_chart_row(self, page):
  146. """Compile and return a single chart row.
  147. 'page' is a dict of page information, taken as a row from the page
  148. table, where keys are column names and values are their cell contents.
  149. """
  150. row = u"{0}|s={page_status}|t={page_title}|z={page_size}|"
  151. if page["page_special_oldid"]:
  152. row += "sr={page_special_user}|sd={page_special_time}|si={page_special_oldid}|"
  153. row += "mr={page_modify_user}|md={page_modify_time}|mi={page_modify_oldid}"
  154. page["page_special_time"] = self._fmt_time(page["page_special_time"])
  155. page["page_modify_time"] = self._fmt_time(page["page_modify_time"])
  156. if page["page_notes"]:
  157. row += "|n=1{page_notes}"
  158. return "{{" + row.format(self.tl_row, **page) + "}}"
  159. def _fmt_time(self, date):
  160. """Format a datetime into the standard MediaWiki timestamp format."""
  161. return date.strftime("%H:%M, %d %b %Y")
  162. ######################## PRIMARY SYNC ENTRY POINTS ########################
  163. def sync(self, kwargs):
  164. """Synchronize our local statistics database with the site.
  165. Syncing involves, in order, updating tracked submissions that have
  166. been changed since last sync (self._update_tracked()), adding pending
  167. submissions that are not tracked (self._add_untracked()), and removing
  168. old submissions from the database (self._delete_old()).
  169. The sync will be canceled if SQL replication lag is greater than 600
  170. seconds, because this will lead to potential problems and outdated
  171. data, not to mention putting demand on an already overloaded server.
  172. Giving sync the kwarg "ignore_replag" will go around this restriction.
  173. """
  174. self.logger.info("Starting sync")
  175. replag = self.site.get_replag()
  176. self.logger.debug("Server replag is {0}".format(replag))
  177. if replag > 600 and not kwargs.get("ignore_replag"):
  178. msg = "Sync canceled as replag ({0} secs) is greater than ten minutes"
  179. self.logger.warn(msg.format(replag))
  180. return
  181. with self.conn.cursor() as cursor:
  182. self._update_tracked(cursor)
  183. self._add_untracked(cursor)
  184. self._update_stale(cursor)
  185. self._delete_old(cursor)
  186. self.logger.info("Sync completed")
  187. def _update_tracked(self, cursor):
  188. """Update tracked submissions that have been changed since last sync.
  189. This is done by iterating through every page in our database and
  190. comparing our stored latest revision ID with the actual latest revision
  191. ID from an SQL query. If they differ, we will update our information
  192. about the page (self._update_page()).
  193. If the page does not exist, we will remove it from our database with
  194. self._untrack_page().
  195. """
  196. self.logger.debug("Updating tracked submissions")
  197. query1 = """SELECT page_id, page_title, page_modify_oldid
  198. FROM page"""
  199. query2 = """SELECT page_latest, page_title, page_namespace
  200. FROM page WHERE page_id = ?"""
  201. cursor.execute(query1)
  202. for pageid, title, oldid in cursor.fetchall():
  203. result = list(self.site.sql_query(query2, (pageid,)))
  204. if not result:
  205. self._untrack_page(cursor, pageid)
  206. continue
  207. real_oldid, real_title, real_ns = result[0]
  208. if oldid == real_oldid:
  209. continue
  210. msg = u"Updating page [[{0}]] (id: {1}) @ {2}"
  211. self.logger.debug(msg.format(title, pageid, oldid))
  212. msg = u" {0}: oldid: {1} -> {2}"
  213. self.logger.debug(msg.format(pageid, oldid, real_oldid))
  214. real_title = real_title.decode("utf8").replace("_", " ")
  215. ns = self.site.namespace_id_to_name(real_ns)
  216. if ns:
  217. real_title = u":".join((ns, real_title))
  218. try:
  219. self._update_page(cursor, pageid, real_title)
  220. except Exception:
  221. e = u"Error updating page [[{0}]] (id: {1})"
  222. self.logger.exception(e.format(real_title, pageid))
  223. def _add_untracked(self, cursor):
  224. """Add pending submissions that are not yet tracked.
  225. This is done by compiling a list of all currently tracked submissions
  226. and iterating through all members of self.pending_cat via SQL. If a
  227. page in the pending category is not tracked and is not in
  228. self.ignore_list, we will track it with self._track_page().
  229. """
  230. self.logger.debug("Adding untracked pending submissions")
  231. query1 = "SELECT page_id FROM page"
  232. query2 = """SELECT page_id, page_title, page_namespace
  233. INNER JOIN categorylinks ON page_id = cl_from
  234. WHERE cl_to = ?"""
  235. cursor.execute(query1)
  236. tracked = [pid for (pid,) in cursor.fetchall()]
  237. pend_cat = self.pending_cat.replace(" ", "_")
  238. for pageid, title, ns in self.site.sql_query(query2, (pend_cat,)):
  239. if pageid in tracked:
  240. continue
  241. title = title.decode("utf8").replace("_", " ")
  242. ns_name = self.site.namespace_id_to_name(ns)
  243. if ns_name:
  244. title = u":".join((ns_name, title))
  245. if title in self.ignore_list or ns == wiki.NS_CATEGORY:
  246. continue
  247. msg = u"Tracking page [[{0}]] (id: {1})".format(title, pageid)
  248. self.logger.debug(msg)
  249. try:
  250. self._track_page(cursor, pageid, title)
  251. except Exception:
  252. e = u"Error tracking page [[{0}]] (id: {1})"
  253. self.logger.exception(e.format(title, pageid))
  254. def _update_stale(self, cursor):
  255. """Update submissions that haven't been updated in a long time.
  256. This is intended to update notes that change without typical update
  257. triggers, like when submitters are blocked. It also resolves conflicts
  258. when pages are tracked during high replag, potentially causing data to
  259. be inaccurate (like a missed decline). It updates no more than the ten
  260. stalest pages that haven't been updated in two days.
  261. """
  262. self.logger.debug("Updating stale submissions")
  263. query = """SELECT page_id, page_title, page_modify_oldid
  264. FROM page JOIN updatelog ON page_id = update_id
  265. WHERE ADDTIME(update_time, '48:00:00') < NOW()
  266. ORDER BY update_time ASC LIMIT 10"""
  267. cursor.execute(query)
  268. for pageid, title, oldid in cursor:
  269. msg = u"Updating page [[{0}]] (id: {1}) @ {2}"
  270. self.logger.debug(msg.format(title, pageid, oldid))
  271. try:
  272. self._update_page(cursor, pageid, title)
  273. except Exception:
  274. e = u"Error updating page [[{0}]] (id: {1})"
  275. self.logger.exception(e.format(title, pageid))
  276. def _delete_old(self, cursor):
  277. """Remove old submissions from the database.
  278. "Old" is defined as a submission that has been declined or accepted
  279. more than 36 hours ago. Pending submissions cannot be "old".
  280. """
  281. self.logger.debug("Removing old submissions from chart")
  282. query = """DELETE FROM page, row, updatelog USING page JOIN row
  283. ON page_id = row_id JOIN updatelog ON page_id = update_id
  284. WHERE row_chart IN (?, ?)
  285. AND ADDTIME(page_special_time, '36:00:00') < NOW()"""
  286. cursor.execute(query, (self.CHART_ACCEPT, self.CHART_DECLINE))
  287. ######################## PRIMARY PAGE ENTRY POINTS ########################
  288. def _untrack_page(self, cursor, pageid):
  289. """Remove a page, given by ID, from our database."""
  290. self.logger.debug("Untracking page (id: {0})".format(pageid))
  291. query = """DELETE FROM page, row, updatelog USING page JOIN row
  292. ON page_id = row_id JOIN updatelog ON page_id = update_id
  293. WHERE page_id = ?"""
  294. cursor.execute(query, (pageid,))
  295. def _track_page(self, cursor, pageid, title):
  296. """Update hook for when page is not in our database.
  297. A variety of SQL queries are used to gather information about the page,
  298. which is then saved to our database.
  299. """
  300. content = self._get_content(pageid)
  301. if content is None:
  302. msg = u"Could not get page content for [[{0}]]".format(title)
  303. self.logger.error(msg)
  304. return
  305. namespace = self.site.get_page(title).namespace
  306. status, chart = self._get_status_and_chart(content, namespace)
  307. if chart == self.CHART_NONE:
  308. msg = u"Could not find a status for [[{0}]]".format(title)
  309. self.logger.warn(msg)
  310. return
  311. m_user, m_time, m_id = self._get_modify(pageid)
  312. s_user, s_time, s_id = self._get_special(pageid, content, chart)
  313. notes = self._get_notes(chart, content, m_time, s_user)
  314. query1 = "INSERT INTO row VALUES (?, ?)"
  315. query2 = "INSERT INTO page VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
  316. query3 = "INSERT INTO updatelog VALUES (?, ?)"
  317. cursor.execute(query1, (pageid, chart))
  318. cursor.execute(query2, (pageid, status, title, len(content), notes,
  319. m_user, m_time, m_id, s_user, s_time, s_id))
  320. cursor.execute(query3, (pageid, datetime.utcnow()))
  321. def _update_page(self, cursor, pageid, title):
  322. """Update hook for when page is already in our database.
  323. A variety of SQL queries are used to gather information about the page,
  324. which is compared against our stored information. Differing information
  325. is then updated.
  326. """
  327. content = self._get_content(pageid)
  328. if content is None:
  329. msg = u"Could not get page content for [[{0}]]".format(title)
  330. self.logger.error(msg)
  331. return
  332. namespace = self.site.get_page(title).namespace
  333. status, chart = self._get_status_and_chart(content, namespace)
  334. if chart == self.CHART_NONE:
  335. self._untrack_page(cursor, pageid)
  336. return
  337. query = "SELECT * FROM page JOIN row ON page_id = row_id WHERE page_id = ?"
  338. with self.conn.cursor(oursql.DictCursor) as dict_cursor:
  339. dict_cursor.execute(query, (pageid,))
  340. result = dict_cursor.fetchall()[0]
  341. m_user, m_time, m_id = self._get_modify(pageid)
  342. if title != result["page_title"]:
  343. self._update_page_title(cursor, result, pageid, title)
  344. if m_id != result["page_modify_oldid"]:
  345. self._update_page_modify(cursor, result, pageid, len(content),
  346. m_user, m_time, m_id)
  347. if status != result["page_status"]:
  348. special = self._update_page_status(cursor, result, pageid, content,
  349. status, chart)
  350. s_user = special[0]
  351. else:
  352. s_user = result["page_special_user"]
  353. notes = self._get_notes(chart, content, m_time, s_user)
  354. if notes != result["page_notes"]:
  355. self._update_page_notes(cursor, result, pageid, notes)
  356. query = "UPDATE updatelog SET update_time = ? WHERE update_id = ?"
  357. cursor.execute(query, (datetime.utcnow(), pageid))
  358. ###################### PAGE ATTRIBUTE UPDATE METHODS ######################
  359. def _update_page_title(self, cursor, result, pageid, title):
  360. """Update the title of a page in our database."""
  361. query = "UPDATE page SET page_title = ? WHERE page_id = ?"
  362. cursor.execute(query, (title, pageid))
  363. msg = u" {0}: title: {1} -> {2}"
  364. self.logger.debug(msg.format(pageid, result["page_title"], title))
  365. def _update_page_modify(self, cursor, result, pageid, size, m_user, m_time, m_id):
  366. """Update the last modified information of a page in our database."""
  367. query = """UPDATE page SET page_size = ?, page_modify_user = ?,
  368. page_modify_time = ?, page_modify_oldid = ?
  369. WHERE page_id = ?"""
  370. cursor.execute(query, (size, m_user, m_time, m_id, pageid))
  371. msg = u" {0}: modify: {1} / {2} / {3} -> {4} / {5} / {6}"
  372. msg = msg.format(pageid, result["page_modify_user"],
  373. result["page_modify_time"],
  374. result["page_modify_oldid"], m_user, m_time, m_id)
  375. self.logger.debug(msg)
  376. def _update_page_status(self, cursor, result, pageid, content, status, chart):
  377. """Update the status and "specialed" information of a page."""
  378. query1 = """UPDATE page JOIN row ON page_id = row_id
  379. SET page_status = ?, row_chart = ? WHERE page_id = ?"""
  380. query2 = """UPDATE page SET page_special_user = ?,
  381. page_special_time = ?, page_special_oldid = ?
  382. WHERE page_id = ?"""
  383. cursor.execute(query1, (status, chart, pageid))
  384. msg = " {0}: status: {1} ({2}) -> {3} ({4})"
  385. self.logger.debug(msg.format(pageid, result["page_status"],
  386. result["row_chart"], status, chart))
  387. s_user, s_time, s_id = self._get_special(pageid, content, chart)
  388. if s_id != result["page_special_oldid"]:
  389. cursor.execute(query2, (s_user, s_time, s_id, pageid))
  390. msg = u" {0}: special: {1} / {2} / {3} -> {4} / {5} / {6}"
  391. msg = msg.format(pageid, result["page_special_user"],
  392. result["page_special_time"],
  393. result["page_special_oldid"], s_user, s_time, s_id)
  394. self.logger.debug(msg)
  395. return s_user, s_time, s_id
  396. def _update_page_notes(self, cursor, result, pageid, notes):
  397. """Update the notes (or warnings) of a page in our database."""
  398. query = "UPDATE page SET page_notes = ? WHERE page_id = ?"
  399. cursor.execute(query, (notes, pageid))
  400. msg = " {0}: notes: {1} -> {2}"
  401. self.logger.debug(msg.format(pageid, result["page_notes"], notes))
  402. ###################### DATA RETRIEVAL HELPER METHODS ######################
  403. def _get_content(self, pageid):
  404. """Get the current content of a page by ID from the API.
  405. The page's current revision ID is retrieved from SQL, and then
  406. an API query is made to get its content. This is the only API query
  407. used in the task's code.
  408. """
  409. query = "SELECT page_latest FROM page WHERE page_id = ?"
  410. result = self.site.sql_query(query, (pageid,))
  411. try:
  412. revid = int(list(result)[0][0])
  413. except IndexError:
  414. return None
  415. return self._get_revision_content(revid)
  416. def _get_revision_content(self, revid, tries=1):
  417. """Get the content of a revision by ID from the API."""
  418. if revid in self.revision_cache:
  419. return self.revision_cache[revid]
  420. res = self.site.api_query(action="query", prop="revisions",
  421. revids=revid, rvprop="content")
  422. try:
  423. content = res["query"]["pages"].values()[0]["revisions"][0]["*"]
  424. except KeyError:
  425. if tries == 0:
  426. raise
  427. sleep(5)
  428. return self._get_revision_content(revid, tries=tries - 1)
  429. self.revision_cache[revid] = content
  430. return content
  431. def _get_status_and_chart(self, content, namespace):
  432. """Determine the status and chart number of an AFC submission.
  433. The methodology used here is the same one I've been using for years
  434. (see also commands.afc_report), but with the new draft system taken
  435. into account. The order here is important: if there is more than one
  436. {{AFC submission}} template on a page, we need to know which one to
  437. use (revision history search to find the most recent isn't a viable
  438. idea :P).
  439. """
  440. statuses = self.get_statuses(content)
  441. if namespace == wiki.NS_MAIN:
  442. if statuses:
  443. return None, self.CHART_MISPLACE
  444. return "a", self.CHART_ACCEPT
  445. elif "R" in statuses:
  446. return "r", self.CHART_REVIEW
  447. elif "P" in statuses:
  448. return "p", self.CHART_PEND
  449. elif "T" in statuses:
  450. return None, self.CHART_NONE
  451. elif "D" in statuses:
  452. return "d", self.CHART_DECLINE
  453. return None, self.CHART_NONE
  454. def get_statuses(self, content):
  455. """Return a list of all AFC submission statuses in a page's text."""
  456. valid = ["P", "R", "T", "D"]
  457. aliases = {
  458. "submit": "P",
  459. "afc submission/submit": "P",
  460. "afc submission/reviewing": "R",
  461. "afc submission/pending": "P",
  462. "afc submission/draft": "T",
  463. "afc submission/declined": "D"
  464. }
  465. statuses = []
  466. code = mwparserfromhell.parse(content)
  467. for template in code.filter_templates():
  468. name = template.name.strip().lower()
  469. if name == "afc submission":
  470. if template.has(1, ignore_empty=True):
  471. status = template.get(1).value.strip().upper()
  472. statuses.append(status if status in valid else "P")
  473. else:
  474. statuses.append("P")
  475. elif name in aliases:
  476. statuses.append(aliases[name])
  477. return statuses
  478. def _get_modify(self, pageid):
  479. """Return information about a page's last edit ("modification").
  480. This consists of the most recent editor, modification time, and the
  481. lastest revision ID.
  482. """
  483. query = """SELECT rev_user_text, rev_timestamp, rev_id FROM revision
  484. JOIN page ON rev_id = page_latest WHERE page_id = ?"""
  485. result = self.site.sql_query(query, (pageid,))
  486. m_user, m_time, m_id = list(result)[0]
  487. timestamp = datetime.strptime(m_time, "%Y%m%d%H%M%S")
  488. return m_user.decode("utf8"), timestamp, m_id
  489. def _get_special(self, pageid, content, chart):
  490. """Return information about a page's "special" edit.
  491. I tend to use the term "special" as a verb a lot, which is bound to
  492. cause confusion. It is merely a short way of saying "the edit in which
  493. a declined submission was declined, an accepted submission was
  494. accepted, a submission in review was set as such, a pending submission
  495. was submitted, and a "misplaced" submission was created."
  496. This "information" consists of the special edit's editor, its time, and
  497. its revision ID. If the page's status is not something that involves
  498. "special"-ing, we will return None for all three. The same will be
  499. returned if we cannot determine when the page was "special"-ed.
  500. """
  501. charts = {
  502. self.CHART_NONE: (lambda pageid, content: None, None, None),
  503. self.CHART_MISPLACE: self.get_create,
  504. self.CHART_ACCEPT: self.get_accepted,
  505. self.CHART_REVIEW: self.get_reviewing,
  506. self.CHART_PEND: self.get_pending,
  507. self.CHART_DECLINE: self.get_decline
  508. }
  509. return charts[chart](pageid, content)
  510. def get_create(self, pageid, content=None):
  511. """Return (creator, create_ts, create_revid) for the given page."""
  512. query = """SELECT rev_user_text, rev_timestamp, rev_id
  513. FROM revision WHERE rev_id =
  514. (SELECT MIN(rev_id) FROM revision WHERE rev_page = ?)"""
  515. result = self.site.sql_query(query, (pageid,))
  516. c_user, c_time, c_id = list(result)[0]
  517. timestamp = datetime.strptime(c_time, "%Y%m%d%H%M%S")
  518. return c_user.decode("utf8"), timestamp, c_id
  519. def get_accepted(self, pageid, content=None):
  520. """Return (acceptor, accept_ts, accept_revid) for the given page."""
  521. query = """SELECT rev_user_text, rev_timestamp, rev_id FROM revision
  522. WHERE rev_comment LIKE "% moved page [[%]] to [[%]]%"
  523. AND rev_page = ? ORDER BY rev_timestamp DESC LIMIT 1"""
  524. result = self.site.sql_query(query, (pageid,))
  525. try:
  526. a_user, a_time, a_id = list(result)[0]
  527. except IndexError:
  528. return None, None, None
  529. timestamp = datetime.strptime(a_time, "%Y%m%d%H%M%S")
  530. return a_user.decode("utf8"), timestamp, a_id
  531. def get_reviewing(self, pageid, content=None):
  532. """Return (reviewer, review_ts, review_revid) for the given page."""
  533. return self._search_history(pageid, self.CHART_REVIEW, ["R"], [])
  534. def get_pending(self, pageid, content):
  535. """Return (submitter, submit_ts, submit_revid) for the given page."""
  536. res = self._get_status_helper(pageid, content, ("P", ""), ("u", "ts"))
  537. return res or self._search_history(pageid, self.CHART_PEND, ["P"], [])
  538. def get_decline(self, pageid, content):
  539. """Return (decliner, decline_ts, decline_revid) for the given page."""
  540. params = ("decliner", "declinets")
  541. res = self._get_status_helper(pageid, content, ("D"), params)
  542. return res or self._search_history(
  543. pageid, self.CHART_DECLINE, ["D"], ["R", "P", "T"])
  544. def _get_status_helper(self, pageid, content, statuses, params):
  545. """Helper function for get_pending() and get_decline()."""
  546. submits = []
  547. code = mwparserfromhell.parse(content)
  548. for tmpl in code.filter_templates():
  549. status = tmpl.get(1).value.strip().upper() if tmpl.has(1) else "P"
  550. if tmpl.name.strip().lower() == "afc submission":
  551. if all([tmpl.has(par, ignore_empty=True) for par in params]):
  552. if status in statuses:
  553. data = [unicode(tmpl.get(par).value) for par in params]
  554. submits.append(data)
  555. if not submits:
  556. return None
  557. user, stamp = max(submits, key=lambda pair: pair[1])
  558. query = """SELECT rev_id FROM revision WHERE rev_page = ?
  559. AND rev_user_text = ? AND ABS(rev_timestamp - ?) <= 60
  560. ORDER BY ABS(rev_timestamp - ?) ASC LIMIT 1"""
  561. result = self.site.sql_query(query, (pageid, user, stamp, stamp))
  562. try:
  563. dtime = datetime.strptime(stamp, "%Y%m%d%H%M%S")
  564. return user, dtime, list(result)[0][0]
  565. except (ValueError, IndexError):
  566. return None
  567. def _search_history(self, pageid, chart, search_with, search_without):
  568. """Search through a page's history to find when a status was set.
  569. Linear search backwards in time for the edit right after the most
  570. recent edit that fails the (pseudocode) test:
  571. ``status_set(any(search_with)) && !status_set(any(search_without))``
  572. """
  573. query = """SELECT rev_user_text, rev_timestamp, rev_id
  574. FROM revision WHERE rev_page = ? ORDER BY rev_id DESC"""
  575. result = self.site.sql_query(query, (pageid,))
  576. counter = 0
  577. last = (None, None, None)
  578. for user, ts, revid in result:
  579. counter += 1
  580. if counter > 50:
  581. msg = "Exceeded 50 content lookups while searching history of page (id: {0}, chart: {1})"
  582. self.logger.warn(msg.format(pageid, chart))
  583. return None, None, None
  584. try:
  585. content = self._get_revision_content(revid)
  586. except exceptions.APIError:
  587. msg = "API error interrupted SQL query in _search_history() for page (id: {0}, chart: {1})"
  588. self.logger.exception(msg.format(pageid, chart))
  589. return None, None, None
  590. statuses = self.get_statuses(content)
  591. req = search_with and not any([s in statuses for s in search_with])
  592. if any([s in statuses for s in search_without]) or req:
  593. return last
  594. timestamp = datetime.strptime(ts, "%Y%m%d%H%M%S")
  595. last = (user.decode("utf8"), timestamp, revid)
  596. return last
  597. def _get_notes(self, chart, content, m_time, s_user):
  598. """Return any special notes or warnings about this page.
  599. copyvio: submission is a suspected copyright violation
  600. unsourced: submission lacks references completely
  601. no-inline: submission has no inline citations
  602. short: submission is less than a kilobyte in length
  603. resubmit: submission was resubmitted after a previous decline
  604. old: submission has not been touched in > 4 days
  605. blocked: submitter is currently blocked
  606. """
  607. notes = ""
  608. ignored_charts = [self.CHART_NONE, self.CHART_ACCEPT, self.CHART_DECLINE]
  609. if chart in ignored_charts:
  610. return notes
  611. copyvios = self.config.tasks.get("afc_copyvios", {})
  612. regex = r"\{\{s*" + copyvios.get("template", "AfC suspected copyvio")
  613. if re.search(regex, content):
  614. notes += "|nc=1" # Submission is a suspected copyvio
  615. if not re.search(r"\<ref\s*(.*?)\>(.*?)\</ref\>", content, re.I|re.S):
  616. regex = r"(https?:)|\[//(?!{0})([^ \]\t\n\r\f\v]+?)"
  617. sitedomain = re.escape(self.site.domain)
  618. if re.search(regex.format(sitedomain), content, re.I | re.S):
  619. notes += "|ni=1" # Submission has no inline citations
  620. else:
  621. notes += "|nu=1" # Submission is completely unsourced
  622. if len(content) < 1000:
  623. notes += "|ns=1" # Submission is short
  624. statuses = self.get_statuses(content)
  625. if "D" in statuses and chart != self.CHART_MISPLACE:
  626. notes += "|nr=1" # Submission was resubmitted
  627. time_since_modify = (datetime.utcnow() - m_time).total_seconds()
  628. max_time = 4 * 24 * 60 * 60
  629. if time_since_modify > max_time:
  630. notes += "|no=1" # Submission hasn't been touched in over 4 days
  631. if chart == self.CHART_PEND and s_user:
  632. submitter = self.site.get_user(s_user)
  633. try:
  634. if submitter.blockinfo:
  635. notes += "|nb=1" # Submitter is blocked
  636. except exceptions.UserNotFoundError: # Likely an IP
  637. pass
  638. return notes