-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
AmazonBuyer.py
330 lines (261 loc) · 14.8 KB
/
AmazonBuyer.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
import abc
import time
import os
from distutils.util import strtobool
from dotenv import load_dotenv
from selenium import webdriver
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support.expected_conditions import presence_of_element_located,\
element_to_be_clickable, \
visibility_of_element_located
from selenium.common.exceptions import NoSuchElementException
from urllib3.exceptions import ProtocolError
from urllib3.exceptions import MaxRetryError
from urllib3.exceptions import NewConnectionError
from BrowserConnectionException import BrowserConnectionException
from Utility import Utility
from ThreadSafeCounter import ThreadSafeCounter
from BuyerInterface import BuyerInterface
# TODO: Need to read through and sort these out.
@BuyerInterface.register
class AmazonBuyer(BuyerInterface, metaclass=abc.ABCMeta):
BUYER_NAME = "AmazonBuyer"
CART_ENDPOINT = "/gp/cart/view.html/ref=nav_cart"
EMPTY_CART_SELECTOR = "//div[@id='sc-active-cart']//h1[contains(text(), 'Your Amazon Cart is empty')]"
def __init__(self,
chrome_driver_path: str,
item_indice : int,
item_name: str,
max_buy_count: int,
max_cost_per_item: float,
item_counter: ThreadSafeCounter,
max_retry_limit: int,
timeout_in_seconds: int,
is_test_run: bool):
super(AmazonBuyer, self).__init__(chrome_driver_path,
item_indice,
item_name,
max_buy_count,
max_cost_per_item,
item_counter,
max_retry_limit,
timeout_in_seconds,
is_test_run)
self.affiliate_url = Utility.get_config_value_str("AMAZON_AFFILIATE_URL")
self.item_endpoint = Utility.get_config_value_str(f"AMAZON_ITEM_ENDPOINT_{self.item_indice+1}")
self.whitelisted_sellers = Utility.get_config_value_str("AMAZON_WHITELISTED_SELLERS").split(",")
self.buy_now_only = Utility.get_config_value_bool("AMAZON_BUY_NOW_ONLY")
self.item_url = f"{self.affiliate_url}{self.item_endpoint}"
self.cart_url = f"{self.affiliate_url}{AmazonBuyer.CART_ENDPOINT}"
self.is_authenticated = False
try:
self.browser = webdriver.Chrome(self.chrome_driver_path)
self.browser.get(self.affiliate_url)
self.wait = WebDriverWait(self.browser, self.timeout_in_seconds)
except Exception as ex:
Utility.log_error(f"{AmazonBuyer.BUYER_NAME}::Failed to open browser: {str(ex)}")
raise
# Implementing both __del__ and __exit__ because I'm not sure how mature the garbage collection is under catastrophic events.
# I assume just __del__ would be enough, but using with nevertheless. No harm in being cautious.
def __del__(self):
self.browser.quit()
def __enter__(self):
return self
def __exit__(self, ex_type, ex_value, ex_traceback):
self.browser.quit()
def try_authenticate(self) -> bool:
if self.retry_counter == self.max_retry_limit:
raise BrowserConnectionException("Maximum retry limit reached!")
try:
self.browser.get(self.affiliate_url)
self.wait.until(presence_of_element_located((By.LINK_TEXT, "Sign in")))
# sign_in_link = self.browser.find_element(By.LINK_TEXT("Sign in"))
sign_in_link = self.browser.find_element_by_link_text("Sign in")
sign_in_link.click()
self.wait.until(presence_of_element_located((By.ID, "ap_email")))
email_input = self.browser.find_element_by_id("ap_email")
login_email = Utility.get_config_value_str(f"AMAZON_LOGIN_EMAIL_{self.item_indice+1}")
email_input.send_keys(login_email)
self.wait.until(presence_of_element_located((By.ID, "continue")))
self.wait.until(element_to_be_clickable((By.ID, "continue")))
continue_button = self.browser.find_element_by_id("continue")
continue_button.click()
self.wait.until(presence_of_element_located((By.ID, "ap_password")))
password_input = self.browser.find_element_by_id("ap_password")
login_password = Utility.get_config_value_str(f"AMAZON_LOGIN_PASSWORD_{self.item_indice+1}")
password_input.send_keys(login_password)
self.wait.until(presence_of_element_located((By.NAME, "rememberMe")))
continue_button = self.browser.find_element_by_name("rememberMe")
continue_button.click()
self.wait.until(presence_of_element_located((By.ID, "signInSubmit")))
self.wait.until(element_to_be_clickable((By.ID, "signInSubmit")))
continue_button = self.browser.find_element_by_id("signInSubmit")
continue_button.click()
self.wait.until(presence_of_element_located((By.ID, "nav-item-signout")))
Utility.log_verbose(f"{AmazonBuyer.BUYER_NAME}::Successfully logged in for {self.item_name}.")
self.is_authenticated = True
self.retry_counter = 0
return True
except (ProtocolError, MaxRetryError) as cex:
Utility.log_error(f"{AmazonBuyer.BUYER_NAME}::Cannot connect to Chrome: {str(cex)}")
self.is_authenticated = False
self.retry_counter += 1
return False
except Exception as ex:
self.is_authenticated = False
Utility.log_error(f"{AmazonBuyer.BUYER_NAME}::Failed to log in: {str(ex)}")
return False
def try_buy_item(self) -> bool:
if self.retry_counter == self.max_retry_limit:
raise BrowserConnectionException("Maximum retry limit reached!")
try:
if not self.try_clear_cart():
return False
self.browser.get(self.item_url)
if not self.try_check_seller():
return False
if self.try_buy_now():
return True
if not self.buy_now_only:
if not self.try_clear_cart():
return False
self.browser.get(self.item_url)
#self.browser.refresh()
if not self.try_check_seller():
return False
return self.try_purchase_via_cart()
except Exception as ex:
Utility.log_verbose(f"{AmazonBuyer.BUYER_NAME}::Failed to buy item: {str(ex)}")
return False
def try_clear_cart(self) -> bool:
try:
self.browser.get(self.cart_url)
existing_cart_items_container = self.browser.find_element_by_id("activeCartViewForm")
cart_empty = existing_cart_items_container.find_elements_by_xpath(AmazonBuyer.EMPTY_CART_SELECTOR)
if len(cart_empty) == 1:
self.retry_counter = 0
return True
existing_cart_items_to_delete = existing_cart_items_container.find_elements_by_xpath(
"//form[@id='activeCartViewForm']//input[@value='Delete']")
for existing_cart_item_to_delete in existing_cart_items_to_delete:
existing_cart_item_to_delete.click()
#time.sleep(3)
self.wait.until(presence_of_element_located(
(By.XPATH, AmazonBuyer.EMPTY_CART_SELECTOR)))
self.wait.until(visibility_of_element_located(
(By.XPATH, AmazonBuyer.EMPTY_CART_SELECTOR)))
self.retry_counter = 0
return True
except (ProtocolError, MaxRetryError) as cex:
Utility.log_error(f"{AmazonBuyer.BUYER_NAME}::Cannot connect to Chrome: {str(cex)}")
self.retry_counter += 1
return False
except Exception as ex:
Utility.log_warning(f"{AmazonBuyer.BUYER_NAME}::Failed to clear cart: {str(ex)}")
return False
def try_check_seller(self) -> bool:
try:
# Check if there are any whitelist rules defined
if len(self.whitelisted_sellers) == 0:
return True
seller_info_container = self.browser.find_element_by_id("sellerProfileTriggerId")
seller_info = seller_info_container.get_attribute("innerText")
if all(seller_info not in seller for seller in self.whitelisted_sellers):
Utility.log_information(f"{AmazonBuyer.BUYER_NAME}::Seller is not whitelisted: {seller_info}")
return False
return True
except NoSuchElementException as nex:
Utility.log_warning(f"{AmazonBuyer.BUYER_NAME}::Seller info not found. Assuming Amazon: {str(nex)}")
return True
except Exception as ex:
Utility.log_error(f"{AmazonBuyer.BUYER_NAME}::Error occurred while trying to determine the seller: {str(ex)}")
return False
def try_reject_additional_warranty(self) -> bool:
try:
self.wait.until(presence_of_element_located((By.ID, "siNoCoverage-announce")))
self.wait.until(visibility_of_element_located((By.ID, "siNoCoverage-announce")))
self.wait.until(element_to_be_clickable((By.ID, "siNoCoverage-announce")))
no_thanks = self.browser.find_element_by_id("siNoCoverage-announce")
no_thanks.click()
return True
except Exception as ex:
Utility.log_verbose(f'{AmazonBuyer.BUYER_NAME}::Assuming no "thanks but no thanks" is necessary: {str(ex)}')
return False
def try_buy_now(self) -> bool:
try:
#self.wait.until(presence_of_element_located((By.ID, "buy-now-button")))
#self.wait.until(visibility_of_element_located((By.ID, "buy-now-button")))
#self.wait.until(element_to_be_clickable((By.ID, "buy-now-button")))
buy_now_button = self.browser.find_element_by_id("buy-now-button")
buy_now_button.click()
#time.sleep(2)
# Buy Now price check
self.wait.until(presence_of_element_located((By.ID, "turbo-checkout-iframe")))
self.wait.until(visibility_of_element_located((By.ID, "turbo-checkout-iframe")))
buy_now_iframe = self.browser.find_element_by_id("turbo-checkout-iframe")
self.browser.switch_to.frame(buy_now_iframe)
self.wait.until(presence_of_element_located((By.ID, "turbo-checkout-panel-container")))
self.wait.until(visibility_of_element_located((By.ID, "turbo-checkout-panel-container")))
turbo_checkout_panel_container = self.browser.find_element_by_id("turbo-checkout-panel-container")
buy_now_price_container = turbo_checkout_panel_container.find_element_by_xpath(
"//div[@id='turbo-checkout-panel-container']//span[@class='a-color-price']")
buy_now_price_text = buy_now_price_container.text
buy_now_cost = Utility.parse_price_string(buy_now_price_text)
if buy_now_cost > self.max_cost_per_item:
Utility.log_information(f"{AmazonBuyer.BUYER_NAME}::Buy now price is too high: {buy_now_cost} instead of {self.max_cost_per_item}")
self.browser.switch_to.parent_frame()
return False
self.wait.until(presence_of_element_located((By.ID, "turbo-checkout-pyo-button")))
self.wait.until(visibility_of_element_located((By.ID, "turbo-checkout-pyo-button")))
self.wait.until(element_to_be_clickable((By.ID, "turbo-checkout-pyo-button")))
turbo_checkout_button = self.browser.find_element_by_id("turbo-checkout-pyo-button")
# Check if the item is bought via another BuyerInterface instance.
with self.item_counter as locked_counter:
if locked_counter.get_within_existing_lock()[0] >= max_buy_count:
return False
if self.is_test_run:
Utility.log_warning(f"{AmazonBuyer.BUYER_NAME}::Performing test run on Buy Now")
else:
turbo_checkout_button.click()
# If we reached this far, it should mean success
locked_counter.increment_within_existing_lock(1, buy_now_cost)
Utility.log_warning(f"{AmazonBuyer.BUYER_NAME}::Purchased {self.item_counter.get()[0]} of {self.max_buy_count} via Buy Now at: {buy_now_cost}")
self.browser.switch_to.parent_frame()
return True
except Exception as ex:
Utility.log_verbose(f"{AmazonBuyer.BUYER_NAME}::Buy now did not work: {str(ex)}")
self.browser.switch_to.parent_frame()
return False
def try_purchase_via_cart(self) -> bool:
try:
add_to_cart_button = self.browser.find_element_by_id("add-to-cart-button")
add_to_cart_button.click()
time.sleep(self.timeout_in_seconds)
self.try_reject_additional_warranty()
self.browser.get(self.cart_url)
checkout_button = self.browser.find_element_by_name("proceedToRetailCheckout")
checkout_button.click()
# Cart price check
price_info = self.browser.find_element_by_css_selector("td.grand-total-price").text
add_to_cart_cost = Utility.parse_price_string(price_info)
if add_to_cart_cost > self.max_cost_per_item:
Utility.log_information(f"{AmazonBuyer.BUYER_NAME}::Add to cart price is too high: {add_to_cart_cost} instead of {self.max_cost_per_item}")
return False
# Confirm order
order_confirmation_button = self.browser.find_element_by_name("placeYourOrder1")
# Check if the item is bought via another BuyerInterface instance.
with self.item_counter as locked_counter:
if locked_counter.get_within_existing_lock()[0] >= max_buy_count:
return False
if self.is_test_run:
Utility.log_warning(f"{AmazonBuyer.BUYER_NAME}::Performing test run on Purchase via Cart")
else:
order_confirmation_button.click()
locked_counter.increment_within_existing_lock(1, add_to_cart_cost)
Utility.log_warning(f"{AmazonBuyer.BUYER_NAME}::Purchased {self.item_counter.get()[0]} of {self.max_buy_count} via Add to Cart at: {add_to_cart_cost}")
return True
except Exception as ex:
# TODO: Add success detection.
Utility.log_verbose(f"{AmazonBuyer.BUYER_NAME}::Failed to buy item via cart. Current stock: {self.item_counter.get()[0]} of {self.max_buy_count} at: {self.item_counter.get()[1]}. Error was: {str(ex)}")
return False