This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/disabled_stuff/minecraft_wiki.py

52 lines
1.5 KiB
Python
Raw Permalink Normal View History

import re
2014-02-14 04:36:57 +01:00
from util import hook, http, text
2014-02-12 22:10:34 +01:00
api_url = "http://minecraft.gamepedia.com/api.php?action=opensearch"
mc_url = "http://minecraft.gamepedia.com/"
@hook.command
def mcwiki(inp):
2013-09-04 12:30:04 +02:00
"""mcwiki <phrase> -- Gets the first paragraph of
the Minecraft Wiki article on <phrase>."""
2014-02-12 22:54:20 +01:00
try:
j = http.get_json(api_url, search=inp)
except (http.HTTPError, http.URLError) as e:
return "Error fetching search results: {}".format(e)
except ValueError as e:
return "Error reading search results: {}".format(e)
2013-02-06 12:35:03 +01:00
if not j[1]:
return "No results found."
# we remove items with a '/' in the name, because
2014-02-13 03:09:22 +01:00
# gamepedia uses sub-pages for different languages
# for some stupid reason
items = [item for item in j[1] if not "/" in item]
if items:
article_name = items[0].replace(' ', '_').encode('utf8')
else:
# there are no items without /, just return a / one
article_name = j[1][0].replace(' ', '_').encode('utf8')
2013-02-06 12:35:03 +01:00
url = mc_url + http.quote(article_name, '')
2014-02-12 22:54:20 +01:00
try:
page = http.get_html(url)
except (http.HTTPError, http.URLError) as e:
return "Error fetching wiki page: {}".format(e)
for p in page.xpath('//div[@class="mw-content-ltr"]/p'):
if p.text_content():
summary = " ".join(p.text_content().splitlines())
summary = re.sub("\[\d+\]", "", summary)
2013-08-20 00:55:58 +02:00
summary = text.truncate_str(summary, 200)
2014-02-12 21:36:28 +01:00
return u"{} :: {}".format(summary, url)
# this shouldn't happen
return "Unknown Error."