Merge shared code into __init__.py
parent
92bceed168
commit
fd3011e96d
@ -1,15 +1,15 @@
|
||||
import re, base64
|
||||
from resolv.shared import ResolverError
|
||||
import resolv
|
||||
|
||||
def resolve(url):
|
||||
matches = re.search("https?:\/\/(www\.)?1channel\.ch\/external\.php\?.*url=([^&]+)", url)
|
||||
|
||||
if matches is None:
|
||||
raise ResolverError("The provided URL is not a valid external 1channel URL.")
|
||||
raise resolv.ResolverError("The provided URL is not a valid external 1channel URL.")
|
||||
|
||||
try:
|
||||
real_url = base64.b64decode(matches.group(2)).strip()
|
||||
except TypeError:
|
||||
raise ResolverError("The provided URL is malformed.")
|
||||
raise resolv.ResolverError("The provided URL is malformed.")
|
||||
|
||||
return { 'url': real_url }
|
||||
|
@ -1,15 +0,0 @@
|
||||
from HTMLParser import HTMLParser
|
||||
|
||||
import sys
|
||||
reload(sys)
|
||||
sys.setdefaultencoding("UTF-8")
|
||||
|
||||
class ResolverError(Exception):
|
||||
def __init__(self, value):
|
||||
self.val = value
|
||||
|
||||
def __str__(self):
|
||||
return repr(self.val)
|
||||
|
||||
def unescape(s):
|
||||
return HTMLParser.unescape.__func__(HTMLParser, s)
|
Loading…
Reference in New Issue