forked from MsLolita/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrass.py
167 lines (134 loc) · 6.68 KB
/
grass.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
import asyncio
import random
import uuid
from typing import List, Optional
import aiohttp
from fake_useragent import UserAgent
from tenacity import stop_after_attempt, retry, retry_if_not_exception_type, wait_random, retry_if_exception_type
from data.config import MIN_PROXY_SCORE, CHECK_POINTS
from .grass_sdk.extension import GrassWs
from .grass_sdk.website import GrassRest
from .utils import logger
from .utils.accounts_db import AccountsDB
from .utils.error_helper import raise_error, FailureCounter
from .utils.exception import WebsocketClosedException, LowProxyScoreException, ProxyScoreNotFoundException, \
ProxyForbiddenException, ProxyError, WebsocketConnectionFailedError, FailureLimitReachedException, \
NoProxiesException
from better_proxy import Proxy
class Grass(GrassWs, GrassRest, FailureCounter):
def __init__(self, _id: int, email: str, password: str, proxy: str = None, db: AccountsDB = None):
self.proxy = Proxy.from_str(proxy).as_url if proxy else None
super(GrassWs, self).__init__(email=email, password=password, user_agent=UserAgent().random, proxy=self.proxy)
self.proxy_score: Optional[int] = None
self.id: int = _id
self.db: AccountsDB = db
self.session: aiohttp.ClientSession = aiohttp.ClientSession(trust_env=True,
connector=aiohttp.TCPConnector(ssl=False))
self.proxies: List[str] = []
self.is_extra_proxies_left: bool = True
self.fail_count = 0
async def start(self):
self.proxies = await self.db.get_proxies_by_email(self.email)
# logger.info(f"{self.id} | {self.email} | Starting...")
while True:
try:
user_id = await self.enter_account()
browser_id = str(uuid.uuid3(uuid.NAMESPACE_DNS, self.proxy or ""))
await self.run(browser_id, user_id)
except ProxyForbiddenException:
self.proxies.remove(self.proxy)
msg = "Proxy forbidden"
except ProxyError:
msg = "Low proxy score"
except WebsocketConnectionFailedError:
msg = "Websocket connection failed"
except aiohttp.ClientError as e:
msg = f"{str(e.args[0])[:30]}..." if "</html>" not in str(e) else "Html page response, 504"
except FailureLimitReachedException as e:
msg = "Failure limit reached"
self.fail_count = 5
else:
msg = ""
sleep_time = random.randint(20, 30) # * 60
await self.failure_handler(
is_raise=False,
msg=f"{self.id} | Sleeping for {int(sleep_time)} seconds... Too many errors. Retrying...",
sleep_time=sleep_time
)
await self.change_proxy()
logger.info(f"{self.id} | Changed proxy to {self.proxy}. {msg}. Retrying...")
await asyncio.sleep(random.uniform(5, 10))
async def run(self, browser_id: str, user_id: str):
while True:
try:
await self.connection_handler()
await self.auth_to_extension(browser_id, user_id)
if self.proxy_score is None:
await asyncio.sleep(1)
await self.handle_proxy_score(MIN_PROXY_SCORE)
for i in range(999999999):
await self.send_ping()
await self.send_pong()
logger.info(f"{self.id} | Mined grass.")
if CHECK_POINTS and not (i % 100):
points = await self.get_points_handler()
logger.info(f"{self.id} | Total points: {points}")
self.fail_reset()
await asyncio.sleep(19.9)
except WebsocketClosedException as e:
logger.info(f"{self.id} | Websocket closed: {e}. Reconnecting...")
except ConnectionResetError as e:
logger.info(f"{self.id} | Connection reset: {e}. Reconnecting...")
except TypeError as e:
logger.info(f"{self.id} | Type error: {e}. Reconnecting...")
await self.failure_handler(limit=3)
await asyncio.sleep(2)
@retry(stop=stop_after_attempt(13),
retry=(retry_if_exception_type(ConnectionError) | retry_if_not_exception_type(ProxyForbiddenException)),
retry_error_callback=lambda retry_state:
raise_error(WebsocketConnectionFailedError(f"{retry_state.outcome.exception()}")),
wait=wait_random(1, 2),
reraise=True)
async def connection_handler(self):
logger.info(f"{self.id} | Connecting...")
await self.connect()
logger.info(f"{self.id} | Connected")
@retry(stop=stop_after_attempt(5),
retry=retry_if_not_exception_type(LowProxyScoreException),
before_sleep=lambda retry_state, **kwargs: logger.info(f"{retry_state.outcome.exception()}"),
wait=wait_random(5, 7),
reraise=True)
async def handle_proxy_score(self, min_score: int):
if (proxy_score := await self.get_proxy_score_by_device_id_handler()) is None:
# logger.info(f"{self.id} | Proxy score not found for {self.proxy}. Guess Bad proxies! Continue...")
# return None
raise ProxyScoreNotFoundException(f"{self.id} | Proxy score not found! Retrying...")
elif proxy_score >= min_score:
self.proxy_score = proxy_score
logger.success(f"{self.id} | Proxy score: {self.proxy_score}")
return True
else:
raise LowProxyScoreException(f"{self.id} | Too low proxy score: {proxy_score} for {self.proxy}. Retrying...")
async def change_proxy(self):
self.proxy = await self.get_new_proxy()
async def get_new_proxy(self):
while self.is_extra_proxies_left:
if (proxy := await self.db.get_new_from_extra_proxies()) is not None:
if proxy not in self.proxies:
if email := await self.db.proxies_exist(proxy):
if self.email == email:
self.proxies.insert(0, proxy)
break
else:
await self.db.add_account(self.email, proxy)
self.proxies.insert(0, proxy)
break
else:
self.is_extra_proxies_left = False
return self.next_proxy()
def next_proxy(self):
if not self.proxies:
raise NoProxiesException(f"{self.id} | No proxies left. Exiting...")
proxy = self.proxies.pop(0)
self.proxies.append(proxy)
return proxy