-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilter.py
More file actions
282 lines (254 loc) · 10.4 KB
/
filter.py
File metadata and controls
282 lines (254 loc) · 10.4 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
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
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import requests
import json
import re
def fix_json_with_commas(json_str):
fixed_json = json_str.replace('}{', '},{')
# Remove single characters and extra commas using regular expressions
filtered_data = re.sub(r',\s*\b\w\b', '', fixed_json)
return f"[{filtered_data}]"
def get_json_objects_by_public_key(json_data, owner_public_key=None, recipient_public_key=None):
matching_objects = []
if owner_public_key != None and recipient_public_key != None:
for obj in json_data[0]:
try:
if owner_public_key in obj['inputs'][0]['owners_before'] and recipient_public_key in obj['outputs'][0]['public_keys']:
matching_objects.append(obj)
except Exception as e:
print(e)
elif owner_public_key == None and recipient_public_key != None:
for obj in json_data[0]:
try:
if recipient_public_key in obj['outputs'][0]['public_keys']:
matching_objects.append(obj)
except Exception as e:
print(e)
elif owner_public_key != None and recipient_public_key == None:
for obj in json_data[0]:
try:
if owner_public_key in obj['inputs'][0]['owners_before']:
matching_objects.append(obj)
except Exception as e:
print(e)
else:
for obj in json_data[0]:
try:
matching_objects.append(obj)
except Exception as e:
print(e)
return matching_objects
def get_json_objects_by_name(json_data, n=None):
matching_objects = []
if n != None:
for obj in json_data[0]:
try:
if n in obj['asset']['data']['name']:
matching_objects.append(obj)
except Exception as e:
print(e)
else:
for obj in json_data[0]:
matching_objects.append(obj)
return matching_objects
def get_json_objects_by_origin(json_data, o=None):
matching_objects = []
if o != None:
for obj in json_data[0]:
try:
if o in obj['asset']['data']['origin']:
matching_objects.append(obj)
except Exception as e:
print(e)
else:
for obj in json_data[0]:
matching_objects.append(obj)
return matching_objects
def get_json_objects_by_curatorId(json_data, o=None):
matching_objects = []
if o != None:
for obj in json_data[0]:
try:
if o in obj['asset']['data']['curatorId']:
matching_objects.append(obj)
except Exception as e:
print(e)
else:
for obj in json_data[0]:
matching_objects.append(obj)
return matching_objects
def get_json_objects_by_alll(json_data, o=None):
matching_objects = []
if o != None:
for obj in json_data[0]:
try:
if o in obj['outputs'][0]['amount']:
matching_objects.append(obj)
except Exception as e:
print(e)
else:
for obj in json_data[0]:
matching_objects.append(obj)
return matching_objects
def get_json_objects_by_museumId(json_data, o=None):
matching_objects = []
if o != None:
for obj in json_data[0]:
try:
if o in obj['asset']['data']['museumId']:
matching_objects.append(obj)
except Exception as e:
print(e)
else:
for obj in json_data[0]:
matching_objects.append(obj)
return matching_objects
def get_json_data(url, ownerPublicKey=None, recipientPublicKey=None):
try:
response = requests.get(url)
# Check if the request was successful (status code 200)
if response.status_code == 200:
# Parse the JSON data from the response
json_text = fix_json_with_commas(response.text)
json_data = json.loads(json_text)
if ownerPublicKey == None and recipientPublicKey == None:
matching_objects = get_json_objects_by_public_key(json_data, None, None)
return matching_objects
elif ownerPublicKey == None and recipientPublicKey != None:
matching_objects = get_json_objects_by_public_key(json_data, None, recipientPublicKey)
return matching_objects
elif ownerPublicKey != None and recipientPublicKey == None:
matching_objects = get_json_objects_by_public_key(json_data, ownerPublicKey, None)
return matching_objects
else:
# Get all JSON objects that match the given publicKey
matching_objects = get_json_objects_by_public_key(json_data, ownerPublicKey, recipientPublicKey)
return matching_objects
else:
print(f"Error: Unable to retrieve data from {url}. Status code: {response.status_code}")
return []
except requests.exceptions.RequestException as e:
print(f"Error: {e}")
return []
def get_name_json_data(url, name=None):
try:
response = requests.get(url)
if response.status_code == 200:
json_text = fix_json_with_commas(response.text)
json_data = json.loads(json_text)
if name == None:
matching_objects = get_json_objects_by_name(json_data, None)
return matching_objects
else:
matching_objects = get_json_objects_by_name(json_data, name)
return matching_objects
else:
print(f"Error: Unable to retrieve data from {url}. Status code: {response.status_code}")
return []
except requests.exceptions.RequestException as e:
print(f"Error: {e}")
return []
def get_origin_json_data(url, origin=None):
try:
response = requests.get(url)
if response.status_code == 200:
json_text = fix_json_with_commas(response.text)
json_data = json.loads(json_text)
if origin == None:
matching_objects = get_json_objects_by_origin(json_data, None)
return matching_objects
else:
matching_objects = get_json_objects_by_origin(json_data, origin)
return matching_objects
else:
print(f"Error: Unable to retrieve data from {url}. Status code: {response.status_code}")
return []
except requests.exceptions.RequestException as e:
print(f"Error: {e}")
return []
def get_curatorId_json_data(url, curatorId=None):
try:
response = requests.get(url)
if response.status_code == 200:
json_text = fix_json_with_commas(response.text)
json_data = json.loads(json_text)
if curatorId == None:
matching_objects = get_json_objects_by_curatorId(json_data, None)
return matching_objects
else:
matching_objects = get_json_objects_by_curatorId(json_data, curatorId)
return matching_objects
else:
print(f"Error: Unable to retrieve data from {url}. Status code: {response.status_code}")
return []
except requests.exceptions.RequestException as e:
print(f"Error: {e}")
return []
def get_museumId_json_data(url, museumId=None):
try:
response = requests.get(url)
if response.status_code == 200:
json_text = fix_json_with_commas(response.text)
json_data = json.loads(json_text)
if museumId == None:
matching_objects = get_json_objects_by_museumId(json_data, None)
return matching_objects
else:
matching_objects = get_json_objects_by_museumId(json_data, museumId)
return matching_objects
else:
print(f"Error: Unable to retrieve data from {url}. Status code: {response.status_code}")
return []
except requests.exceptions.RequestException as e:
print(f"Error: {e}")
return []
def get_alll_json_data(url, alll=None):
try:
response = requests.get(url)
if response.status_code == 200:
json_text = fix_json_with_commas(response.text)
json_data = json.loads(json_text)
if alll == None:
matching_objects = get_json_objects_by_alll(json_data, None)
return matching_objects
else:
matching_objects = get_json_objects_by_alll(json_data, alll)
return matching_objects
else:
print(f"Error: Unable to retrieve data from {url}. Status code: {response.status_code}")
return []
except requests.exceptions.RequestException as e:
print(f"Error: {e}")
return []
def filter_by_keys(url, ownerPublicKey, recipientPublicKey):
json_data = get_json_data(url, ownerPublicKey, recipientPublicKey)
return json_data
def filter_by_name(url, name):
json_data = get_name_json_data(url, name)
return json_data
def filter_by_origin(url, origin):
json_data = get_origin_json_data(url, origin)
return json_data
def filter_by_curatorId(url, curatorId):
json_data = get_curatorId_json_data(url, curatorId)
return json_data
def filter_by_museumId(url, museumId):
json_data = get_museumId_json_data(url, museumId)
return json_data
def filter_by_alll(url, alll):
json_data = get_alll_json_data(url, alll)
return json_data