add some description for not implement sold-out text
parent
51cfd3d56b
commit
d33e805508
|
@ -51,7 +51,7 @@ ssl._create_default_https_context = ssl._create_unverified_context
|
||||||
#附註1:沒有寫的很好,很多地方應該可以模組化。
|
#附註1:沒有寫的很好,很多地方應該可以模組化。
|
||||||
#附註2:
|
#附註2:
|
||||||
|
|
||||||
CONST_APP_VERSION = u"MaxBot (2022.02.19)"
|
CONST_APP_VERSION = u"MaxBot (2022.03.16)"
|
||||||
|
|
||||||
CONST_FROM_TOP_TO_BOTTOM = u"from top to bottom"
|
CONST_FROM_TOP_TO_BOTTOM = u"from top to bottom"
|
||||||
CONST_FROM_BOTTOM_TO_TOP = u"from bottom to top"
|
CONST_FROM_BOTTOM_TO_TOP = u"from bottom to top"
|
||||||
|
@ -795,6 +795,11 @@ def date_auto_select(driver, url, date_auto_select_mode, date_keyword):
|
||||||
debug_date_select = True # debug.
|
debug_date_select = True # debug.
|
||||||
debug_date_select = False # online
|
debug_date_select = False # online
|
||||||
|
|
||||||
|
# PS: for big events, check sold out text maybe not helpful, due to database is too busy.
|
||||||
|
is_pass_sold_out = True
|
||||||
|
is_pass_sold_out = False
|
||||||
|
sold_out_text = ["選購一空","No tickets available","空席なし"]
|
||||||
|
|
||||||
game_name = ""
|
game_name = ""
|
||||||
|
|
||||||
if "/activity/game/" in url:
|
if "/activity/game/" in url:
|
||||||
|
@ -807,9 +812,12 @@ def date_auto_select(driver, url, date_auto_select_mode, date_keyword):
|
||||||
print("date_auto_select_mode:", date_auto_select_mode)
|
print("date_auto_select_mode:", date_auto_select_mode)
|
||||||
print("date_keyword:", date_keyword)
|
print("date_keyword:", date_keyword)
|
||||||
|
|
||||||
|
|
||||||
# choose date
|
# choose date
|
||||||
if "/activity/game/%s" % (game_name,) in url:
|
if "/activity/game/%s" % (game_name,) in url:
|
||||||
|
|
||||||
|
# one or more row is matched.
|
||||||
|
match_keyword_row = False
|
||||||
|
|
||||||
if len(date_keyword) == 0:
|
if len(date_keyword) == 0:
|
||||||
if debug_date_select:
|
if debug_date_select:
|
||||||
print("date keyword is empty.")
|
print("date keyword is empty.")
|
||||||
|
@ -823,6 +831,7 @@ def date_auto_select(driver, url, date_auto_select_mode, date_keyword):
|
||||||
print("find .btn-next fail")
|
print("find .btn-next fail")
|
||||||
else:
|
else:
|
||||||
# from down to top
|
# from down to top
|
||||||
|
# [TODO]: Random selection mode is not implemented..
|
||||||
days = None
|
days = None
|
||||||
try:
|
try:
|
||||||
days = driver.find_elements(By.CSS_SELECTOR, '.btn-next')
|
days = driver.find_elements(By.CSS_SELECTOR, '.btn-next')
|
||||||
|
@ -839,6 +848,7 @@ def date_auto_select(driver, url, date_auto_select_mode, date_keyword):
|
||||||
# first date.
|
# first date.
|
||||||
try:
|
try:
|
||||||
el.click()
|
el.click()
|
||||||
|
match_keyword_row = True
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
print("try to click .btn-next fail")
|
print("try to click .btn-next fail")
|
||||||
else:
|
else:
|
||||||
|
@ -853,8 +863,6 @@ def date_auto_select(driver, url, date_auto_select_mode, date_keyword):
|
||||||
print("find #gameList fail")
|
print("find #gameList fail")
|
||||||
|
|
||||||
if date_list is not None:
|
if date_list is not None:
|
||||||
match_keyword_row = False
|
|
||||||
|
|
||||||
for row in date_list:
|
for row in date_list:
|
||||||
row_text = ""
|
row_text = ""
|
||||||
try:
|
try:
|
||||||
|
@ -883,6 +891,7 @@ def date_auto_select(driver, url, date_auto_select_mode, date_keyword):
|
||||||
if match_keyword_row:
|
if match_keyword_row:
|
||||||
break
|
break
|
||||||
|
|
||||||
|
if not match_keyword_row:
|
||||||
# auto refresh for date list page.
|
# auto refresh for date list page.
|
||||||
el_list = None
|
el_list = None
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -17,7 +17,7 @@ import sys
|
||||||
import platform
|
import platform
|
||||||
import json
|
import json
|
||||||
|
|
||||||
CONST_APP_VERSION = u"MaxBot (2022.02.19)"
|
CONST_APP_VERSION = u"MaxBot (2022.03.16)"
|
||||||
|
|
||||||
CONST_FROM_TOP_TO_BOTTOM = u"from top to bottom"
|
CONST_FROM_TOP_TO_BOTTOM = u"from top to bottom"
|
||||||
CONST_FROM_BOTTOM_TO_TOP = u"from bottom to top"
|
CONST_FROM_BOTTOM_TO_TOP = u"from bottom to top"
|
||||||
|
|
Loading…
Reference in New Issue