diff options
Diffstat (limited to 'module/plugins/hoster')
| -rw-r--r-- | module/plugins/hoster/MegaRapidoNet.py | 54 | 
1 files changed, 54 insertions, 0 deletions
| diff --git a/module/plugins/hoster/MegaRapidoNet.py b/module/plugins/hoster/MegaRapidoNet.py new file mode 100644 index 000000000..b38374646 --- /dev/null +++ b/module/plugins/hoster/MegaRapidoNet.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- + +from random import randint + +from module.plugins.internal.MultiHoster import MultiHoster + + +def random_with_N_digits(n): +    rand = "0." +    not_zero = 0 +    for i in range(1,n+1): +        r = randint(0,9) +        if(r > 0): +            not_zero += 1 +        rand += str(r) + +    if not_zero > 0: +        return rand +    else: +        return random_with_N_digits(n) + + +class MegaRapidoNet(MultiHoster): +    __name__    = "MegaRapidoNet" +    __type__    = "hoster" +    __version__ = "0.02" + +    __pattern__ = r'http://(?:www\.)?\w+\.megarapido\.net/\?file=\w+' +    __config__  = [("use_premium", "bool", "Use premium account if available", True)] + +    __description__ = """MegaRapido.net multi-hoster plugin""" +    __license__     = "GPLv3" +    __authors__     = [("Kagenoshin", "kagenoshin@gmx.ch")] + + +    LINK_PREMIUM_PATTERN = r'<\s*?a[^>]*?title\s*?=\s*?["\'][^"\']*?download["\'][^>]*?href=["\']([^"\']*)' + +    ERROR_PATTERN = r'<\s*?div[^>]*?class\s*?=\s*?["\']?alert-message error[^>]*>([^<]*)' + + +    def handlePremium(self, pyfile): +        self.html = self.load("http://megarapido.net/gerar.php", +                         post={'rand'     :random_with_N_digits(16), +                               'urllist'  : pyfile.url, +                               'links'    : pyfile.url, +                               'exibir'   : "normal", +                               'usar'     : "premium", +                               'user'     : self.account.getAccountInfo(self.user).get('sid', None), +                               'autoreset': ""}) + +        if "desloga e loga novamente para gerar seus links" in self.html.lower(): +            self.error("You have logged in at another place") + +        return super(MegaRapidoNet, self).handlePremium(pyfile) | 
