diff options
author | Stefano <l.stickell@yahoo.it> | 2013-04-04 18:51:51 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-04-04 18:51:51 +0200 |
commit | 260f0e1f9dea492d88ebcb3f55b7575431a92573 (patch) | |
tree | bdf0f72570803fb1c6bcf7735653f69135d7b34f /module/plugins/hoster/DebridItaliaCom.py | |
parent | UploadedTo: update regex to fix bug #62 (diff) | |
download | pyload-260f0e1f9dea492d88ebcb3f55b7575431a92573.tar.xz |
DebridItaliaCom: + ability to detect offline files.
+ license note
Diffstat (limited to 'module/plugins/hoster/DebridItaliaCom.py')
-rw-r--r-- | module/plugins/hoster/DebridItaliaCom.py | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/module/plugins/hoster/DebridItaliaCom.py b/module/plugins/hoster/DebridItaliaCom.py index a8f7dd57e..121a141b3 100644 --- a/module/plugins/hoster/DebridItaliaCom.py +++ b/module/plugins/hoster/DebridItaliaCom.py @@ -1,5 +1,20 @@ # -*- coding: utf-8 -*- +############################################################################ +# This program is free software: you can redistribute it and/or modify # +# it under the terms of the GNU Affero General Public License as # +# published by the Free Software Foundation, either version 3 of the # +# License, or (at your option) any later version. # +# # +# This program is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU Affero General Public License for more details. # +# # +# You should have received a copy of the GNU Affero General Public License # +# along with this program. If not, see <http://www.gnu.org/licenses/>. # +############################################################################ + import re from module.plugins.Hoster import Hoster @@ -7,7 +22,7 @@ from module.plugins.Hoster import Hoster class DebridItaliaCom(Hoster): __name__ = "DebridItaliaCom" - __version__ = "0.02" + __version__ = "0.03" __type__ = "hoster" __pattern__ = r"https?://.*debriditalia\.com" __description__ = """Debriditalia.com hoster plugin""" @@ -31,7 +46,10 @@ class DebridItaliaCom(Hoster): page = self.load(url) self.logDebug("XML data: %s" % page) - new_url = re.search(r'<a href="(?:[^"]+)">(?P<direct>[^<]+)</a>', page).group('direct') + if 'File not available' in page: + self.offline() + else: + new_url = re.search(r'<a href="(?:[^"]+)">(?P<direct>[^<]+)</a>', page).group('direct') self.logDebug("New URL: %s" % new_url) |