forked from pyload/pyload
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilepostCom.py
More file actions
136 lines (107 loc) · 5 KB
/
Copy pathFilepostCom.py
File metadata and controls
136 lines (107 loc) · 5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# -*- coding: utf-8 -*-
import re
import time
from ..captcha.ReCaptcha import ReCaptcha
from ..internal.misc import json
from ..internal.SimpleHoster import SimpleHoster
class FilepostCom(SimpleHoster):
__name__ = "FilepostCom"
__type__ = "hoster"
__version__ = "0.41"
__status__ = "testing"
__pattern__ = r'https?://(?:www\.)?(?:filepost\.com/files|fp\.io)/(?P<ID>[^/]+)'
__config__ = [("activated", "bool", "Activated", True),
("use_premium", "bool", "Use premium account if available", True),
("fallback", "bool",
"Fallback to free download if premium fails", True),
("chk_filesize", "bool", "Check file size", True),
("max_wait", "int", "Reconnect if waiting time is greater than minutes", 10)]
__description__ = """Filepost.com hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("zoidberg", "zoidberg@mujmail.cz")]
INFO_PATTERN = r'<input type="text" id="url" value=\'<a href.*?>(?P<N>.+?) - (?P<S>[\d.,]+) (?P<U>[\w^_]+)</a>\' class="inp_text"/>'
OFFLINE_PATTERN = r'class="error_msg_title"> Invalid or Deleted File. </div>|<div class="file_info file_info_deleted">'
PREMIUM_ONLY_PATTERN = r'members only. Please upgrade to premium|a premium membership is required to download this file'
RECAPTCHA_PATTERN = r'Captcha.init\({\s*key:\s*\'(.+?)\''
FLP_TOKEN_PATTERN = r'set_store_options\({token: \'(.+?)\''
def handle_free(self, pyfile):
m = re.search(self.FLP_TOKEN_PATTERN, self.data)
if m is None:
self.error(_("Token"))
flp_token = m.group(1)
m = re.search(self.RECAPTCHA_PATTERN, self.data)
if m is None:
self.error(_("Captcha key"))
captcha_key = m.group(1)
#: Get wait time
get_dict = {'SID': self.req.cj.getCookie(
'SID'), 'JsHttpRequest': str(int(time.time() * 10000)) + '-xml'}
post_dict = {
'action': 'set_download',
'token': flp_token,
'code': self.info['pattern']['ID']}
wait_time = int(
self.get_json_response(
get_dict,
post_dict,
'wait_time'))
if wait_time > 0:
self.wait(wait_time)
post_dict = {
'token': flp_token,
'code': self.info['pattern']['ID'],
'file_pass': ''}
if 'var is_pass_exists = true;' in self.data:
#: Solve password
password = self.get_password()
if password:
self.log_info(
_("Password protected link, trying ") +
password)
get_dict['JsHttpRequest'] = str(
int(time.time() * 10000)) + '-xml'
post_dict['file_pass'] = password
self.link = self.get_json_response(get_dict, post_dict, 'link')
if not self.link:
self.fail(_("Wrong password"))
else:
self.fail(_("No password found"))
else:
get_dict['JsHttpRequest'] = str(int(time.time() * 10000)) + '-xml'
self.link = self.get_json_response(get_dict, post_dict, 'link')
if not self.link:
#: Solve ReCaptcha
self.captcha = ReCaptcha(pyfile)
post_dict['recaptcha_response_field'], post_dict[
'recaptcha_challenge_field'] = self.captcha.challenge(captcha_key)
self.link = self.get_json_response(get_dict, post_dict, 'link')
def get_json_response(self, get_dict, post_dict, field):
html = self.load(
'https://filepost.com/files/get/',
get=get_dict,
post=post_dict)
res = json.loads(html)
self.log_debug(res)
if not 'js' in res:
self.error(_("JSON %s 1") % field)
#: I changed js_answer to res['js'] since js_answer is nowhere set.
#: I don't know the JSON-HTTP specs in detail, but the previous author
#: Accessed res['js']['error'] as well as js_answer['error'].
#: See the two lines commented out with "# ~?".
if 'error' in res['js']:
if res['js']['error'] == "download_delay":
self.retry(wait=res['js']['params']['next_download'])
#: ~? self.retry(wait=js_answer['params']['next_download'])
elif 'Wrong file password' in res['js']['error'] \
or 'You entered a wrong CAPTCHA code' in res['js']['error'] \
or 'CAPTCHA Code nicht korrekt' in res['js']['error']:
return None
elif 'CAPTCHA' in res['js']['error']:
self.log_debug(
"Error response is unknown, but mentions CAPTCHA")
return None
else:
self.fail(res['js']['error'])
if not 'answer' in res['js'] or not field in res['js']['answer']:
self.error(_("JSON %s 2") % field)
return res['js']['answer'][field]