A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

597 satır
24 KiB

  1. # -*- coding: utf-8 -*-
  2. from cookielib import CookieJar
  3. from gzip import GzipFile
  4. from json import loads
  5. from re import escape as re_escape, match as re_match
  6. from StringIO import StringIO
  7. from time import sleep
  8. from urllib import unquote_plus, urlencode
  9. from urllib2 import build_opener, HTTPCookieProcessor, URLError
  10. from urlparse import urlparse
  11. try:
  12. import oursql
  13. except ImportError:
  14. oursql = None
  15. from wiki.category import Category
  16. from wiki.constants import *
  17. from wiki.exceptions import *
  18. from wiki.page import Page
  19. from wiki.user import User
  20. class Site(object):
  21. """
  22. EarwigBot's Wiki Toolset: Site Class
  23. Represents a Site, with support for API queries and returning Pages, Users,
  24. and Categories. The constructor takes a bunch of arguments and you probably
  25. won't need to call it directly, rather tools.get_site() for returning Site
  26. instances, tools.add_site() for adding new ones to config, and
  27. tools.del_site() for removing old ones from config, should suffice.
  28. Public methods:
  29. name -- returns our name (or "wikiid"), like "enwiki"
  30. project -- returns our project name, like "wikipedia"
  31. lang -- returns our language code, like "en"
  32. domain -- returns our web domain, like "en.wikipedia.org"
  33. api_query -- does an API query with the given kwargs as params
  34. sql_query -- does an SQL query and yields its results
  35. namespace_id_to_name -- given a namespace ID, returns associated name(s)
  36. namespace_name_to_id -- given a namespace name, returns associated id
  37. get_page -- returns a Page object for the given title
  38. get_category -- returns a Category object for the given title
  39. get_user -- returns a User object for the given username
  40. """
  41. def __init__(self, name=None, project=None, lang=None, base_url=None,
  42. article_path=None, script_path=None, sql=None,
  43. namespaces=None, login=(None, None), cookiejar=None,
  44. user_agent=None, assert_edit=None, maxlag=None):
  45. """Constructor for new Site instances.
  46. This probably isn't necessary to call yourself unless you're building a
  47. Site that's not in your config and you don't want to add it - normally
  48. all you need is tools.get_site(name), which creates the Site for you
  49. based on your config file. We accept a bunch of kwargs, but the only
  50. ones you really "need" are `base_url` and `script_path` - this is
  51. enough to figure out an API url. `login`, a tuple of
  52. (username, password), is highly recommended. `cookiejar` will be used
  53. to store cookies, and we'll use a normal CookieJar if none is given.
  54. First, we'll store the given arguments as attributes, then set up our
  55. URL opener. We'll load any of the attributes that weren't given from
  56. the API, and then log in if a username/pass was given and we aren't
  57. already logged in.
  58. """
  59. # Attributes referring to site information, filled in by an API query
  60. # if they are missing (and an API url can be determined):
  61. self._name = name
  62. self._project = project
  63. self._lang = lang
  64. self._base_url = base_url
  65. self._article_path = article_path
  66. self._script_path = script_path
  67. self._namespaces = namespaces
  68. # Attributes used for API queries:
  69. self._assert_edit = assert_edit
  70. self._maxlag = maxlag
  71. self._max_retries = 5
  72. # Attributes used for SQL queries:
  73. self._sql_data = sql
  74. self._sql_conn = None
  75. # Set up cookiejar and URL opener for making API queries:
  76. if cookiejar is not None:
  77. self._cookiejar = cookiejar
  78. else:
  79. self._cookiejar = CookieJar()
  80. if user_agent is None:
  81. user_agent = USER_AGENT # Set default UA from wiki.constants
  82. self._opener = build_opener(HTTPCookieProcessor(self._cookiejar))
  83. self._opener.addheaders = [("User-Agent", user_agent),
  84. ("Accept-Encoding", "gzip")]
  85. # Get all of the above attributes that were not specified as arguments:
  86. self._load_attributes()
  87. # If we have a name/pass and the API says we're not logged in, log in:
  88. self._login_info = name, password = login
  89. if name is not None and password is not None:
  90. logged_in_as = self._get_username_from_cookies()
  91. if logged_in_as is None or name != logged_in_as:
  92. self._login(login)
  93. def __repr__(self):
  94. """Returns the canonical string representation of the Site."""
  95. res = ", ".join((
  96. "Site(name={_name!r}", "project={_project!r}", "lang={_lang!r}",
  97. "base_url={_base_url!r}", "article_path={_article_path!r}",
  98. "script_path={_script_path!r}", "assert_edit={_assert_edit!r}",
  99. "maxlag={_maxlag!r}", "sql={_sql!r}", "login={0}",
  100. "user_agent={2!r}", "cookiejar={1})"
  101. ))
  102. name, password = self._login_info
  103. login = "({0}, {1})".format(repr(name), "hidden" if password else None)
  104. cookies = self._cookiejar.__class__.__name__
  105. try:
  106. cookies += "({0!r})".format(self._cookiejar.filename)
  107. except AttributeError:
  108. cookies += "()"
  109. agent = self._opener.addheaders[0][1]
  110. return res.format(login, cookies, agent, **self.__dict__)
  111. def __str__(self):
  112. """Returns a nice string representation of the Site."""
  113. res = "<Site {0} ({1}:{2}) at {3}>"
  114. return res.format(self.name(), self.project(), self.lang(),
  115. self.domain())
  116. def _api_query(self, params, tries=0, wait=5):
  117. """Do an API query with `params` as a dict of parameters.
  118. This will first attempt to construct an API url from self._base_url and
  119. self._script_path. We need both of these, or else we'll raise
  120. SiteAPIError.
  121. We'll encode the given params, adding format=json along the way, as
  122. well as &assert= and &maxlag= based on self._assert_edit and _maxlag.
  123. We make the request through self._opener, which has built-in cookie
  124. support via self._cookiejar, a User-Agent (wiki.constants.USER_AGENT),
  125. and Accept-Encoding set to "gzip".
  126. Assuming everything went well, we'll gunzip the data (if compressed),
  127. load it as a JSON object, and return it.
  128. If our request failed for some reason, we'll raise SiteAPIError with
  129. details. If that reason was due to maxlag, we'll sleep for a bit and
  130. then repeat the query until we exceed self._max_retries.
  131. There's helpful MediaWiki API documentation at
  132. <http://www.mediawiki.org/wiki/API>.
  133. """
  134. if self._base_url is None or self._script_path is None:
  135. e = "Tried to do an API query, but no API URL is known."
  136. raise SiteAPIError(e)
  137. url = ''.join((self._base_url, self._script_path, "/api.php"))
  138. params["format"] = "json" # This is the only format we understand
  139. if self._assert_edit: # If requested, ensure that we're logged in
  140. params["assert"] = self._assert_edit
  141. if self._maxlag: # If requested, don't overload the servers
  142. params["maxlag"] = self._maxlag
  143. data = urlencode(params)
  144. print url, data # debug code
  145. try:
  146. response = self._opener.open(url, data)
  147. except URLError as error:
  148. if hasattr(error, "reason"):
  149. e = "API query failed: {0}.".format(error.reason)
  150. elif hasattr(error, "code"):
  151. e = "API query failed: got an error code of {0}."
  152. e = e.format(error.code)
  153. else:
  154. e = "API query failed."
  155. raise SiteAPIError(e)
  156. result = response.read()
  157. if response.headers.get("Content-Encoding") == "gzip":
  158. stream = StringIO(result)
  159. gzipper = GzipFile(fileobj=stream)
  160. result = gzipper.read()
  161. try:
  162. res = loads(result) # Parse as a JSON object
  163. except ValueError:
  164. e = "API query failed: JSON could not be decoded."
  165. raise SiteAPIError(e)
  166. try:
  167. code = res["error"]["code"]
  168. info = res["error"]["info"]
  169. except (TypeError, KeyError):
  170. return res
  171. if code == "maxlag":
  172. if tries >= self._max_retries:
  173. e = "Maximum number of retries reached ({0})."
  174. raise SiteAPIError(e.format(self._max_retries))
  175. tries += 1
  176. msg = 'Server says: "{0}". Retrying in {1} seconds ({2}/{3}).'
  177. print msg.format(info, wait, tries, self._max_retries)
  178. sleep(wait)
  179. return self._api_query(params, tries=tries, wait=wait*3)
  180. else:
  181. e = 'API query failed: got error "{0}"; server says: "{1}".'
  182. error = SiteAPIError(e.format(code, info))
  183. error.code, error.info = code, info
  184. raise error
  185. def _load_attributes(self, force=False):
  186. """Load data about our Site from the API.
  187. This function is called by __init__() when one of the site attributes
  188. was not given as a keyword argument. We'll do an API query to get the
  189. missing data, but only if there actually *is* missing data.
  190. Additionally, you can call this with `force=True` to forcibly reload
  191. all attributes.
  192. """
  193. # All attributes to be loaded, except _namespaces, which is a special
  194. # case because it requires additional params in the API query:
  195. attrs = [self._name, self._project, self._lang, self._base_url,
  196. self._article_path, self._script_path]
  197. params = {"action": "query", "meta": "siteinfo"}
  198. if not self._namespaces or force:
  199. params["siprop"] = "general|namespaces|namespacealiases"
  200. result = self._api_query(params)
  201. self._load_namespaces(result)
  202. elif all(attrs): # Everything is already specified and we're not told
  203. return # to force a reload, so do nothing
  204. else: # We're only loading attributes other than _namespaces
  205. params["siprop"] = "general"
  206. result = self._api_query(params)
  207. res = result["query"]["general"]
  208. self._name = res["wikiid"]
  209. self._project = res["sitename"].lower()
  210. self._lang = res["lang"]
  211. self._base_url = res["server"]
  212. self._article_path = res["articlepath"]
  213. self._script_path = res["scriptpath"]
  214. def _load_namespaces(self, result):
  215. """Fill self._namespaces with a dict of namespace IDs and names.
  216. Called by _load_attributes() with API data as `result` when
  217. self._namespaces was not given as an kwarg to __init__().
  218. """
  219. self._namespaces = {}
  220. for namespace in result["query"]["namespaces"].values():
  221. ns_id = namespace["id"]
  222. name = namespace["*"]
  223. try:
  224. canonical = namespace["canonical"]
  225. except KeyError:
  226. self._namespaces[ns_id] = [name]
  227. else:
  228. if name != canonical:
  229. self._namespaces[ns_id] = [name, canonical]
  230. else:
  231. self._namespaces[ns_id] = [name]
  232. for namespace in result["query"]["namespacealiases"]:
  233. ns_id = namespace["id"]
  234. alias = namespace["*"]
  235. self._namespaces[ns_id].append(alias)
  236. def _get_cookie(self, name, domain):
  237. """Return the named cookie unless it is expired or doesn't exist."""
  238. for cookie in self._cookiejar:
  239. if cookie.name == name and cookie.domain == domain:
  240. if cookie.is_expired():
  241. break
  242. return cookie
  243. def _get_username_from_cookies(self):
  244. """Try to return our username based solely on cookies.
  245. First, we'll look for a cookie named self._name + "Token", like
  246. "enwikiToken". If it exists and isn't expired, we'll assume it's valid
  247. and try to return the value of the cookie self._name + "UserName" (like
  248. "enwikiUserName"). This should work fine on wikis without single-user
  249. login.
  250. If `enwikiToken` doesn't exist, we'll try to find a cookie named
  251. `centralauth_Token`. If this exists and is not expired, we'll try to
  252. return the value of `centralauth_User`.
  253. If we didn't get any matches, we'll return None. Our goal here isn't to
  254. return the most likely username, or what we *want* our username to be
  255. (for that, we'd do self._login_info[0]), but rather to get our current
  256. username without an unnecessary ?action=query&meta=userinfo API query.
  257. """
  258. domain = self.domain()
  259. name = ''.join((self._name, "Token"))
  260. cookie = self._get_cookie(name, domain)
  261. if cookie is not None:
  262. name = ''.join((self._name, "UserName"))
  263. user_name = self._get_cookie(name, domain)
  264. if user_name is not None:
  265. return user_name.value
  266. name = "centralauth_Token"
  267. for cookie in self._cookiejar:
  268. if cookie.domain_initial_dot is False or cookie.is_expired():
  269. continue
  270. if cookie.name != name:
  271. continue
  272. # Build a regex that will match domains this cookie affects:
  273. search = ''.join(("(.*?)", re_escape(cookie.domain)))
  274. if re_match(search, domain): # Test it against our site
  275. user_name = self._get_cookie("centralauth_User", cookie.domain)
  276. if user_name is not None:
  277. return user_name.value
  278. def _get_username_from_api(self):
  279. """Do a simple API query to get our username and return it.
  280. This is a reliable way to make sure we are actually logged in, because
  281. it doesn't deal with annoying cookie logic, but it results in an API
  282. query that is unnecessary in some cases.
  283. Called by _get_username() (in turn called by get_user() with no
  284. username argument) when cookie lookup fails, probably indicating that
  285. we are logged out.
  286. """
  287. params = {"action": "query", "meta": "userinfo"}
  288. result = self._api_query(params)
  289. return result["query"]["userinfo"]["name"]
  290. def _get_username(self):
  291. """Return the name of the current user, whether logged in or not.
  292. First, we'll try to deduce it solely from cookies, to avoid an
  293. unnecessary API query. For the cookie-detection method, see
  294. _get_username_from_cookies()'s docs.
  295. If our username isn't in cookies, then we're probably not logged in, or
  296. something fishy is going on (like forced logout). In this case, do a
  297. single API query for our username (or IP address) and return that.
  298. """
  299. name = self._get_username_from_cookies()
  300. if name is not None:
  301. return name
  302. return self._get_username_from_api()
  303. def _save_cookiejar(self):
  304. """Try to save our cookiejar after doing a (normal) login or logout.
  305. Calls the standard .save() method with no filename. Don't fret if our
  306. cookiejar doesn't support saving (CookieJar raises AttributeError,
  307. FileCookieJar raises NotImplementedError) or no default filename was
  308. given (LWPCookieJar and MozillaCookieJar raise ValueError).
  309. """
  310. try:
  311. self._cookiejar.save()
  312. except (AttributeError, NotImplementedError, ValueError):
  313. pass
  314. def _login(self, login, token=None, attempt=0):
  315. """Safely login through the API.
  316. Normally, this is called by __init__() if a username and password have
  317. been provided and no valid login cookies were found. The only other
  318. time it needs to be called is when those cookies expire, which is done
  319. automatically by api_query() if a query fails.
  320. Recent versions of MediaWiki's API have fixed a CSRF vulnerability,
  321. requiring login to be done in two separate requests. If the response
  322. from from our initial request is "NeedToken", we'll do another one with
  323. the token. If login is successful, we'll try to save our cookiejar.
  324. Raises LoginError on login errors (duh), like bad passwords and
  325. nonexistent usernames.
  326. `login` is a (username, password) tuple. `token` is the token returned
  327. from our first request, and `attempt` is to prevent getting stuck in a
  328. loop if MediaWiki isn't acting right.
  329. """
  330. name, password = login
  331. params = {"action": "login", "lgname": name, "lgpassword": password}
  332. if token is not None:
  333. params["lgtoken"] = token
  334. result = self._api_query(params)
  335. res = result["login"]["result"]
  336. if res == "Success":
  337. self._save_cookiejar()
  338. elif res == "NeedToken" and attempt == 0:
  339. token = result["login"]["token"]
  340. return self._login(login, token, attempt=1)
  341. else:
  342. if res == "Illegal":
  343. e = "The provided username is illegal."
  344. elif res == "NotExists":
  345. e = "The provided username does not exist."
  346. elif res == "EmptyPass":
  347. e = "No password was given."
  348. elif res == "WrongPass" or res == "WrongPluginPass":
  349. e = "The given password is incorrect."
  350. else:
  351. e = "Couldn't login; server says '{0}'.".format(res)
  352. raise LoginError(e)
  353. def _logout(self):
  354. """Safely logout through the API.
  355. We'll do a simple API request (api.php?action=logout), clear our
  356. cookiejar (which probably contains now-invalidated cookies) and try to
  357. save it, if it supports that sort of thing.
  358. """
  359. params = {"action": "logout"}
  360. self._api_query(params)
  361. self._cookiejar.clear()
  362. self._save_cookiejar()
  363. def _sql_connect(self, **kwargs):
  364. """Attempt to establish a connection with this site's SQL database.
  365. oursql.connect() will be called with self._sql_data as its kwargs,
  366. which is usually config.wiki["sites"][self.name()]["sql"]. Any kwargs
  367. given to this function will be passed to connect() and will have
  368. precedence over the config file.
  369. Will raise SQLError() if the module "oursql" is not available. oursql
  370. may raise its own exceptions (e.g. oursql.InterfaceError) if it cannot
  371. establish a connection.
  372. """
  373. if not oursql:
  374. e = "Module 'oursql' is required for SQL queries."
  375. raise SQLError(e)
  376. args = self._sql_data
  377. for key, value in kwargs.iteritems():
  378. args[key] = value
  379. if "read_default_file" not in args and "user" not in args and "passwd" not in args:
  380. args["read_default_file"] = "~/.my.cnf"
  381. self._sql_conn = oursql.connect(**args)
  382. def name(self):
  383. """Returns the Site's name (or "wikiid" in the API), like "enwiki"."""
  384. return self._name
  385. def project(self):
  386. """Returns the Site's project name in lowercase, like "wikipedia"."""
  387. return self._project
  388. def lang(self):
  389. """Returns the Site's language code, like "en" or "es"."""
  390. return self._lang
  391. def domain(self):
  392. """Returns the Site's web domain, like "en.wikipedia.org"."""
  393. return urlparse(self._base_url).netloc
  394. def api_query(self, **kwargs):
  395. """Do an API query with `kwargs` as the parameters.
  396. See _api_query()'s documentation for details.
  397. """
  398. return self._api_query(kwargs)
  399. def sql_query(self, query, params=(), plain_query=False, dict_cursor=False,
  400. cursor_class=None, show_table=False):
  401. """Do an SQL query and yield its results.
  402. If `plain_query` is True, we will force an unparameterized query.
  403. Specifying both params and plain_query will cause an error.
  404. If `dict_cursor` is True, we will use oursql.DictCursor as our cursor,
  405. otherwise the default oursql.Cursor. If `cursor_class` is given, it
  406. will override this option.
  407. If `show_table` is True, the name of the table will be prepended to the
  408. name of the column. This will mainly affect a DictCursor.
  409. Example:
  410. >>> query = "SELECT user_id, user_registration FROM user WHERE user_name = ?"
  411. >>> params = ("The Earwig",)
  412. >>> result1 = site.sql_query(query, params)
  413. >>> result2 = site.sql_query(query, params, dict_cursor=True)
  414. >>> for row in result1: print row
  415. (7418060L, '20080703215134')
  416. >>> for row in result2: print row
  417. {'user_id': 7418060L, 'user_registration': '20080703215134'}
  418. See _sql_connect() for information on how a connection is acquired.
  419. <http://packages.python.org/oursql> has helpful documentation on the
  420. oursql module.
  421. This may raise SQLError() or one of oursql's exceptions
  422. (oursql.ProgrammingError, oursql.InterfaceError, ...) if there were
  423. problems with the query.
  424. """
  425. if not self._sql_conn:
  426. self._sql_connect()
  427. if not cursor_class:
  428. if dict_cursor:
  429. cursor_class = oursql.DictCursor
  430. else:
  431. cursor_class = oursql.Cursor
  432. with self._sql_conn.cursor(cursor_class, show_table=show_table) as cur:
  433. cur.execute(query, params, plain_query)
  434. for result in cur:
  435. yield result
  436. def namespace_id_to_name(self, ns_id, all=False):
  437. """Given a namespace ID, returns associated namespace names.
  438. If all is False (default), we'll return the first name in the list,
  439. which is usually the localized version. Otherwise, we'll return the
  440. entire list, which includes the canonical name.
  441. For example, returns u"Wikipedia" if ns_id=4 and all=False on enwiki;
  442. returns [u"Wikipedia", u"Project"] if ns_id=4 and all=True.
  443. Raises NamespaceNotFoundError if the ID is not found.
  444. """
  445. try:
  446. if all:
  447. return self._namespaces[ns_id]
  448. else:
  449. return self._namespaces[ns_id][0]
  450. except KeyError:
  451. e = "There is no namespace with id {0}.".format(ns_id)
  452. raise NamespaceNotFoundError(e)
  453. def namespace_name_to_id(self, name):
  454. """Given a namespace name, returns the associated ID.
  455. Like namespace_id_to_name(), but reversed. Case is ignored, because
  456. namespaces are assumed to be case-insensitive.
  457. Raises NamespaceNotFoundError if the name is not found.
  458. """
  459. lname = name.lower()
  460. for ns_id, names in self._namespaces.items():
  461. lnames = [n.lower() for n in names] # Be case-insensitive
  462. if lname in lnames:
  463. return ns_id
  464. e = "There is no namespace with name '{0}'.".format(name)
  465. raise NamespaceNotFoundError(e)
  466. def get_page(self, title, follow_redirects=False):
  467. """Returns a Page object for the given title (pagename).
  468. Will return a Category object instead if the given title is in the
  469. category namespace. As Category is a subclass of Page, this should not
  470. cause problems.
  471. Note that this doesn't do any direct checks for existence or
  472. redirect-following - Page's methods provide that.
  473. """
  474. prefixes = self.namespace_id_to_name(NS_CATEGORY, all=True)
  475. prefix = title.split(":", 1)[0]
  476. if prefix != title: # Avoid a page that is simply "Category"
  477. if prefix in prefixes:
  478. return Category(self, title, follow_redirects)
  479. return Page(self, title, follow_redirects)
  480. def get_category(self, catname, follow_redirects=False):
  481. """Returns a Category object for the given category name.
  482. `catname` should be given *without* a namespace prefix. This method is
  483. really just shorthand for get_page("Category:" + catname).
  484. """
  485. prefix = self.namespace_id_to_name(NS_CATEGORY)
  486. pagename = ':'.join((prefix, catname))
  487. return Category(self, pagename, follow_redirects)
  488. def get_user(self, username=None):
  489. """Returns a User object for the given username.
  490. If `username` is left as None, then a User object representing the
  491. currently logged-in (or anonymous!) user is returned.
  492. """
  493. if username is None:
  494. username = self._get_username()
  495. return User(self, username)