diff options
Diffstat (limited to 'module/plugins/hoster/FilerNet.py')
| -rw-r--r-- | module/plugins/hoster/FilerNet.py | 15 | 
1 files changed, 7 insertions, 8 deletions
diff --git a/module/plugins/hoster/FilerNet.py b/module/plugins/hoster/FilerNet.py index c943a076d..5dd72efe7 100644 --- a/module/plugins/hoster/FilerNet.py +++ b/module/plugins/hoster/FilerNet.py @@ -15,7 +15,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo  class FilerNet(SimpleHoster):      __name__    = "FilerNet"      __type__    = "hoster" -    __version__ = "0.09" +    __version__ = "0.10"      __pattern__ = r'https?://(?:www\.)?filer\.net/get/\w+' @@ -25,8 +25,6 @@ class FilerNet(SimpleHoster):                         ("Walter Purcaro", "vuolter@gmail.com")] -    CONTENT_DISPOSITION = True -      INFO_PATTERN    = r'<h1 class="page-header">Free Download (?P<N>\S+) <small>(?P<S>[\w.]+) (?P<U>[\w^_]+)</small></h1>'      OFFLINE_PATTERN = r'Nicht gefunden' @@ -66,16 +64,17 @@ class FilerNet(SimpleHoster):              if 'location' in header and header['location']:                  self.correctCaptcha() -                self.link = urljoin('http://filer.net', header['location']) +                self.link = header['location']                  return              else:                  self.invalidCaptcha() -    def handlePremium(self): -        super(FilerNet, self).handlePremium() -        if self.link: -            self.link = urljoin("http://filer.net/", self.link) +    def downloadLink(self, link): +        if not link: +            return + +        self.download(urljoin("http://filer.net/", link), disposition=True)  getInfo = create_getInfo(FilerNet)  | 
