summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Pedro Algarvio <pedro@algarvio.me> 2012-01-22 12:40:52 +0100
committerGravatar Pedro Algarvio <pedro@algarvio.me> 2012-01-22 12:40:52 +0100
commit8a691056ce894fcc562fddb642932338050645a6 (patch)
treeb4eba4d4c5379d579d599326a6c47267d4e292e8 /module
parentBring Oron's premium account handling to latest api. (diff)
parentrealdebrid encoding fix (diff)
downloadpyload-8a691056ce894fcc562fddb642932338050645a6.tar.xz
Merging encoding fixes from pyload
Diffstat (limited to 'module')
-rw-r--r--module/plugins/hoster/RealdebridCom.py5
-rw-r--r--module/utils/__init__.py10
2 files changed, 13 insertions, 2 deletions
diff --git a/module/plugins/hoster/RealdebridCom.py b/module/plugins/hoster/RealdebridCom.py
index ac55ea3f0..3a3ac99b0 100644
--- a/module/plugins/hoster/RealdebridCom.py
+++ b/module/plugins/hoster/RealdebridCom.py
@@ -5,6 +5,7 @@ import re
from urllib import quote, unquote
from random import randrange
+from module.utils import encode
from module.plugins.Hoster import Hoster
class RealdebridCom(Hoster):
@@ -43,8 +44,8 @@ class RealdebridCom(Hoster):
password = self.getPassword().splitlines()
if not password: password = ""
else: password = password[0]
-
- url = "http://real-debrid.com/ajax/deb.php?lang=en&sl=1&link=%s&passwort=%s" % (quote(pyfile.url, ""), password)
+
+ url = "http://real-debrid.com/ajax/deb.php?lang=en&sl=1&link=%s&passwort=%s" % (quote(encode(pyfile.url), ""), password)
page = self.load(url)
error = re.search(r'<span id="generation-error">(.*)</span>', page)
diff --git a/module/utils/__init__.py b/module/utils/__init__.py
index bf11fbc69..592bdbd7e 100644
--- a/module/utils/__init__.py
+++ b/module/utils/__init__.py
@@ -19,6 +19,16 @@ def decode(string):
except:
return string
+def encode(string):
+ """ decode string to utf if possible """
+ try:
+ if type(string) == unicode:
+ return string.encode("utf8", "replace")
+ else:
+ return string
+ except:
+ return string
+
def remove_chars(string, repl):
""" removes all chars in repl from string"""
if type(string) == str: