Przeglądaj źródła

adding in a linker module; TODO: pretty-ify interwikis and parse namespaces

tags/v0.1
Ben Kurtovic 13 lat temu
rodzic
commit
a6f4436a82
2 zmienionych plików z 60 dodań i 1 usunięć
  1. +54
    -0
      irc/commands/link.py
  2. +6
    -1
      irc/triggers.py

+ 54
- 0
irc/commands/link.py Wyświetl plik

@@ -0,0 +1,54 @@
# -*- coding: utf-8 -*-

"""Convert a Wikipedia page name into a URL."""

import re

connection, data = None, None

def call(c, d):
global connection, data
connection, data = c, d

msg = data.msg

if re.search("(\[\[(.*?)\]\])|(\{\{(.*?)\}\})", msg):
links = parse_line(msg)
links = " , ".join(links)
connection.reply(data.chan, data.nick, links)

elif data.command == "!link":
if not data.args:
connection.reply(data.chan, data.nick, "what do you want me to link to?")
return
pagename = ' '.join(data.args)
link = parse_link(pagename)
connection.reply(data.chan, data.nick, link)

def parse_line(line):
results = list()

line = re.sub("\{\{\{(.*?)\}\}\}", "", line) # destroy {{{template parameters}}}

links = re.findall("(\[\[(.*?)(\||\]\]))", line) # find all [[links]]
if links:
links = map(lambda x: x[1], links) # re.findall() returns a list of tuples, but we only want the 2nd item in each tuple
results.extend(map(parse_link, links))

templates = re.findall("(\{\{(.*?)(\||\}\}))", line) # find all {{templates}}
if templates:
templates = map(lambda x: x[1], templates)
results.extend(map(parse_template, templates))

return results

def parse_link(pagename):
pagename = pagename.strip()
link = "http://en.wikipedia.org/wiki/" + pagename
link = link.replace(" ", "_")
return link

def parse_template(pagename):
pagename = "Template:%s" % pagename # TODO: implement an actual namespace check
link = parse_link(pagename)
return link

+ 6
- 1
irc/triggers.py Wyświetl plik

@@ -2,7 +2,7 @@

# Check what events on IRC we can respond to.

from irc.commands import test, help, git
from irc.commands import test, help, git, link

def check(connection, data, hook):
data.parse_args() # parse command arguments into data.command and data.args
@@ -25,3 +25,8 @@ def check(connection, data, hook):
elif data.command == "!git":
git.call(connection, data)

elif (data.command == "!link" or
("[[" in data.msg and "]]" in data.msg) or
("{{" in data.msg and "}}" in data.msg)):
link.call(connection, data)

Ładowanie…
Anuluj
Zapisz