summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/BasePlugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/BasePlugin.py')
-rw-r--r--module/plugins/hoster/BasePlugin.py34
1 files changed, 29 insertions, 5 deletions
diff --git a/module/plugins/hoster/BasePlugin.py b/module/plugins/hoster/BasePlugin.py
index 428afeee4..ed11c378b 100644
--- a/module/plugins/hoster/BasePlugin.py
+++ b/module/plugins/hoster/BasePlugin.py
@@ -5,12 +5,14 @@ from module.plugins.Hoster import Hoster
from module.utils import html_unescape
from urlparse import urlparse
+from re import search
+from urllib import unquote
class BasePlugin(Hoster):
__name__ = "BasePlugin"
__type__ = "hoster"
__pattern__ = r"^unmatchable$"
- __version__ = "0.12"
+ __version__ = "0.14"
__description__ = """Base Plugin when any other didnt fit"""
__author_name__ = ("RaNaN")
__author_mail__ = ("RaNaN@pyload.org")
@@ -39,9 +41,31 @@ class BasePlugin(Hoster):
#
# return
if pyfile.url.startswith("http"):
+ header = self.load(pyfile.url, just_header = True)
+ #self.logDebug(header)
+
+ if 'location' in header:
+ self.logDebug("Location: " + header['location'])
+ url = unquote(header['location'])
+ else:
+ url = pyfile.url
+
+ name = html_unescape(urlparse(url).path.split("/")[-1])
+
+ if 'content-disposition' in header:
+ self.logDebug("Content-Disposition: " + header['content-disposition'])
+ m = search("filename(?P<type>=|\*=(?P<enc>.+)'')(?P<name>.*)", header['content-disposition'])
+ if m:
+ disp = m.groupdict()
+ self.logDebug(disp)
+ if not disp['enc']: disp['enc'] = 'utf-8'
+ name = disp['name'].replace('"', "").replace("'", "").replace(";", "").strip()
+ name = unicode(unquote(name), disp['enc'])
+
+ if not name: self.offline()
+ pyfile.name = name
+ self.logDebug("Filename: %s" % pyfile.name)
+ self.download(url, disposition=True)
- pyfile.name = html_unescape(urlparse(pyfile.url).path.split("/")[-1])
- self.download(pyfile.url, disposition=True)
-
else:
- self.fail("No Plugin matched and not a downloadable url.")
+ self.fail("No Plugin matched and not a downloadable url.") \ No newline at end of file