-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnodepay.py
296 lines (231 loc) · 9.17 KB
/
nodepay.py
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
import asyncio
import logging
import time
import uuid
import cloudscraper
import requests
from loguru import logger
logging.disable(logging.ERROR)
PING_INTERVAL = 180
RETRIES = 120
TOKEN_FILE = "data.txt"
DOMAIN_API = {
"SESSION": "https://api.nodepay.org/api/auth/session?",
"PING": "https://nw.nodepay.org/api/network/ping",
}
CONNECTION_STATES = {"CONNECTED": 1, "DISCONNECTED": 2, "NONE_CONNECTION": 3}
status_connect = CONNECTION_STATES["NONE_CONNECTION"]
browser_id = None
account_info = {}
last_ping_time = {}
def uuidv4():
return str(uuid.uuid4())
def valid_resp(resp):
if not resp or "code" not in resp or resp["code"] < 0:
raise ValueError("Invalid response")
return resp
async def render_profile_info(proxy, token):
global browser_id, account_info
try:
np_session_info = load_session_info(proxy)
if not np_session_info:
browser_id = uuidv4()
response = await call_api(DOMAIN_API["SESSION"], {}, proxy, token)
if response is None:
logger.info(f"Skipping proxy {proxy} due to 403 error.")
return
valid_resp(response)
account_info = response["data"]
if account_info.get("uid"):
save_session_info(proxy, account_info)
await start_ping(proxy, token)
else:
handle_logout(proxy)
else:
account_info = np_session_info
await start_ping(proxy, token)
except Exception as e:
logger.error(f"Error in render_profile_info for proxy {proxy}: {e}")
async def call_api(url, data, proxy, token, max_retries=3):
headers = {
"Authorization": f"Bearer {token}",
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36",
"Accept": "application/json",
"Accept-Language": "en-US,en;q=0.5",
"Referer": "https://app.nodepay.ai",
}
for attempt in range(max_retries):
try:
loop = asyncio.get_running_loop()
response_json = await loop.run_in_executor(
None, make_request, url, data, headers, proxy
)
print(f"url: {url}, response_json: {response_json}")
return valid_resp(response_json)
except requests.exceptions.HTTPError as e:
logger.error(f"HTTP error on attempt {
attempt + 1} for proxy {proxy}: {e}")
if e.response.status_code == 403:
logger.error(f"403 Forbidden encountered on attempt {
attempt + 1}: {e}")
return None
except requests.exceptions.ConnectionError as e:
logger.error(f"Connection error on attempt {
attempt + 1} for proxy {proxy}: {e}")
except requests.exceptions.Timeout as e:
logger.error(f"Timeout on attempt {
attempt + 1} for proxy {proxy}: {e}")
except Exception as e:
logger.error(f"Unexpected error on attempt {
attempt + 1} for proxy {proxy}: {e}")
await asyncio.sleep(2**attempt)
logger.error(f"Failed API call to {url} after {
max_retries} attempts with proxy {proxy}")
return None
def make_request(url, data, headers, proxy):
scraper = cloudscraper.create_scraper()
# if proxy:
# proxies = {"http": proxy, "https": proxy}
# scraper.proxies.update(proxies)
response = scraper.post(url, json=data, headers=headers, timeout=10)
response.raise_for_status()
return response.json()
async def start_ping(proxy, token):
try:
while True:
await ping(proxy, token)
await asyncio.sleep(PING_INTERVAL)
except asyncio.CancelledError:
logger.info(f"Ping task for proxy {proxy} was cancelled")
except Exception as e:
logger.error(f"Error in start_ping for proxy {proxy}: {e}")
async def ping(proxy, token):
global last_ping_time, RETRIES, status_connect
current_time = time.time()
if (
proxy in last_ping_time
and (current_time - last_ping_time[proxy]) < PING_INTERVAL
):
logger.info(f"Skipping ping for proxy {
proxy}, not enough time elapsed")
return
last_ping_time[proxy] = current_time
try:
data = {
"id": account_info.get("uid"),
"browser_id": browser_id,
"timestamp": int(time.time()),
}
response = await call_api(DOMAIN_API["PING"], data, proxy, token)
if response["code"] == 0:
logger.info(f"Ping thành công với {proxy}: {response}")
RETRIES = 0
status_connect = CONNECTION_STATES["CONNECTED"]
else:
handle_ping_fail(proxy, response)
except Exception as e:
logger.error(f"Ping không thành công với proxy {proxy}: {e}")
handle_ping_fail(proxy, None)
def handle_ping_fail(proxy, response):
global RETRIES, status_connect
RETRIES += 1
if response and response.get("code") == 403:
handle_logout(proxy)
elif RETRIES < 2:
status_connect = CONNECTION_STATES["DISCONNECTED"]
else:
status_connect = CONNECTION_STATES["DISCONNECTED"]
def handle_logout(proxy):
global status_connect, account_info
status_connect = CONNECTION_STATES["NONE_CONNECTION"]
account_info = {}
save_status(proxy, None)
logger.info(f"Đã đăng xuất và xóa thông tin phiên cho proxy {proxy}")
def load_proxies(proxy_file):
try:
with open(proxy_file, "r") as file:
proxies = file.read().splitlines()
return proxies
except Exception as e:
logger.error(f"Không đọc được proxy: {e}")
raise SystemExit("Dừng code...")
def save_status(proxy, status):
pass
def save_session_info(proxy, data):
data_to_save = {"uid": data.get("uid"), "browser_id": browser_id}
pass
def load_session_info(proxy):
return {}
def is_valid_proxy(proxy):
return True
def remove_proxy_from_list(proxy):
pass
def load_tokens_from_file(filename):
try:
with open(filename, "r") as file:
tokens = file.read().splitlines()
return tokens
except Exception as e:
logger.error(f"Không đọc được token: {e}")
raise SystemExit("Dừng code...")
async def send_data_to_server(url, data, token):
proxy = None
response = await call_api(url, data, proxy, token)
if response is not None:
logger.info("Gửi yêu cầu đăng nhập")
else:
logger.error("Không nhận được phản hồi.")
async def main():
print("Ai sợ thì đi về!")
url = "https://api.nodepay.org/api/auth/session?"
jls_extract_var = "origin,access-control-request-method\
,access-control-request-headers,accept-encoding"
data = {
"cache-control": "no-cache, no-store, max-age=0, must-revalidate",
"cf-cache-status": "DYNAMIC",
"cf-ray": "8db8aaa27b6fd487-NRT",
"ary": jls_extract_var,
}
all_proxies = load_proxies("proxy.txt")
tokens = load_tokens_from_file(TOKEN_FILE)
for token in tokens:
await send_data_to_server(url, data, token)
await asyncio.sleep(10)
while True:
for token in tokens:
active_proxies = [proxy for proxy in all_proxies if is_valid_proxy(proxy)][
:100
]
tasks = {
asyncio.create_task(render_profile_info(proxy, token)): proxy
for proxy in active_proxies
}
done, _ = await asyncio.wait(
tasks.keys(), return_when=asyncio.FIRST_COMPLETED
)
for task in done:
failed_proxy = tasks[task]
if task.result() is None:
logger.info(f"Loại bỏ và thay thế proxy bị lỗi: {
failed_proxy}")
active_proxies.remove(failed_proxy)
if all_proxies:
new_proxy = all_proxies.pop(0)
if is_valid_proxy(new_proxy):
active_proxies.append(new_proxy)
new_task = asyncio.create_task(
render_profile_info(new_proxy, token)
)
tasks[new_task] = new_proxy
tasks.pop(task)
for proxy in set(active_proxies) - set(tasks.values()):
new_task = asyncio.create_task(render_profile_info(proxy, token))
tasks[new_task] = proxy
await asyncio.sleep(3)
await asyncio.sleep(10)
if __name__ == "__main__":
try:
asyncio.run(main())
except (KeyboardInterrupt, SystemExit):
logger.info("Bạn đã dừng code.")