-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathitem_manager.py
74 lines (65 loc) · 2.41 KB
/
item_manager.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
from retrying import retry
from gql import gql
from logger import logger
from queries import get_items_query, search_items_query, get_item_by_id_query, check_duplicate_query, create_comment_query
class ItemManager:
def __init__(self, client):
self.client = client
@retry(wait_exponential_multiplier=3000, wait_exponential_max=10000, stop_max_attempt_number=3, retry_on_exception=lambda e: True)
def execute(self, query, variables=None, attempt=1):
gql_query = gql(query)
try:
result = self.client.execute(gql_query, variable_values=variables)
if attempt > 1:
logger.info(f"Query succeeded on attempt {attempt}.")
return result
except Exception as e:
logger.error(f"Error executing query on attempt {attempt}: {str(e)}")
if attempt < 3: # If it's not the last attempt
return self.execute(query, variables, attempt + 1)
raise
def create_comment(self, parent_id, text):
variables = {
"text": text,
"parentId": parent_id
}
response = self.execute(create_comment_query, variables)
return response["upsertComment"]["id"]
def get_items(self, limit=10, cursor=None, sort="NEW", type=None, sub=None, name=None, when=None, by=None):
variables = {
"limit": limit,
"cursor": cursor,
"sort": sort,
"type": type,
"sub": sub,
"name": name,
"when": when,
"by": by
}
response = self.execute(get_items_query, variables)
return {
"items": response["items"],
"cursor": cursor,
"limit": limit
}
def search_items(self, q, sub=None, cursor=None, what=None, sort=None, when=None, limit=10):
variables = {
"q": q,
"sub": sub,
"cursor": cursor,
"what": what,
"sort": sort,
"when": when
}
response = self.execute(search_items_query, variables)
return response['search']['items']
def get_item_by_id(self, item_id):
variables = {
"id": item_id
}
return self.execute(get_item_by_id_query, variables)
def check_duplicate(self, url):
variables = {
"url": url
}
return self.execute(check_duplicate_query, variables)