-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgeneric_request.py
211 lines (158 loc) · 5.94 KB
/
generic_request.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
import pycurl
import json
import zlib
from .utils import gen_l_dev_info
def generic_jpeg_upload(path, image_io, auth_token=None, proxy=None, proxy_port=None):
buffer = image_io.read()
response_data = []
c = pycurl.Curl()
if proxy is not None and proxy_port is not None:
c.setopt(c.PROXY, proxy)
c.setopt(c.PROXYPORT, proxy_port)
c.setopt(c.PROXYTYPE, pycurl.PROXYTYPE_HTTP)
c.setopt(c.URL, "https://grindr.mobi" + path)
c.setopt(c.CUSTOMREQUEST, "POST")
headers = [
"accept: application/json",
"accept-encoding: gzip",
"accept-language: en-US",
"connection: Keep-Alive",
"content-type: image/jpeg",
"host: grindr.mobi",
f"l-device-info: {gen_l_dev_info()}",
"l-locale: en_US",
"l-time-zone: Europe/Oslo",
"requirerealdeviceinfo: true",
"user-agent: grindr3/24.17.1.131488;131488;Free;Android 14;sdk_gphone64_x86_64;Google",
]
if auth_token is not None:
headers.append("authorization: Grindr3 " + auth_token)
c.setopt(c.HTTPHEADER, headers)
c.setopt(c.POSTFIELDS, buffer)
def handle_response(data):
response_data.append(data)
c.setopt(c.WRITEFUNCTION, handle_response)
c.perform()
c.close()
response_data = b"".join(response_data)
decompressed_response = zlib.decompress(response_data, zlib.MAX_WBITS | 16)
return json.loads(decompressed_response)
def generic_post(path, data, auth_token=None, proxy=None, proxy_port=None):
response_data = []
request_data = data
data_json = json.dumps(request_data)
c = pycurl.Curl()
if proxy is not None and proxy_port is not None:
c.setopt(c.PROXY, proxy)
c.setopt(c.PROXYPORT, proxy_port)
c.setopt(c.PROXYTYPE, pycurl.PROXYTYPE_HTTP)
c.setopt(c.URL, "https://grindr.mobi" + path)
c.setopt(c.CUSTOMREQUEST, "POST")
headers = [
"accept: application/json",
"accept-encoding: gzip",
"accept-language: en-US",
"connection: Keep-Alive",
"content-type: application/json; charset=UTF-8",
"host: grindr.mobi",
f"l-device-info: {gen_l_dev_info()}",
"l-locale: en_US",
"l-time-zone: Europe/Oslo",
"requirerealdeviceinfo: true",
"user-agent: grindr3/24.17.1.131488;131488;Free;Android 14;sdk_gphone64_x86_64;Google",
]
if auth_token is not None:
headers.append("authorization: Grindr3 " + auth_token)
c.setopt(c.HTTPHEADER, headers)
c.setopt(c.POSTFIELDS, data_json)
def handle_response(data):
response_data.append(data)
c.setopt(c.WRITEFUNCTION, handle_response)
c.perform()
c.close()
response_data = b"".join(response_data)
decompressed_response = zlib.decompress(response_data, zlib.MAX_WBITS | 16)
return json.loads(decompressed_response)
def generic_put(path, data, auth_token=None, proxy=None, proxy_port=None):
response_data = []
request_data = data
data_json = json.dumps(request_data)
c = pycurl.Curl()
if proxy is not None and proxy_port is not None:
c.setopt(c.PROXY, proxy)
c.setopt(c.PROXYPORT, proxy_port)
c.setopt(c.PROXYTYPE, pycurl.PROXYTYPE_HTTP)
c.setopt(c.URL, "https://grindr.mobi" + path)
c.setopt(c.CUSTOMREQUEST, "PUT")
headers = [
"accept: application/json",
"accept-encoding: gzip",
"accept-language: en-US",
"connection: Keep-Alive",
"content-type: application/json; charset=UTF-8",
"host: grindr.mobi",
f"l-device-info: {gen_l_dev_info()}",
"l-locale: en_US",
"l-time-zone: Europe/Oslo",
"requirerealdeviceinfo: true",
"user-agent: grindr3/24.17.1.131488;131488;Free;Android 14;sdk_gphone64_x86_64;Google",
"Content-Length: " + str(len(data_json))
]
if auth_token is not None:
headers.append("authorization: Grindr3 " + auth_token)
c.setopt(c.HTTPHEADER, headers)
c.setopt(c.POSTFIELDS, data_json)
def handle_response(data):
response_data.append(data)
c.setopt(c.WRITEFUNCTION, handle_response)
c.perform()
c.close()
response_data = b"".join(response_data)
try:
decompressed_response = zlib.decompress(response_data, zlib.MAX_WBITS | 16)
except zlib.error as e:
return {"error": "Decompression failed", "details": str(e)}
try:
return json.loads(decompressed_response)
except json.JSONDecodeError as e:
return {"error": "JSON decoding failed", "details": str(e)}
def generic_get(path, data, auth_token=None, proxy=None, proxy_port=None):
response_data = []
request_data = data
c = pycurl.Curl()
if proxy is not None and proxy_port is not None:
c.setopt(c.PROXY, proxy)
c.setopt(c.PROXYPORT, proxy_port)
c.setopt(c.PROXYTYPE, pycurl.PROXYTYPE_HTTP)
c.setopt(
c.URL,
"https://grindr.mobi"
+ path
+ "?"
+ "&".join([key + "=" + request_data[key] for key in request_data]),
)
c.setopt(c.CUSTOMREQUEST, "GET")
headers = [
"accept: application/json",
"accept-encoding: gzip",
"accept-language: en-US",
"connection: Keep-Alive",
"content-type: application/json; charset=UTF-8",
"host: grindr.mobi",
f"l-device-info: {gen_l_dev_info()}",
"l-locale: en_US",
"l-time-zone: Europe/Oslo",
"requirerealdeviceinfo: true",
"user-agent: grindr3/9.17.3.118538;118538;Free;Android 14;sdk_gphone64_x86_64;Google",
]
if auth_token is not None:
headers.append("authorization: Grindr3 " + auth_token)
c.setopt(c.HTTPHEADER, headers)
def handle_response(data):
response_data.append(data)
c.setopt(c.WRITEFUNCTION, handle_response)
c.perform()
c.close()
response_data = b"".join(response_data)
decompressed_response = zlib.decompress(response_data, zlib.MAX_WBITS | 16)
return json.loads(decompressed_response)