From 513b6862fc2f15cbf8995c5b5f44b10320f318c6 Mon Sep 17 00:00:00 2001 From: Stefano Date: Sun, 9 Mar 2014 15:37:36 +0100 Subject: Merge pull request #538 from vuolter/s/hoster/UptoboxCom UptoboxCom: Fixed See #536 (cherry picked from commit 0bb93bd16a4f7e6caaa2567868e3a7744117ed4a) --- pyload/plugins/hoster/UptoboxCom.py | 36 ++++++++++++++++++++++++++++++------ 1 file changed, 30 insertions(+), 6 deletions(-) (limited to 'pyload/plugins/hoster') diff --git a/pyload/plugins/hoster/UptoboxCom.py b/pyload/plugins/hoster/UptoboxCom.py index 420610ee4..4568526cb 100644 --- a/pyload/plugins/hoster/UptoboxCom.py +++ b/pyload/plugins/hoster/UptoboxCom.py @@ -1,19 +1,43 @@ # -*- 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 . +# +# @author: Walter Purcaro +############################################################################### + from module.plugins.hoster.XFileSharingPro import XFileSharingPro, create_getInfo class UptoboxCom(XFileSharingPro): __name__ = "UptoboxCom" __type__ = "hoster" - __pattern__ = r"http://(?:\w*\.)*?uptobox.com/\w{12}" - __version__ = "0.07" + __pattern__ = r'https?://(?:www\.)?uptobox\.com/\w+' + __version__ = "0.08" __description__ = """Uptobox.com hoster plugin""" - __author_name__ = ("zoidberg") - __author_mail__ = ("zoidberg@mujmail.cz") + __author_name__ = "Walter Purcaro" + __author_mail__ = "vuolter@gmail.com" - FILE_INFO_PATTERN = r'
(?P.+) \((?P[^)]+)\)
' - FILE_OFFLINE_PATTERN = r'
File Not Found
' HOSTER_NAME = "uptobox.com" + FILE_INFO_PATTERN = r'"para_title">(?P.+) \((?P[\d\.]+) (?P\w+)\)' + FILE_OFFLINE_PATTERN = r'>(File not found|Access Denied|404 Not Found)' + TEMP_OFFLINE_PATTERN = r'>This server is in maintenance mode' + + WAIT_PATTERN = r'>(\d+) seconds<' + + DIRECT_LINK_PATTERN = r'"(https?://\w+\.uptobox\.com/d/.*?)"' + getInfo = create_getInfo(UptoboxCom) -- cgit v1.2.3