2021-12-01 18:31:19 +00:00
|
|
|
#!/usr/bin/env python3
|
2019-10-01 17:52:13 +00:00
|
|
|
#encoding=utf-8
|
2022-11-11 16:46:36 +00:00
|
|
|
# 'seleniumwire' and 'selenium 4' raise error when running python 2.x
|
|
|
|
# PS: python 2.x will be removed in future.
|
2019-10-01 17:52:13 +00:00
|
|
|
try:
|
|
|
|
# for Python2
|
|
|
|
from Tkinter import *
|
|
|
|
import ttk
|
|
|
|
import tkMessageBox as messagebox
|
|
|
|
except ImportError:
|
|
|
|
# for Python3
|
|
|
|
from tkinter import *
|
|
|
|
from tkinter import ttk
|
2023-05-25 02:42:32 +00:00
|
|
|
import tkinter.font as tkfont
|
2019-10-01 17:52:13 +00:00
|
|
|
from tkinter import messagebox
|
2023-03-05 08:04:15 +00:00
|
|
|
from tkinter.filedialog import asksaveasfilename
|
2019-10-01 17:52:13 +00:00
|
|
|
import os
|
|
|
|
import sys
|
2021-12-01 18:31:19 +00:00
|
|
|
import platform
|
2022-11-13 18:34:22 +00:00
|
|
|
import webbrowser
|
2022-11-17 18:17:19 +00:00
|
|
|
import pyperclip
|
2023-02-11 05:36:27 +00:00
|
|
|
import base64
|
2023-03-12 16:34:59 +00:00
|
|
|
import time
|
|
|
|
import threading
|
2023-03-14 00:28:24 +00:00
|
|
|
import subprocess
|
2023-05-31 00:52:03 +00:00
|
|
|
import json
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-06-15 09:58:35 +00:00
|
|
|
import requests
|
|
|
|
import warnings
|
|
|
|
from urllib3.exceptions import InsecureRequestWarning
|
|
|
|
warnings.simplefilter('ignore',InsecureRequestWarning)
|
|
|
|
import ssl
|
|
|
|
ssl._create_default_https_context = ssl._create_unverified_context
|
|
|
|
|
2023-06-19 12:55:33 +00:00
|
|
|
import socket
|
|
|
|
|
2023-06-27 10:32:34 +00:00
|
|
|
CONST_APP_VERSION = "MaxBot (2023.6.25)"
|
2023-02-26 08:39:37 +00:00
|
|
|
|
2023-03-12 16:34:59 +00:00
|
|
|
CONST_MAXBOT_CONFIG_FILE = "settings.json"
|
|
|
|
CONST_MAXBOT_LAST_URL_FILE = "MAXBOT_LAST_URL.txt"
|
|
|
|
CONST_MAXBOT_INT28_FILE = "MAXBOT_INT28_IDLE.txt"
|
2023-06-15 09:58:35 +00:00
|
|
|
CONST_MAXBOT_ANSWER_ONLINE_FILE = "MAXBOT_ONLINE_ANSWER.txt"
|
2023-06-16 04:04:04 +00:00
|
|
|
CONST_MAXBOT_QUESTION_FILE = "MAXBOT_QUESTION.txt"
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-06-19 12:55:33 +00:00
|
|
|
CONST_SERVER_PORT_DEFAULT = 8888
|
|
|
|
CONST_SERVER_PORT = CONST_SERVER_PORT_DEFAULT
|
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
CONST_FROM_TOP_TO_BOTTOM = u"from top to bottom"
|
|
|
|
CONST_FROM_BOTTOM_TO_TOP = u"from bottom to top"
|
|
|
|
CONST_RANDOM = u"random"
|
|
|
|
CONST_SELECT_ORDER_DEFAULT = CONST_FROM_TOP_TO_BOTTOM
|
|
|
|
CONST_SELECT_OPTIONS_DEFAULT = (CONST_FROM_TOP_TO_BOTTOM, CONST_FROM_BOTTOM_TO_TOP, CONST_RANDOM)
|
|
|
|
CONST_SELECT_OPTIONS_ARRAY = [CONST_FROM_TOP_TO_BOTTOM, CONST_FROM_BOTTOM_TO_TOP, CONST_RANDOM]
|
2022-11-17 18:17:19 +00:00
|
|
|
CONST_ADBLOCK_PLUS_ADVANCED_FILTER_DEFAULT = '''tixcraft.com###topAlert
|
2023-02-22 16:05:44 +00:00
|
|
|
tixcraft.com##.col-md-7.col-xs-12.mgt-16.text-center
|
|
|
|
tixcraft.com##.col-md-7.col-xs-12.mgt-16.mx-auto
|
2022-11-17 18:17:19 +00:00
|
|
|
tixcraft.com##.topBar.alert-box.emergency
|
|
|
|
tixcraft.com##.footer.clearfix
|
2023-02-22 16:05:44 +00:00
|
|
|
tixcraft.com##.page-info.row.line-btm.mg-0
|
|
|
|
tixcraft.com##.row.justify-content-start.navbar-location'''
|
2022-11-21 19:01:04 +00:00
|
|
|
CONST_CAPTCHA_SOUND_FILENAME_DEFAULT = "ding-dong.wav"
|
|
|
|
CONST_HOMEPAGE_DEFAULT = "https://tixcraft.com"
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-02-12 03:02:16 +00:00
|
|
|
CONST_OCR_CAPTCH_IMAGE_SOURCE_NON_BROWSER = "NonBrowser"
|
|
|
|
CONST_OCR_CAPTCH_IMAGE_SOURCE_CANVAS = "canvas"
|
|
|
|
|
|
|
|
CONST_WEBDRIVER_TYPE_SELENIUM = "selenium"
|
|
|
|
#CONST_WEBDRIVER_TYPE_STEALTH = "stealth"
|
|
|
|
CONST_WEBDRIVER_TYPE_UC = "undetected_chromedriver"
|
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
CONST_SUPPORTED_SITES = ["https://kktix.com"
|
|
|
|
,"https://tixcraft.com (拓元)"
|
|
|
|
,"https://ticketmaster.sg"
|
|
|
|
,"https://ticketmaster.com"
|
|
|
|
,"https://teamear.tixcraft.com/ (添翼)"
|
|
|
|
,"https://www.indievox.com/ (獨立音樂)"
|
|
|
|
,"https://www.famiticket.com.tw (全網)"
|
|
|
|
,"https://ticket.ibon.com.tw/"
|
|
|
|
,"https://kham.com.tw/ (寬宏)"
|
|
|
|
,"https://ticket.com.tw/ (年代)"
|
|
|
|
,"https://ticketplus.com.tw/ (遠大)"
|
|
|
|
,"===[以下為香港的系統]==="
|
|
|
|
,"http://www.urbtix.hk/ (城市)"
|
|
|
|
,"https://www.cityline.com/ (買飛)"
|
2023-06-21 08:30:06 +00:00
|
|
|
,"https://hotshow.hkticketing.com/ (快達票)"
|
2023-05-24 07:17:11 +00:00
|
|
|
,"https://ticketing.galaxymacau.com/ (澳門銀河)"
|
|
|
|
]
|
|
|
|
# 目前機器人已失效, 因為官方的 reCaptcha 可以檢測出機器人。
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
translate={}
|
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
URL_DONATE = 'https://max-everyday.com/about/#donate'
|
|
|
|
URL_HELP = 'https://max-everyday.com/2018/03/tixcraft-bot/'
|
|
|
|
URL_RELEASE = 'https://github.com/max32002/tixcraft_bot/releases'
|
2022-11-16 15:43:53 +00:00
|
|
|
URL_FB = 'https://www.facebook.com/maxbot.ticket'
|
2023-02-07 16:42:04 +00:00
|
|
|
URL_CHROME_DRIVER = 'https://chromedriver.chromium.org/'
|
|
|
|
URL_FIREFOX_DRIVER = 'https://github.com/mozilla/geckodriver/releases'
|
|
|
|
URL_EDGE_DRIVER = 'https://developer.microsoft.com/zh-tw/microsoft-edge/tools/webdriver/'
|
2022-11-13 18:34:22 +00:00
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
def load_translate():
|
2022-11-13 18:34:22 +00:00
|
|
|
translate = {}
|
2022-11-11 16:46:36 +00:00
|
|
|
en_us={}
|
|
|
|
en_us["homepage"] = 'Homepage'
|
|
|
|
en_us["browser"] = 'Browser'
|
|
|
|
en_us["language"] = 'Language'
|
|
|
|
en_us["ticket_number"] = 'Ticker Number'
|
2022-12-15 11:26:51 +00:00
|
|
|
|
|
|
|
en_us["auto_check_agree"] = 'Auto check agree checkbox'
|
2022-11-11 16:46:36 +00:00
|
|
|
en_us["enable"] = 'Enable'
|
2023-01-12 08:51:05 +00:00
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
en_us["auto_press_next_step_button"] = 'Auto Press Next Step Button'
|
|
|
|
en_us["auto_fill_ticket_number"] = 'Auto Fill Ticket Number'
|
2022-11-13 18:34:22 +00:00
|
|
|
en_us["and"] = 'And with'
|
2023-06-15 09:58:35 +00:00
|
|
|
|
2023-06-19 09:31:57 +00:00
|
|
|
en_us["local_dictionary"] = 'Local Dictionary'
|
2023-06-15 09:58:35 +00:00
|
|
|
en_us["online_dictionary_url"] = 'Online Dictionary URL'
|
2022-11-11 16:46:36 +00:00
|
|
|
en_us["auto_guess_options"] = 'Guess Options in Question'
|
2023-06-15 09:58:35 +00:00
|
|
|
en_us["user_guess_string"] = 'Fill Answers in Question'
|
2023-06-19 09:31:57 +00:00
|
|
|
en_us["preview"] = 'Preview'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
en_us["date_auto_select"] = 'Date Auto Select'
|
|
|
|
en_us["date_select_order"] = 'Date select order'
|
|
|
|
en_us["date_keyword"] = 'Date Keyword'
|
2023-01-12 08:51:05 +00:00
|
|
|
en_us["pass_date_is_sold_out"] = 'Pass date is sold out'
|
|
|
|
en_us["auto_reload_coming_soon_page"] = 'Reload coming soon page'
|
2023-06-18 16:19:49 +00:00
|
|
|
en_us["auto_reload_page_interval"] = 'Reload page interval sec.(HK)'
|
2023-06-19 12:55:33 +00:00
|
|
|
en_us["auto_reload_random_delay"] = 'Reload random delay(TW)'
|
2023-03-12 16:34:59 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
en_us["area_select_order"] = 'Area select order'
|
|
|
|
en_us["area_keyword"] = 'Area Keyword'
|
2022-11-11 16:46:36 +00:00
|
|
|
en_us["area_auto_select"] = 'Area Auto Select'
|
2023-03-21 17:33:12 +00:00
|
|
|
en_us["area_keyword_exclude"] = 'Area Keyword Exclude'
|
2023-05-24 07:17:11 +00:00
|
|
|
en_us["area_keyword_usage"] = 'Each keyword need double quotes, separated by comma,\nUse space in keyword as AND logic.\nAppend ,\"\" to match all.'
|
|
|
|
|
2023-01-12 08:51:05 +00:00
|
|
|
en_us["pass_1_seat_remaining"] = 'Pass 1 seat remaining'
|
|
|
|
en_us["ocr_captcha"] = 'OCR captcha'
|
2023-01-13 00:43:16 +00:00
|
|
|
en_us["ocr_captcha_force_submit"] = 'Away from keyboard'
|
2023-01-13 19:01:47 +00:00
|
|
|
en_us["ocr_captcha_image_source"] = 'OCR image source'
|
2023-02-12 03:02:16 +00:00
|
|
|
en_us["webdriver_type"] = 'WebDriver type'
|
2023-02-22 16:05:44 +00:00
|
|
|
en_us["headless"] = 'Headless mode'
|
2023-03-07 14:30:30 +00:00
|
|
|
# Make the operation more talkative
|
|
|
|
en_us["verbose"] = 'Verbose mode'
|
2023-03-12 16:34:59 +00:00
|
|
|
en_us["running_status"] = 'Running Status'
|
|
|
|
en_us["running_url"] = 'Running URL'
|
|
|
|
en_us["status_idle"] = 'Idle'
|
|
|
|
en_us["status_paused"] = 'Paused'
|
|
|
|
en_us["status_enabled"] = 'Enabled'
|
|
|
|
en_us["status_running"] = 'Running'
|
|
|
|
|
|
|
|
en_us["idle"] = 'Idle'
|
|
|
|
en_us["resume"] = 'Resume'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
en_us["preference"] = 'Preference'
|
|
|
|
en_us["advanced"] = 'Advanced'
|
2023-06-19 09:31:57 +00:00
|
|
|
en_us["verification_word"] = "Verification code"
|
2023-02-11 05:36:27 +00:00
|
|
|
en_us["autofill"] = 'Autofill'
|
2023-03-12 16:34:59 +00:00
|
|
|
en_us["runtime"] = 'Runtime'
|
2022-11-16 15:43:53 +00:00
|
|
|
en_us["about"] = 'About'
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
en_us["run"] = 'Run'
|
|
|
|
en_us["save"] = 'Save'
|
2022-11-16 15:43:53 +00:00
|
|
|
en_us["exit"] = 'Close'
|
2022-11-17 18:17:19 +00:00
|
|
|
en_us["copy"] = 'Copy'
|
2022-12-27 15:38:13 +00:00
|
|
|
en_us["restore_defaults"] = 'Restore Defaults'
|
2023-02-26 08:39:37 +00:00
|
|
|
en_us["config_launcher"] = 'Launcher'
|
2022-12-27 15:38:13 +00:00
|
|
|
en_us["done"] = 'Done'
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
en_us["tixcraft_sid"] = 'Tixcraft cookie SID'
|
2023-02-26 08:39:37 +00:00
|
|
|
en_us["ibon_ibonqware"] = 'ibon cookie ibonqware'
|
2022-11-17 18:17:19 +00:00
|
|
|
en_us["facebook_account"] = 'Facebook account'
|
2022-12-27 15:38:13 +00:00
|
|
|
en_us["kktix_account"] = 'KKTIX account'
|
2023-01-18 08:40:41 +00:00
|
|
|
en_us["cityline_account"] = 'cityline account'
|
|
|
|
en_us["urbtix_account"] = 'URBTIX account'
|
2023-02-12 09:49:55 +00:00
|
|
|
en_us["hkticketing_account"] = 'HKTICKETING account'
|
2023-02-11 05:36:27 +00:00
|
|
|
en_us["kham_account"] = 'KHAM account'
|
|
|
|
|
|
|
|
en_us["facebook_password"] = 'Facebook password'
|
|
|
|
en_us["kktix_password"] = 'KKTIX password'
|
|
|
|
en_us["cityline_password"] = 'cityline password'
|
|
|
|
en_us["urbtix_password"] = 'URBTIX password'
|
2023-02-12 09:49:55 +00:00
|
|
|
en_us["hkticketing_password"] = 'HKTICKETING password'
|
2023-02-11 05:36:27 +00:00
|
|
|
en_us["kham_password"] = 'KHAM password'
|
|
|
|
en_us["save_password_alert"] = 'Saving passwords to config file may expose your passwords.'
|
2023-03-12 16:34:59 +00:00
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
en_us["play_captcha_sound"] = 'Play sound when captcha'
|
|
|
|
en_us["captcha_sound_filename"] = 'captcha sound filename'
|
2023-05-03 05:17:04 +00:00
|
|
|
en_us["adblock_plus_enable"] = 'Browser Extension'
|
2022-11-17 18:17:19 +00:00
|
|
|
en_us["adblock_plus_settings"] = "Adblock Advanced Filter"
|
2023-05-17 00:06:08 +00:00
|
|
|
en_us["disable_adjacent_seat"] = "Disable Adjacent Seat"
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
en_us["maxbot_slogan"] = 'MaxBot is a FREE and open source bot program. Wish you good luck.'
|
2022-11-11 16:46:36 +00:00
|
|
|
en_us["donate"] = 'Donate'
|
2022-11-13 18:34:22 +00:00
|
|
|
en_us["help"] = 'Help'
|
|
|
|
en_us["release"] = 'Release'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
zh_tw={}
|
|
|
|
zh_tw["homepage"] = '售票網站'
|
|
|
|
zh_tw["browser"] = '瀏覽器'
|
|
|
|
zh_tw["language"] = '語言'
|
|
|
|
zh_tw["ticket_number"] = '門票張數'
|
2022-12-15 11:26:51 +00:00
|
|
|
|
|
|
|
zh_tw["auto_check_agree"] = '自動勾選同意'
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
zh_tw["enable"] = '啟用'
|
|
|
|
zh_tw["auto_press_next_step_button"] = '自動點選下一步按鈕'
|
|
|
|
zh_tw["auto_fill_ticket_number"] = '自動輸入張數'
|
2022-11-13 18:34:22 +00:00
|
|
|
zh_tw["and"] = '而且(同列)'
|
2023-06-15 09:58:35 +00:00
|
|
|
|
2023-06-19 09:31:57 +00:00
|
|
|
zh_tw["local_dictionary"] = '使用者自定字典'
|
2023-06-15 09:58:35 +00:00
|
|
|
zh_tw["online_dictionary_url"] = '線上字典檔網址'
|
2022-11-11 16:46:36 +00:00
|
|
|
zh_tw["auto_guess_options"] = '自動猜測驗證問題'
|
2023-06-15 09:58:35 +00:00
|
|
|
zh_tw["user_guess_string"] = '驗證問題中的答案清單'
|
2023-06-19 09:31:57 +00:00
|
|
|
zh_tw["preview"] = '預覽'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
zh_tw["date_auto_select"] = '日期自動點選'
|
|
|
|
zh_tw["date_select_order"] = '日期排序方式'
|
|
|
|
zh_tw["date_keyword"] = '日期關鍵字'
|
2023-01-12 08:51:05 +00:00
|
|
|
zh_tw["pass_date_is_sold_out"] = '避開「搶購一空」的日期'
|
|
|
|
zh_tw["auto_reload_coming_soon_page"] = '自動刷新倒數中的日期頁面'
|
2023-06-18 16:19:49 +00:00
|
|
|
zh_tw["auto_reload_page_interval"] = '自動刷新頁面間隔(秒)(香港)'
|
|
|
|
zh_tw["auto_reload_random_delay"] = '自動刷新時隨機延遲(台灣)'
|
2023-01-12 08:51:05 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
zh_tw["area_select_order"] = '區域排序方式'
|
|
|
|
zh_tw["area_keyword"] = '區域關鍵字'
|
2022-11-11 16:46:36 +00:00
|
|
|
zh_tw["area_auto_select"] = '區域自動點選'
|
2023-03-21 17:33:12 +00:00
|
|
|
zh_tw["area_keyword_exclude"] = '排除區域關鍵字'
|
2023-05-24 07:17:11 +00:00
|
|
|
zh_tw["area_keyword_usage"] = '每組關鍵字需要雙引號, 用逗號分隔, \n在關鍵字中使用空格作為 AND 邏輯。.\n加入 ,\"\" 代表符合所有關鍵字'
|
|
|
|
|
2023-01-12 08:51:05 +00:00
|
|
|
zh_tw["pass_1_seat_remaining"] = '避開「剩餘 1」的區域'
|
|
|
|
zh_tw["ocr_captcha"] = '猜測驗證碼'
|
2023-01-13 00:43:16 +00:00
|
|
|
zh_tw["ocr_captcha_force_submit"] = '掛機模式'
|
2023-01-13 19:01:47 +00:00
|
|
|
zh_tw["ocr_captcha_image_source"] = 'OCR圖片取得方式'
|
2023-02-12 03:02:16 +00:00
|
|
|
zh_tw["webdriver_type"] = 'WebDriver類別'
|
2023-02-22 16:05:44 +00:00
|
|
|
zh_tw["headless"] = '無圖形界面模式'
|
2023-03-07 14:30:30 +00:00
|
|
|
zh_tw["verbose"] = '輸出詳細除錯訊息'
|
2023-03-12 16:34:59 +00:00
|
|
|
zh_tw["running_status"] = '執行狀態'
|
|
|
|
zh_tw["running_url"] = '執行網址'
|
|
|
|
zh_tw["status_idle"] = '閒置中'
|
|
|
|
zh_tw["status_paused"] = '已暫停'
|
|
|
|
zh_tw["status_enabled"] = '已啟用'
|
|
|
|
zh_tw["status_running"] = '執行中'
|
|
|
|
|
|
|
|
zh_tw["idle"] = '暫停搶票'
|
|
|
|
zh_tw["resume"] = '接續搶票'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
zh_tw["preference"] = '偏好設定'
|
|
|
|
zh_tw["advanced"] = '進階設定'
|
2023-06-19 09:31:57 +00:00
|
|
|
zh_tw["verification_word"] = "驗證問題"
|
2023-02-11 05:36:27 +00:00
|
|
|
zh_tw["autofill"] = '自動填表單'
|
2023-03-12 16:34:59 +00:00
|
|
|
zh_tw["runtime"] = '執行階段'
|
2022-11-16 15:43:53 +00:00
|
|
|
zh_tw["about"] = '關於'
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
zh_tw["run"] = '搶票'
|
|
|
|
zh_tw["save"] = '存檔'
|
|
|
|
zh_tw["exit"] = '關閉'
|
2022-11-17 18:17:19 +00:00
|
|
|
zh_tw["copy"] = '複製'
|
2022-12-27 15:38:13 +00:00
|
|
|
zh_tw["restore_defaults"] = '恢復預設值'
|
2023-02-26 08:39:37 +00:00
|
|
|
zh_tw["config_launcher"] = '設定檔管理'
|
2022-12-27 15:38:13 +00:00
|
|
|
zh_tw["done"] = '完成'
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
zh_tw["tixcraft_sid"] = 'Tixcraft cookie SID'
|
2023-02-26 08:39:37 +00:00
|
|
|
zh_tw["ibon_ibonqware"] = 'ibon cookie ibonqware'
|
2022-11-17 18:17:19 +00:00
|
|
|
zh_tw["facebook_account"] = 'Facebook 帳號'
|
2022-12-27 15:38:13 +00:00
|
|
|
zh_tw["kktix_account"] = 'KKTIX 帳號'
|
2023-01-18 08:40:41 +00:00
|
|
|
zh_tw["cityline_account"] = 'cityline 帳號'
|
|
|
|
zh_tw["urbtix_account"] = 'URBTIX 帳號'
|
2023-02-12 09:49:55 +00:00
|
|
|
zh_tw["hkticketing_account"] = 'HKTICKETING 帳號'
|
2023-02-11 05:36:27 +00:00
|
|
|
zh_tw["kham_account"] = '寬宏 帳號'
|
|
|
|
|
|
|
|
zh_tw["facebook_password"] = 'Facebook 密碼'
|
|
|
|
zh_tw["kktix_password"] = 'KKTIX 密碼'
|
|
|
|
zh_tw["cityline_password"] = 'cityline 密碼'
|
|
|
|
zh_tw["urbtix_password"] = 'URBTIX 密碼'
|
2023-02-12 09:49:55 +00:00
|
|
|
zh_tw["hkticketing_password"] = 'HKTICKETING 密碼'
|
2023-02-11 05:36:27 +00:00
|
|
|
zh_tw["kham_password"] = '寬宏 密碼'
|
|
|
|
zh_tw["save_password_alert"] = '將密碼保存到設定檔中可能會讓您的密碼被盜。'
|
2023-03-12 16:34:59 +00:00
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
zh_tw["play_captcha_sound"] = '輸入驗證碼時播放音效'
|
|
|
|
zh_tw["captcha_sound_filename"] = '驗證碼用音效檔'
|
2023-05-03 05:17:04 +00:00
|
|
|
zh_tw["adblock_plus_enable"] = '瀏覽器擴充功能'
|
2022-11-17 18:17:19 +00:00
|
|
|
zh_tw["adblock_plus_settings"] = "Adblock 進階過濾規則"
|
2023-05-17 00:06:08 +00:00
|
|
|
zh_tw["disable_adjacent_seat"] = "允許不連續座位"
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
zh_tw["maxbot_slogan"] = 'MaxBot是一個免費、開放原始碼的搶票機器人。\n祝您搶票成功。'
|
2022-11-16 15:43:53 +00:00
|
|
|
zh_tw["donate"] = '打賞'
|
|
|
|
zh_tw["release"] = '所有可用版本'
|
|
|
|
zh_tw["help"] = '使用教學'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
zh_cn={}
|
|
|
|
zh_cn["homepage"] = '售票网站'
|
|
|
|
zh_cn["browser"] = '浏览器'
|
|
|
|
zh_cn["language"] = '语言'
|
|
|
|
zh_cn["ticket_number"] = '门票张数'
|
2022-12-15 11:26:51 +00:00
|
|
|
|
|
|
|
zh_cn["auto_check_agree"] = '自动勾选同意'
|
2022-11-11 16:46:36 +00:00
|
|
|
zh_cn["enable"] = '启用'
|
2023-01-12 08:51:05 +00:00
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
zh_cn["auto_press_next_step_button"] = '自动点选下一步按钮'
|
|
|
|
zh_cn["auto_fill_ticket_number"] = '自动输入张数'
|
2022-11-13 18:34:22 +00:00
|
|
|
zh_cn["and"] = '而且(同列)'
|
2023-06-15 09:58:35 +00:00
|
|
|
|
2023-06-19 09:31:57 +00:00
|
|
|
zh_cn["local_dictionary"] = '本地字典'
|
2023-06-15 09:58:35 +00:00
|
|
|
zh_cn["online_dictionary_url"] = '在线词典网址'
|
2022-11-11 16:46:36 +00:00
|
|
|
zh_cn["auto_guess_options"] = '自动猜测验证问题'
|
2023-06-15 09:58:35 +00:00
|
|
|
zh_cn["user_guess_string"] = '验证问题的答案列表'
|
2023-06-19 09:31:57 +00:00
|
|
|
zh_cn["preview"] = '预览'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
zh_cn["date_auto_select"] = '日期自动点选'
|
|
|
|
zh_cn["date_select_order"] = '日期排序方式'
|
|
|
|
zh_cn["date_keyword"] = '日期关键字'
|
2023-01-12 08:51:05 +00:00
|
|
|
zh_cn["pass_date_is_sold_out"] = '避开“抢购一空”的日期'
|
|
|
|
zh_cn["auto_reload_coming_soon_page"] = '自动刷新倒数中的日期页面'
|
2023-06-19 12:55:33 +00:00
|
|
|
zh_cn["auto_reload_page_interval"] = '重新加载间隔(秒)(香港)'
|
|
|
|
zh_cn["auto_reload_random_delay"] = '重新加载随机延迟(台灣)'
|
2023-01-12 08:51:05 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
zh_cn["area_select_order"] = '区域排序方式'
|
|
|
|
zh_cn["area_keyword"] = '区域关键字'
|
2022-11-11 16:46:36 +00:00
|
|
|
zh_cn["area_auto_select"] = '区域自动点选'
|
2023-03-21 17:33:12 +00:00
|
|
|
zh_cn["area_keyword_exclude"] = '排除区域关键字'
|
2023-05-24 07:17:11 +00:00
|
|
|
zh_cn["area_keyword_usage"] = '每組關鍵字需要雙引號, 用逗號分隔, \n在關鍵字中使用空格作為 AND 邏輯。\n附加 ,\"\" 以匹配所有結果。'
|
|
|
|
|
2023-01-12 08:51:05 +00:00
|
|
|
zh_cn["pass_1_seat_remaining"] = '避开“剩余 1”的区域'
|
|
|
|
zh_cn["ocr_captcha"] = '猜测验证码'
|
2023-01-13 00:43:16 +00:00
|
|
|
zh_cn["ocr_captcha_force_submit"] = '挂机模式'
|
2023-01-13 19:01:47 +00:00
|
|
|
zh_cn["ocr_captcha_image_source"] = 'OCR图像源'
|
2023-02-12 03:02:16 +00:00
|
|
|
zh_cn["webdriver_type"] = 'WebDriver类别'
|
2023-02-22 16:05:44 +00:00
|
|
|
zh_cn["headless"] = '无图形界面模式'
|
2023-03-07 14:30:30 +00:00
|
|
|
zh_cn["verbose"] = '输出详细除错讯息'
|
2023-03-12 16:34:59 +00:00
|
|
|
zh_cn["running_status"] = '執行狀態'
|
|
|
|
zh_cn["running_url"] = '執行網址'
|
|
|
|
zh_cn["status_idle"] = '閒置中'
|
|
|
|
zh_cn["status_paused"] = '已暫停'
|
|
|
|
zh_cn["status_enabled"] = '已启用'
|
|
|
|
zh_cn["status_running"] = '執行中'
|
|
|
|
|
|
|
|
zh_cn["idle"] = '暂停抢票'
|
|
|
|
zh_cn["resume"] = '接续抢票'
|
2022-11-16 15:43:53 +00:00
|
|
|
|
|
|
|
zh_cn["preference"] = '偏好设定'
|
|
|
|
zh_cn["advanced"] = '進階設定'
|
2023-06-19 09:31:57 +00:00
|
|
|
zh_cn["verification_word"] = "验证字"
|
2023-02-11 05:36:27 +00:00
|
|
|
zh_cn["autofill"] = '自动填表单'
|
2023-03-12 16:34:59 +00:00
|
|
|
zh_cn["runtime"] = '运行'
|
2022-11-16 15:43:53 +00:00
|
|
|
zh_cn["about"] = '关于'
|
2022-11-17 18:17:19 +00:00
|
|
|
zh_cn["copy"] = '复制'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
zh_cn["run"] = '抢票'
|
|
|
|
zh_cn["save"] = '存档'
|
2022-11-16 15:43:53 +00:00
|
|
|
zh_cn["exit"] = '关闭'
|
2022-12-27 15:38:13 +00:00
|
|
|
zh_cn["copy"] = '复制'
|
|
|
|
zh_cn["restore_defaults"] = '恢复默认值'
|
2023-02-26 08:39:37 +00:00
|
|
|
zh_cn["config_launcher"] = '设定档管理'
|
2022-12-27 15:38:13 +00:00
|
|
|
zh_cn["done"] = '完成'
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
zh_cn["tixcraft_sid"] = 'Tixcraft cookie SID'
|
2023-02-26 08:39:37 +00:00
|
|
|
zh_cn["ibon_ibonqware"] = 'ibon cookie ibonqware'
|
2022-11-17 18:17:19 +00:00
|
|
|
zh_cn["facebook_account"] = 'Facebook 帐号'
|
2022-12-27 15:38:13 +00:00
|
|
|
zh_cn["kktix_account"] = 'KKTIX 帐号'
|
2023-02-11 05:36:27 +00:00
|
|
|
zh_cn["cityline_account"] = 'cityline 帐号'
|
|
|
|
zh_cn["urbtix_account"] = 'URBTIX 帐号'
|
2023-02-12 09:49:55 +00:00
|
|
|
zh_cn["hkticketing_account"] = 'HKTICKETING 帐号'
|
2023-02-11 05:36:27 +00:00
|
|
|
zh_cn["kham_account"] = '宽宏 帐号'
|
|
|
|
|
|
|
|
zh_cn["facebook_password"] = 'Facebook 密码'
|
|
|
|
zh_cn["kktix_password"] = 'KKTIX 密码'
|
|
|
|
zh_cn["cityline_password"] = 'cityline 密码'
|
|
|
|
zh_cn["urbtix_password"] = 'URBTIX 密码'
|
2023-02-12 09:49:55 +00:00
|
|
|
zh_cn["hkticketing_password"] = 'HKTICKETING 密码'
|
2023-02-11 05:36:27 +00:00
|
|
|
zh_cn["kham_password"] = '宽宏 密码'
|
|
|
|
zh_cn["save_password_alert"] = '將密碼保存到文件中可能會暴露您的密碼。'
|
2023-03-12 16:34:59 +00:00
|
|
|
|
2022-11-17 18:17:19 +00:00
|
|
|
zh_cn["play_captcha_sound"] = '输入验证码时播放音效'
|
|
|
|
zh_cn["captcha_sound_filename"] = '验证码用音效档'
|
2023-05-03 05:17:04 +00:00
|
|
|
zh_cn["adblock_plus_enable"] = '浏览器扩充功能'
|
2022-11-17 18:17:19 +00:00
|
|
|
zh_cn["adblock_plus_settings"] = "Adblock 进阶过滤规则"
|
2023-05-17 00:06:08 +00:00
|
|
|
zh_cn["disable_adjacent_seat"] = "允许不连续座位"
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
zh_cn["maxbot_slogan"] = 'MaxBot 是一个免费的开源机器人程序。\n祝您抢票成功。'
|
2022-11-11 16:46:36 +00:00
|
|
|
zh_cn["donate"] = '打赏'
|
2022-11-13 18:34:22 +00:00
|
|
|
zh_cn["help"] = '使用教学'
|
|
|
|
zh_cn["release"] = '所有可用版本'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
ja_jp={}
|
|
|
|
ja_jp["homepage"] = 'ホームページ'
|
|
|
|
ja_jp["browser"] = 'ブラウザ'
|
|
|
|
ja_jp["language"] = '言語'
|
|
|
|
ja_jp["ticket_number"] = '枚数'
|
2022-12-15 11:26:51 +00:00
|
|
|
|
|
|
|
ja_jp["auto_check_agree"] = '自動的に同意をチェック'
|
2022-11-11 16:46:36 +00:00
|
|
|
ja_jp["enable"] = '有効'
|
2023-01-12 08:51:05 +00:00
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
ja_jp["auto_press_next_step_button"] = '次を自動で押す'
|
|
|
|
ja_jp["auto_fill_ticket_number"] = '枚数自動入力'
|
2022-11-13 18:34:22 +00:00
|
|
|
ja_jp["and"] = 'そして(同列)'
|
2023-06-15 09:58:35 +00:00
|
|
|
|
2023-06-19 09:31:57 +00:00
|
|
|
ja_jp["local_dictionary"] = 'ローカル辞書'
|
2023-06-15 09:58:35 +00:00
|
|
|
ja_jp["online_dictionary_url"] = 'オンライン辞書のURL'
|
2022-11-11 16:46:36 +00:00
|
|
|
ja_jp["auto_guess_options"] = '自動推測検証問題'
|
2023-06-15 09:58:35 +00:00
|
|
|
ja_jp["user_guess_string"] = '検証用の質問の回答リスト'
|
2023-06-19 09:31:57 +00:00
|
|
|
ja_jp["preview"] = 'プレビュー'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
ja_jp["date_auto_select"] = '日付自動選択'
|
|
|
|
ja_jp["date_select_order"] = '日付のソート方法'
|
|
|
|
ja_jp["date_keyword"] = '日付キーワード'
|
2023-01-12 08:51:05 +00:00
|
|
|
ja_jp["pass_date_is_sold_out"] = '「売り切れ」公演を避ける'
|
|
|
|
ja_jp["auto_reload_coming_soon_page"] = '公開予定のページをリロード'
|
2023-06-19 12:55:33 +00:00
|
|
|
ja_jp["auto_reload_page_interval"] = 'リロード間隔(秒)(HK)'
|
|
|
|
ja_jp["auto_reload_random_delay"] = 'ランダムなリロード遅延(TW)'
|
2023-01-12 08:51:05 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
ja_jp["area_select_order"] = 'エリアソート方法'
|
|
|
|
ja_jp["area_keyword"] = 'エリアキーワード'
|
2022-11-11 16:46:36 +00:00
|
|
|
ja_jp["area_auto_select"] = 'エリア自動選択'
|
2023-03-21 17:33:12 +00:00
|
|
|
ja_jp["area_keyword_exclude"] = '除外エリア キーワード'
|
2023-05-24 07:17:11 +00:00
|
|
|
ja_jp["area_keyword_usage"] = '各キーワードはカンマで区切られた二重引用符が必要です。\nキーワード内のスペースを AND ロジックとして使用します。\nすべてに一致するように ,\"\" を追加します。'
|
|
|
|
|
2023-01-12 08:51:05 +00:00
|
|
|
ja_jp["pass_1_seat_remaining"] = '「1 席残り」エリアは避ける'
|
|
|
|
ja_jp["ocr_captcha"] = 'キャプチャを推測する'
|
2023-01-13 19:01:47 +00:00
|
|
|
ja_jp["ocr_captcha_force_submit"] = 'キーボードから離れて'
|
|
|
|
ja_jp["ocr_captcha_image_source"] = 'OCR 画像ソース'
|
2023-02-12 03:02:16 +00:00
|
|
|
ja_jp["webdriver_type"] = 'WebDriverタイプ'
|
2023-02-22 16:05:44 +00:00
|
|
|
ja_jp["headless"] = 'ヘッドレスモード'
|
2023-03-07 14:30:30 +00:00
|
|
|
ja_jp["verbose"] = '詳細モード'
|
2023-03-12 16:34:59 +00:00
|
|
|
ja_jp["running_status"] = 'スターテス'
|
|
|
|
ja_jp["running_url"] = '現在の URL'
|
|
|
|
ja_jp["status_idle"] = '閒置中'
|
|
|
|
ja_jp["status_paused"] = '一時停止'
|
|
|
|
ja_jp["status_enabled"] = '有効'
|
|
|
|
ja_jp["status_running"] = 'ランニング'
|
|
|
|
|
|
|
|
ja_jp["idle"] = 'アイドル'
|
|
|
|
ja_jp["resume"] = '再開する'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
ja_jp["preference"] = '設定'
|
|
|
|
ja_jp["advanced"] = '高度な設定'
|
2023-06-19 09:31:57 +00:00
|
|
|
ja_jp["verification_word"] = "確認の言葉"
|
2023-02-11 05:36:27 +00:00
|
|
|
ja_jp["autofill"] = 'オートフィル'
|
2023-03-12 16:34:59 +00:00
|
|
|
ja_jp["runtime"] = 'ランタイム'
|
2022-11-16 15:43:53 +00:00
|
|
|
ja_jp["about"] = '情報'
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
ja_jp["run"] = 'チケットを取る'
|
|
|
|
ja_jp["save"] = '保存'
|
2022-11-16 15:43:53 +00:00
|
|
|
ja_jp["exit"] = '閉じる'
|
2022-11-17 18:17:19 +00:00
|
|
|
ja_jp["copy"] = 'コピー'
|
2022-12-27 15:38:13 +00:00
|
|
|
ja_jp["restore_defaults"] = 'デフォルトに戻す'
|
2023-02-26 08:39:37 +00:00
|
|
|
ja_jp["config_launcher"] = 'ランチャー'
|
2022-12-27 15:38:13 +00:00
|
|
|
ja_jp["done"] = '終わり'
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
ja_jp["tixcraft_sid"] = 'Tixcraft cookie SID'
|
2023-02-26 08:39:37 +00:00
|
|
|
ja_jp["ibon_ibonqware"] = 'ibon cookie ibonqware'
|
2022-11-17 18:17:19 +00:00
|
|
|
ja_jp["facebook_account"] = 'Facebookのアカウント'
|
2022-12-27 15:38:13 +00:00
|
|
|
ja_jp["kktix_account"] = 'KKTIXのアカウント'
|
2023-01-18 08:40:41 +00:00
|
|
|
ja_jp["cityline_account"] = 'citylineのアカウント'
|
|
|
|
ja_jp["urbtix_account"] = 'URBTIXのアカウント'
|
2023-02-12 09:49:55 +00:00
|
|
|
ja_jp["hkticketing_account"] = 'HKTICKETINGのアカウント'
|
2023-02-11 05:36:27 +00:00
|
|
|
ja_jp["kham_account"] = 'KHAMのアカウント'
|
|
|
|
|
|
|
|
ja_jp["facebook_password"] = 'Facebookのパスワード'
|
|
|
|
ja_jp["kktix_password"] = 'KKTIXのパスワード'
|
|
|
|
ja_jp["cityline_password"] = 'citylineのパスワード'
|
|
|
|
ja_jp["urbtix_password"] = 'URBTIXのパスワード'
|
2023-02-12 09:49:55 +00:00
|
|
|
ja_jp["hkticketing_password"] = 'HKTICKETINGのパスワード'
|
2023-02-11 05:36:27 +00:00
|
|
|
ja_jp["kham_password"] = 'KHAMのパスワード'
|
|
|
|
ja_jp["save_password_alert"] = 'パスワードをファイルに保存すると、パスワードが公開される可能性があります。'
|
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
ja_jp["play_captcha_sound"] = 'キャプチャ時に音を鳴らす'
|
|
|
|
ja_jp["captcha_sound_filename"] = 'サウンドファイル名'
|
2023-05-03 05:17:04 +00:00
|
|
|
ja_jp["adblock_plus_enable"] = '拡張機能'
|
2022-11-17 18:17:19 +00:00
|
|
|
ja_jp["adblock_plus_settings"] = "Adblock 高度なフィルター"
|
2023-05-17 00:06:08 +00:00
|
|
|
ja_jp["disable_adjacent_seat"] = "連続しない座席も可"
|
2023-02-09 17:50:34 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
ja_jp["maxbot_slogan"] = 'MaxBot は無料のオープン ソース ボット プログラムです。チケットの成功をお祈りします。'
|
2022-11-11 16:46:36 +00:00
|
|
|
ja_jp["donate"] = '寄付'
|
2022-11-13 18:34:22 +00:00
|
|
|
ja_jp["help"] = '利用方法'
|
|
|
|
ja_jp["release"] = 'リリース'
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
translate['en_us']=en_us
|
|
|
|
translate['zh_tw']=zh_tw
|
|
|
|
translate['zh_cn']=zh_cn
|
|
|
|
translate['ja_jp']=ja_jp
|
2022-11-13 18:34:22 +00:00
|
|
|
return translate
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2023-06-19 12:55:33 +00:00
|
|
|
def get_ip_address():
|
|
|
|
ip = [l for l in ([ip for ip in socket.gethostbyname_ex(socket.gethostname())[2]
|
|
|
|
if not ip.startswith("127.")][:1], [[(s.connect(('8.8.8.8', 53)),
|
|
|
|
s.getsockname()[0], s.close()) for s in [socket.socket(socket.AF_INET,
|
|
|
|
socket.SOCK_DGRAM)]][0][1]]) if l][0][0]
|
|
|
|
return ip
|
|
|
|
|
2023-06-15 16:31:46 +00:00
|
|
|
def format_config_keyword_for_json(user_input):
|
|
|
|
if len(user_input) > 0:
|
|
|
|
if not ('\"' in user_input):
|
|
|
|
user_input = '"' + user_input + '"'
|
2023-06-16 16:04:55 +00:00
|
|
|
|
2023-06-15 16:38:34 +00:00
|
|
|
if user_input[:1]=="{" and user_input[-1:]=="}":
|
2023-06-16 16:04:55 +00:00
|
|
|
tmp_json = {}
|
|
|
|
try:
|
|
|
|
tmp_json = json.loads(user_input)
|
|
|
|
key=list(tmp_json.keys())[0]
|
|
|
|
first_item=tmp_json[key]
|
|
|
|
user_input=json.dumps(first_item)
|
|
|
|
except Exception as exc:
|
|
|
|
pass
|
|
|
|
|
2023-06-15 16:38:34 +00:00
|
|
|
if user_input[:1]=="[" and user_input[-1:]=="]":
|
2023-06-15 16:31:46 +00:00
|
|
|
user_input=user_input[1:]
|
2023-06-15 16:38:34 +00:00
|
|
|
user_input=user_input[:-1]
|
2023-06-15 16:31:46 +00:00
|
|
|
return user_input
|
|
|
|
|
2023-02-11 05:36:27 +00:00
|
|
|
def sx(s1):
|
|
|
|
key=18
|
|
|
|
return ''.join(chr(ord(a) ^ key) for a in s1)
|
|
|
|
|
|
|
|
def decryptMe(b):
|
|
|
|
s=""
|
|
|
|
if(len(b)>0):
|
|
|
|
s=sx(base64.b64decode(b).decode("UTF-8"))
|
|
|
|
return s
|
|
|
|
|
|
|
|
def encryptMe(s):
|
|
|
|
data=""
|
|
|
|
if(len(s)>0):
|
|
|
|
data=base64.b64encode(sx(s).encode('UTF-8')).decode("UTF-8")
|
|
|
|
return data
|
|
|
|
|
2023-06-03 04:23:53 +00:00
|
|
|
def is_arm():
|
|
|
|
ret = False
|
|
|
|
if "-arm" in platform.platform():
|
|
|
|
ret = True
|
|
|
|
return ret
|
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
def get_app_root():
|
2019-10-01 17:52:13 +00:00
|
|
|
# 讀取檔案裡的參數值
|
|
|
|
basis = ""
|
|
|
|
if hasattr(sys, 'frozen'):
|
|
|
|
basis = sys.executable
|
|
|
|
else:
|
|
|
|
basis = sys.argv[0]
|
|
|
|
app_root = os.path.dirname(basis)
|
2022-11-16 15:43:53 +00:00
|
|
|
return app_root
|
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
def get_default_config():
|
|
|
|
config_dict={}
|
|
|
|
|
|
|
|
config_dict["homepage"] = CONST_HOMEPAGE_DEFAULT
|
|
|
|
config_dict["browser"] = "chrome"
|
|
|
|
config_dict["language"] = "English"
|
|
|
|
config_dict["ticket_number"] = 2
|
2022-11-24 21:40:40 +00:00
|
|
|
config_dict["pass_1_seat_remaining"] = True
|
2022-12-15 11:26:51 +00:00
|
|
|
config_dict["auto_check_agree"] = True
|
2023-01-12 11:41:49 +00:00
|
|
|
config_dict["ocr_captcha"] = {}
|
|
|
|
config_dict["ocr_captcha"]["enable"] = True
|
2023-05-20 14:57:24 +00:00
|
|
|
config_dict["ocr_captcha"]["force_submit"] = True
|
2023-02-12 03:02:16 +00:00
|
|
|
config_dict["ocr_captcha"]["image_source"] = CONST_OCR_CAPTCH_IMAGE_SOURCE_CANVAS
|
|
|
|
config_dict["webdriver_type"] = CONST_WEBDRIVER_TYPE_UC
|
2022-11-21 19:01:04 +00:00
|
|
|
|
2023-06-03 04:23:53 +00:00
|
|
|
if is_arm():
|
|
|
|
config_dict["ocr_captcha"]["enable"] = False
|
|
|
|
config_dict["ocr_captcha"]["force_submit"] = False
|
2023-05-24 07:17:11 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
config_dict['kktix']={}
|
|
|
|
config_dict["kktix"]["auto_press_next_step_button"] = True
|
|
|
|
config_dict["kktix"]["auto_fill_ticket_number"] = True
|
|
|
|
|
|
|
|
config_dict['tixcraft']={}
|
|
|
|
config_dict["tixcraft"]["date_auto_select"] = {}
|
|
|
|
config_dict["tixcraft"]["date_auto_select"]["enable"] = True
|
|
|
|
config_dict["tixcraft"]["date_auto_select"]["date_keyword"] = ""
|
|
|
|
config_dict["tixcraft"]["date_auto_select"]["mode"] = CONST_SELECT_ORDER_DEFAULT
|
2023-05-24 07:17:11 +00:00
|
|
|
|
|
|
|
config_dict["area_auto_select"] = {}
|
|
|
|
config_dict["area_auto_select"]["enable"] = True
|
|
|
|
config_dict["area_auto_select"]["mode"] = CONST_SELECT_ORDER_DEFAULT
|
|
|
|
config_dict["area_auto_select"]["area_keyword"] = ""
|
2023-06-22 13:15:46 +00:00
|
|
|
config_dict["area_auto_select"]["area_keyword_exclude"] = "\"輪椅\",\"身障\",\"身心 障礙\",\"Restricted View\""
|
2022-11-21 19:01:04 +00:00
|
|
|
|
2023-01-12 08:51:05 +00:00
|
|
|
config_dict["tixcraft"]["pass_date_is_sold_out"] = True
|
2022-11-21 19:01:04 +00:00
|
|
|
config_dict["tixcraft"]["auto_reload_coming_soon_page"] = True
|
|
|
|
|
|
|
|
config_dict['advanced']={}
|
|
|
|
|
|
|
|
config_dict['advanced']['play_captcha_sound']={}
|
|
|
|
config_dict["advanced"]["play_captcha_sound"]["enable"] = True
|
|
|
|
config_dict["advanced"]["play_captcha_sound"]["filename"] = CONST_CAPTCHA_SOUND_FILENAME_DEFAULT
|
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
config_dict["advanced"]["tixcraft_sid"] = ""
|
2023-02-26 08:39:37 +00:00
|
|
|
config_dict["advanced"]["ibonqware"] = ""
|
2022-11-21 19:01:04 +00:00
|
|
|
config_dict["advanced"]["facebook_account"] = ""
|
2022-12-27 15:38:13 +00:00
|
|
|
config_dict["advanced"]["kktix_account"] = ""
|
2023-01-18 08:40:41 +00:00
|
|
|
config_dict["advanced"]["cityline_account"] = ""
|
|
|
|
config_dict["advanced"]["urbtix_account"] = ""
|
2023-02-12 09:49:55 +00:00
|
|
|
config_dict["advanced"]["hkticketing_account"] = ""
|
2023-02-11 05:36:27 +00:00
|
|
|
config_dict["advanced"]["kham_account"] = ""
|
|
|
|
|
|
|
|
config_dict["advanced"]["facebook_password"] = ""
|
|
|
|
config_dict["advanced"]["kktix_password"] = ""
|
|
|
|
config_dict["advanced"]["cityline_password"] = ""
|
|
|
|
config_dict["advanced"]["urbtix_password"] = ""
|
2023-02-12 09:49:55 +00:00
|
|
|
config_dict["advanced"]["hkticketing_password"] = ""
|
2023-02-11 05:36:27 +00:00
|
|
|
config_dict["advanced"]["kham_password"] = ""
|
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
config_dict["advanced"]["adblock_plus_enable"] = False
|
2023-05-17 00:06:08 +00:00
|
|
|
config_dict["advanced"]["disable_adjacent_seat"] = False
|
2023-02-22 16:05:44 +00:00
|
|
|
config_dict["advanced"]["headless"] = False
|
2023-03-07 14:30:30 +00:00
|
|
|
config_dict["advanced"]["verbose"] = False
|
2023-06-18 16:19:49 +00:00
|
|
|
config_dict["advanced"]["auto_guess_options"] = True
|
2023-06-15 09:58:35 +00:00
|
|
|
config_dict["advanced"]["user_guess_string"] = ""
|
|
|
|
config_dict["advanced"]["online_dictionary_url"] = ""
|
2022-11-21 19:01:04 +00:00
|
|
|
|
2023-06-27 02:39:32 +00:00
|
|
|
config_dict["advanced"]["auto_reload_page_interval"] = 1.0
|
2023-06-13 10:16:28 +00:00
|
|
|
config_dict["advanced"]["auto_reload_random_delay"] = False
|
2023-05-26 04:43:18 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
return config_dict
|
|
|
|
|
2023-03-12 16:34:59 +00:00
|
|
|
def read_last_url_from_file():
|
|
|
|
ret = ""
|
2023-06-16 04:04:04 +00:00
|
|
|
if os.path.exists(CONST_MAXBOT_LAST_URL_FILE):
|
|
|
|
with open(CONST_MAXBOT_LAST_URL_FILE, "r") as text_file:
|
|
|
|
ret = text_file.readline()
|
2023-03-12 16:34:59 +00:00
|
|
|
return ret
|
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
def load_json():
|
|
|
|
app_root = get_app_root()
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
# overwrite config path.
|
2023-03-12 16:34:59 +00:00
|
|
|
config_filepath = os.path.join(app_root, CONST_MAXBOT_CONFIG_FILE)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
|
|
|
config_dict = None
|
|
|
|
if os.path.isfile(config_filepath):
|
|
|
|
with open(config_filepath) as json_data:
|
|
|
|
config_dict = json.load(json_data)
|
2022-11-21 19:01:04 +00:00
|
|
|
else:
|
|
|
|
config_dict = get_default_config()
|
2022-11-13 18:34:22 +00:00
|
|
|
return config_filepath, config_dict
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
def btn_restore_defaults_clicked(language_code):
|
|
|
|
app_root = get_app_root()
|
2023-03-12 16:34:59 +00:00
|
|
|
config_filepath = os.path.join(app_root, CONST_MAXBOT_CONFIG_FILE)
|
2022-12-27 15:38:13 +00:00
|
|
|
|
|
|
|
config_dict = get_default_config()
|
|
|
|
import json
|
|
|
|
with open(config_filepath, 'w') as outfile:
|
|
|
|
json.dump(config_dict, outfile)
|
|
|
|
messagebox.showinfo(translate[language_code]["restore_defaults"], translate[language_code]["done"])
|
|
|
|
|
|
|
|
global root
|
|
|
|
load_GUI(root, config_dict)
|
|
|
|
|
2023-03-12 16:34:59 +00:00
|
|
|
def btn_idle_clicked(language_code):
|
|
|
|
app_root = get_app_root()
|
|
|
|
idle_filepath = os.path.join(app_root, CONST_MAXBOT_INT28_FILE)
|
|
|
|
with open(CONST_MAXBOT_INT28_FILE, "w") as text_file:
|
|
|
|
text_file.write("")
|
2023-03-12 17:08:23 +00:00
|
|
|
update_maxbot_runtime_status()
|
2023-03-12 16:34:59 +00:00
|
|
|
|
|
|
|
def btn_resume_clicked(language_code):
|
|
|
|
app_root = get_app_root()
|
|
|
|
idle_filepath = os.path.join(app_root, CONST_MAXBOT_INT28_FILE)
|
|
|
|
for i in range(10):
|
2023-06-16 04:04:04 +00:00
|
|
|
force_remove_file(idle_filepath)
|
2023-03-12 17:08:23 +00:00
|
|
|
update_maxbot_runtime_status()
|
2023-03-12 16:34:59 +00:00
|
|
|
|
2023-02-26 08:39:37 +00:00
|
|
|
def btn_launcher_clicked(language_code):
|
|
|
|
print('run button pressed.')
|
|
|
|
Root_Dir = ""
|
|
|
|
save_ret = btn_save_act(language_code, slience_mode=True)
|
|
|
|
print("save config result:", save_ret)
|
|
|
|
if save_ret:
|
2023-06-15 15:45:50 +00:00
|
|
|
run_python_script("config_launcher")
|
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
def btn_save_clicked(language_code):
|
|
|
|
btn_save_act(language_code)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
def btn_save_act(language_code, slience_mode=False):
|
2022-11-21 19:01:04 +00:00
|
|
|
app_root = get_app_root()
|
2023-03-12 16:34:59 +00:00
|
|
|
config_filepath = os.path.join(app_root, CONST_MAXBOT_CONFIG_FILE)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
config_dict = get_default_config()
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
# read user input
|
|
|
|
global combo_homepage
|
|
|
|
global combo_browser
|
|
|
|
global combo_language
|
|
|
|
global combo_ticket_number
|
2022-11-24 21:40:40 +00:00
|
|
|
global chk_state_pass_1_seat_remaining
|
2022-12-15 11:26:51 +00:00
|
|
|
global chk_state_auto_check_agree
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
global chk_state_auto_press_next_step_button
|
|
|
|
global chk_state_auto_fill_ticket_number
|
2023-06-15 09:58:35 +00:00
|
|
|
global txt_user_guess_string
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
global chk_state_date_auto_select
|
|
|
|
global txt_date_keyword
|
|
|
|
global chk_state_area_auto_select
|
2023-05-24 07:17:11 +00:00
|
|
|
global txt_area_keyword
|
2023-03-21 17:33:12 +00:00
|
|
|
global txt_area_keyword_exclude
|
2023-06-16 04:04:04 +00:00
|
|
|
global txt_online_dictionary_url
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
global combo_date_auto_select_mode
|
|
|
|
global combo_area_auto_select_mode
|
|
|
|
|
|
|
|
global chk_state_pass_date_is_sold_out
|
|
|
|
global chk_state_auto_reload_coming_soon_page
|
2023-05-26 05:13:06 +00:00
|
|
|
global txt_auto_reload_page_interval
|
2023-06-13 10:16:28 +00:00
|
|
|
global chk_state_auto_reload_random_delay
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
global txt_tixcraft_sid
|
2023-02-26 08:39:37 +00:00
|
|
|
global txt_ibon_ibonqware
|
2022-11-21 19:01:04 +00:00
|
|
|
global txt_facebook_account
|
2022-12-27 15:38:13 +00:00
|
|
|
global txt_kktix_account
|
2023-01-18 08:40:41 +00:00
|
|
|
global txt_cityline_account
|
|
|
|
global txt_urbtix_account
|
2023-02-12 09:49:55 +00:00
|
|
|
global txt_hkticketing_account
|
2023-02-11 05:36:27 +00:00
|
|
|
global txt_kham_account
|
|
|
|
|
|
|
|
global txt_facebook_password
|
|
|
|
global txt_kktix_password
|
|
|
|
global txt_cityline_password
|
|
|
|
global txt_urbtix_password
|
2023-02-12 09:49:55 +00:00
|
|
|
global txt_hkticketing_password
|
2023-02-11 05:36:27 +00:00
|
|
|
global txt_kham_password
|
2023-01-18 08:40:41 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
global chk_state_play_captcha_sound
|
|
|
|
global txt_captcha_sound_filename
|
|
|
|
global chk_state_adblock_plus
|
2023-01-12 08:51:05 +00:00
|
|
|
global chk_state_ocr_captcha
|
2023-01-12 22:29:58 +00:00
|
|
|
global chk_state_ocr_captcha_force_submit
|
2023-05-17 00:06:08 +00:00
|
|
|
global chk_state_adjacent_seat
|
2023-02-22 16:05:44 +00:00
|
|
|
global chk_state_headless
|
2023-03-07 14:30:30 +00:00
|
|
|
global chk_state_verbose
|
2023-04-28 04:04:21 +00:00
|
|
|
global chk_state_auto_guess_options
|
2023-01-13 19:01:47 +00:00
|
|
|
global combo_ocr_captcha_image_source
|
2023-02-12 03:02:16 +00:00
|
|
|
global combo_webdriver_type
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
is_all_data_correct = True
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
if is_all_data_correct:
|
|
|
|
if combo_homepage.get().strip()=="":
|
|
|
|
is_all_data_correct = False
|
|
|
|
messagebox.showerror("Error", "Please enter homepage")
|
|
|
|
else:
|
2023-01-23 13:32:47 +00:00
|
|
|
homepage_domain = combo_homepage.get().strip()
|
|
|
|
if ' (' in homepage_domain:
|
|
|
|
homepage_domain = homepage_domain.split(' (')[0]
|
|
|
|
config_dict["homepage"] = homepage_domain
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
if is_all_data_correct:
|
|
|
|
if combo_browser.get().strip()=="":
|
|
|
|
is_all_data_correct = False
|
|
|
|
messagebox.showerror("Error", "Please select a browser: chrome or firefox")
|
|
|
|
else:
|
|
|
|
config_dict["browser"] = combo_browser.get().strip()
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
if is_all_data_correct:
|
|
|
|
if combo_language.get().strip()=="":
|
|
|
|
is_all_data_correct = False
|
|
|
|
messagebox.showerror("Error", "Please select a language")
|
|
|
|
else:
|
|
|
|
config_dict["language"] = combo_language.get().strip()
|
2022-12-27 15:38:13 +00:00
|
|
|
# display as new language.
|
|
|
|
language_code = get_language_code_by_name(config_dict["language"])
|
2022-11-21 19:01:04 +00:00
|
|
|
|
|
|
|
if is_all_data_correct:
|
|
|
|
if combo_ticket_number.get().strip()=="":
|
|
|
|
is_all_data_correct = False
|
|
|
|
messagebox.showerror("Error", "Please select a value")
|
|
|
|
else:
|
|
|
|
config_dict["ticket_number"] = int(combo_ticket_number.get().strip())
|
|
|
|
|
|
|
|
if is_all_data_correct:
|
2022-11-24 21:40:40 +00:00
|
|
|
config_dict["pass_1_seat_remaining"] = bool(chk_state_pass_1_seat_remaining.get())
|
2022-12-15 11:26:51 +00:00
|
|
|
config_dict["auto_check_agree"] = bool(chk_state_auto_check_agree.get())
|
2022-11-24 21:40:40 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
config_dict["kktix"]["auto_press_next_step_button"] = bool(chk_state_auto_press_next_step_button.get())
|
|
|
|
config_dict["kktix"]["auto_fill_ticket_number"] = bool(chk_state_auto_fill_ticket_number.get())
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
config_dict["tixcraft"]["date_auto_select"]["enable"] = bool(chk_state_date_auto_select.get())
|
|
|
|
config_dict["tixcraft"]["date_auto_select"]["mode"] = combo_date_auto_select_mode.get().strip()
|
2023-05-24 07:17:11 +00:00
|
|
|
config_dict["tixcraft"]["date_auto_select"]["date_keyword"] = txt_date_keyword.get().strip()
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
config_dict["tixcraft"]["pass_date_is_sold_out"] = bool(chk_state_pass_date_is_sold_out.get())
|
|
|
|
config_dict["tixcraft"]["auto_reload_coming_soon_page"] = bool(chk_state_auto_reload_coming_soon_page.get())
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2023-05-26 05:13:06 +00:00
|
|
|
area_keyword = txt_area_keyword.get("1.0",END).strip()
|
2023-06-15 16:31:46 +00:00
|
|
|
area_keyword = format_config_keyword_for_json(area_keyword)
|
|
|
|
|
2023-05-26 05:13:06 +00:00
|
|
|
area_keyword_exclude = txt_area_keyword_exclude.get("1.0",END).strip()
|
2023-06-15 16:31:46 +00:00
|
|
|
area_keyword_exclude = format_config_keyword_for_json(area_keyword_exclude)
|
|
|
|
|
2023-06-15 09:58:35 +00:00
|
|
|
user_guess_string = txt_user_guess_string.get("1.0",END).strip()
|
2023-06-15 16:31:46 +00:00
|
|
|
user_guess_string = format_config_keyword_for_json(user_guess_string)
|
2023-05-26 05:13:06 +00:00
|
|
|
|
2023-06-16 04:04:04 +00:00
|
|
|
online_dictionary_url = txt_online_dictionary_url.get("1.0",END).strip()
|
|
|
|
online_dictionary_url = format_config_keyword_for_json(online_dictionary_url)
|
|
|
|
|
|
|
|
# test keyword format.
|
|
|
|
if is_all_data_correct:
|
|
|
|
if len(area_keyword) > 0:
|
|
|
|
try:
|
|
|
|
test_array = json.loads("["+ area_keyword +"]")
|
|
|
|
except Exception as exc:
|
|
|
|
messagebox.showinfo(translate[language_code]["save"], "Error:" + translate[language_code]["area_keyword"])
|
|
|
|
is_all_data_correct = False
|
|
|
|
|
|
|
|
if is_all_data_correct:
|
|
|
|
if len(area_keyword_exclude) > 0:
|
|
|
|
try:
|
|
|
|
test_array = json.loads("["+ area_keyword_exclude +"]")
|
|
|
|
except Exception as exc:
|
|
|
|
messagebox.showinfo(translate[language_code]["save"], "Error:" + translate[language_code]["area_keyword_exclude"])
|
|
|
|
is_all_data_correct = False
|
|
|
|
|
|
|
|
if is_all_data_correct:
|
|
|
|
if len(user_guess_string) > 0:
|
|
|
|
try:
|
|
|
|
test_array = json.loads("["+ user_guess_string +"]")
|
|
|
|
except Exception as exc:
|
|
|
|
messagebox.showinfo(translate[language_code]["save"], "Error:" + translate[language_code]["user_guess_string"])
|
|
|
|
is_all_data_correct = False
|
|
|
|
|
|
|
|
if is_all_data_correct:
|
|
|
|
if len(online_dictionary_url) > 0:
|
|
|
|
try:
|
|
|
|
test_array = json.loads("["+ online_dictionary_url +"]")
|
|
|
|
except Exception as exc:
|
|
|
|
messagebox.showinfo(translate[language_code]["save"], "Error:" + translate[language_code]["online_dictionary_url"])
|
|
|
|
is_all_data_correct = False
|
|
|
|
|
|
|
|
if is_all_data_correct:
|
|
|
|
config_dict["area_auto_select"]["area_keyword"] = area_keyword
|
|
|
|
config_dict["area_auto_select"]["area_keyword_exclude"] = area_keyword_exclude
|
|
|
|
config_dict["advanced"]["user_guess_string"] = user_guess_string
|
|
|
|
config_dict["advanced"]["online_dictionary_url"] = online_dictionary_url
|
|
|
|
|
|
|
|
if is_all_data_correct:
|
2023-05-24 07:17:11 +00:00
|
|
|
config_dict["area_auto_select"]["enable"] = bool(chk_state_area_auto_select.get())
|
|
|
|
config_dict["area_auto_select"]["mode"] = combo_area_auto_select_mode.get().strip()
|
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
config_dict["advanced"]["play_captcha_sound"]["enable"] = bool(chk_state_play_captcha_sound.get())
|
|
|
|
config_dict["advanced"]["play_captcha_sound"]["filename"] = txt_captcha_sound_filename.get().strip()
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
config_dict["advanced"]["tixcraft_sid"] = txt_tixcraft_sid.get().strip()
|
2023-02-26 08:39:37 +00:00
|
|
|
config_dict["advanced"]["ibonqware"] = txt_ibon_ibonqware.get().strip()
|
2022-11-21 19:01:04 +00:00
|
|
|
config_dict["advanced"]["facebook_account"] = txt_facebook_account.get().strip()
|
2022-12-27 15:38:13 +00:00
|
|
|
config_dict["advanced"]["kktix_account"] = txt_kktix_account.get().strip()
|
2023-01-18 08:40:41 +00:00
|
|
|
config_dict["advanced"]["cityline_account"] = txt_cityline_account.get().strip()
|
|
|
|
config_dict["advanced"]["urbtix_account"] = txt_urbtix_account.get().strip()
|
2023-02-12 09:49:55 +00:00
|
|
|
config_dict["advanced"]["hkticketing_account"] = txt_hkticketing_account.get().strip()
|
2023-02-11 05:36:27 +00:00
|
|
|
config_dict["advanced"]["kham_account"] = txt_kham_account.get().strip()
|
|
|
|
|
|
|
|
config_dict["advanced"]["facebook_password"] = txt_facebook_password.get().strip()
|
|
|
|
config_dict["advanced"]["kktix_password"] = txt_kktix_password.get().strip()
|
|
|
|
config_dict["advanced"]["cityline_password"] = txt_cityline_password.get().strip()
|
|
|
|
config_dict["advanced"]["urbtix_password"] = txt_urbtix_password.get().strip()
|
2023-02-12 09:49:55 +00:00
|
|
|
config_dict["advanced"]["hkticketing_password"] = txt_hkticketing_password.get().strip()
|
2023-02-11 05:36:27 +00:00
|
|
|
config_dict["advanced"]["kham_password"] = txt_kham_password.get().strip()
|
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
config_dict["advanced"]["tixcraft_sid"] = encryptMe(config_dict["advanced"]["tixcraft_sid"])
|
2023-02-26 08:39:37 +00:00
|
|
|
config_dict["advanced"]["ibonqware"] = encryptMe(config_dict["advanced"]["ibonqware"])
|
2023-02-11 05:36:27 +00:00
|
|
|
config_dict["advanced"]["facebook_password"] = encryptMe(config_dict["advanced"]["facebook_password"])
|
|
|
|
config_dict["advanced"]["kktix_password"] = encryptMe(config_dict["advanced"]["kktix_password"])
|
|
|
|
config_dict["advanced"]["cityline_password"] = encryptMe(config_dict["advanced"]["cityline_password"])
|
|
|
|
config_dict["advanced"]["urbtix_password"] = encryptMe(config_dict["advanced"]["urbtix_password"])
|
2023-02-12 09:49:55 +00:00
|
|
|
config_dict["advanced"]["hkticketing_password"] = encryptMe(config_dict["advanced"]["hkticketing_password"])
|
2023-02-11 05:36:27 +00:00
|
|
|
config_dict["advanced"]["kham_password"] = encryptMe(config_dict["advanced"]["kham_password"])
|
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
config_dict["advanced"]["adblock_plus_enable"] = bool(chk_state_adblock_plus.get())
|
2023-05-17 00:06:08 +00:00
|
|
|
config_dict["advanced"]["disable_adjacent_seat"] = bool(chk_state_adjacent_seat.get())
|
2023-03-12 16:34:59 +00:00
|
|
|
|
2023-01-12 11:41:49 +00:00
|
|
|
config_dict["ocr_captcha"] = {}
|
|
|
|
config_dict["ocr_captcha"]["enable"] = bool(chk_state_ocr_captcha.get())
|
2023-01-12 22:29:58 +00:00
|
|
|
config_dict["ocr_captcha"]["force_submit"] = bool(chk_state_ocr_captcha_force_submit.get())
|
2023-01-13 19:01:47 +00:00
|
|
|
config_dict["ocr_captcha"]["image_source"] = combo_ocr_captcha_image_source.get().strip()
|
2023-06-03 04:23:53 +00:00
|
|
|
|
|
|
|
if is_arm():
|
|
|
|
config_dict["ocr_captcha"]["enable"] = False
|
|
|
|
config_dict["ocr_captcha"]["force_submit"] = False
|
|
|
|
|
2023-02-12 03:02:16 +00:00
|
|
|
config_dict["webdriver_type"] = combo_webdriver_type.get().strip()
|
2023-02-22 16:05:44 +00:00
|
|
|
config_dict["advanced"]["headless"] = bool(chk_state_headless.get())
|
2023-03-07 14:30:30 +00:00
|
|
|
config_dict["advanced"]["verbose"] = bool(chk_state_verbose.get())
|
2023-06-15 09:58:35 +00:00
|
|
|
|
2023-04-28 04:04:21 +00:00
|
|
|
config_dict["advanced"]["auto_guess_options"] = bool(chk_state_auto_guess_options.get())
|
2022-11-21 19:01:04 +00:00
|
|
|
|
2023-05-31 00:52:03 +00:00
|
|
|
config_dict["advanced"]["auto_reload_page_interval"] = float(txt_auto_reload_page_interval.get().strip())
|
2023-06-13 10:16:28 +00:00
|
|
|
config_dict["advanced"]["auto_reload_random_delay"] = bool(chk_state_auto_reload_random_delay.get())
|
2023-05-26 05:13:06 +00:00
|
|
|
|
2023-06-15 09:58:35 +00:00
|
|
|
|
2023-05-31 00:52:03 +00:00
|
|
|
# save config.
|
|
|
|
if is_all_data_correct:
|
2022-12-27 15:38:13 +00:00
|
|
|
if not slience_mode:
|
2023-03-05 08:04:15 +00:00
|
|
|
#messagebox.showinfo(translate[language_code]["save"], translate[language_code]["done"])
|
2023-03-30 15:07:55 +00:00
|
|
|
file_to_save = asksaveasfilename(initialdir=app_root , initialfile=CONST_MAXBOT_CONFIG_FILE, defaultextension=".json", filetypes=[("json Documents","*.json"),("All Files","*.*")])
|
2023-03-05 08:04:15 +00:00
|
|
|
if not file_to_save is None:
|
2023-03-30 15:07:55 +00:00
|
|
|
if len(file_to_save) > 0:
|
|
|
|
print("save as to:", file_to_save)
|
|
|
|
with open(file_to_save, 'w') as outfile:
|
|
|
|
json.dump(config_dict, outfile)
|
2023-03-05 08:04:15 +00:00
|
|
|
else:
|
|
|
|
# slience
|
|
|
|
with open(config_filepath, 'w') as outfile:
|
|
|
|
json.dump(config_dict, outfile)
|
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
|
|
|
|
return is_all_data_correct
|
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
def btn_run_clicked(language_code):
|
2022-09-13 10:48:21 +00:00
|
|
|
print('run button pressed.')
|
2021-12-01 18:31:19 +00:00
|
|
|
Root_Dir = ""
|
2022-12-27 15:38:13 +00:00
|
|
|
save_ret = btn_save_act(language_code, slience_mode=True)
|
2022-09-13 10:48:21 +00:00
|
|
|
print("save config result:", save_ret)
|
|
|
|
if save_ret:
|
2023-03-14 00:28:24 +00:00
|
|
|
threading.Thread(target=launch_maxbot).start()
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2023-03-14 00:28:24 +00:00
|
|
|
def launch_maxbot():
|
2023-06-15 15:45:50 +00:00
|
|
|
run_python_script("chrome_tixcraft")
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-06-15 09:58:35 +00:00
|
|
|
def show_preview_text():
|
2023-06-16 04:04:04 +00:00
|
|
|
if os.path.exists(CONST_MAXBOT_ANSWER_ONLINE_FILE):
|
|
|
|
answer_text = ""
|
|
|
|
with open(CONST_MAXBOT_ANSWER_ONLINE_FILE, "r") as text_file:
|
|
|
|
answer_text = text_file.readline()
|
2023-06-16 16:04:55 +00:00
|
|
|
|
|
|
|
answer_text = format_config_keyword_for_json(answer_text)
|
|
|
|
|
|
|
|
date_array = []
|
|
|
|
try:
|
|
|
|
date_array = json.loads("["+ answer_text +"]")
|
|
|
|
except Exception as exc:
|
|
|
|
date_array = []
|
|
|
|
|
2023-06-19 09:31:57 +00:00
|
|
|
global lbl_online_dictionary_preview_data
|
2023-06-15 09:58:35 +00:00
|
|
|
try:
|
2023-06-19 09:31:57 +00:00
|
|
|
lbl_online_dictionary_preview_data.config(text=','.join(date_array))
|
2023-06-15 09:58:35 +00:00
|
|
|
except Exception as exc:
|
|
|
|
pass
|
|
|
|
|
2023-06-16 04:04:04 +00:00
|
|
|
def save_url_to_file(new_online_dictionary_url, force_write = False):
|
|
|
|
html_text = ""
|
2023-06-15 09:58:35 +00:00
|
|
|
if len(new_online_dictionary_url) > 0:
|
|
|
|
user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'
|
|
|
|
headers = {"Accept-Language": "zh-TW,zh;q=0.5", 'User-Agent': user_agent}
|
|
|
|
html_result = None
|
|
|
|
try:
|
2023-06-16 16:04:55 +00:00
|
|
|
html_result = requests.get(new_online_dictionary_url , headers=headers, timeout=0.5, allow_redirects=False)
|
2023-06-15 09:58:35 +00:00
|
|
|
except Exception as exc:
|
|
|
|
html_result = None
|
2023-06-15 15:45:50 +00:00
|
|
|
#print(exc)
|
2023-06-15 09:58:35 +00:00
|
|
|
if not html_result is None:
|
|
|
|
status_code = html_result.status_code
|
2023-06-15 15:45:50 +00:00
|
|
|
#print("status_code:", status_code)
|
2023-06-15 09:58:35 +00:00
|
|
|
if status_code == 200:
|
|
|
|
html_text = html_result.text
|
2023-06-16 16:04:55 +00:00
|
|
|
#print("html_text:", html_text)
|
2023-06-16 04:04:04 +00:00
|
|
|
|
|
|
|
is_write_to_file = False
|
|
|
|
if force_write:
|
|
|
|
is_write_to_file = True
|
|
|
|
if len(html_text) > 0:
|
|
|
|
is_write_to_file = True
|
|
|
|
|
|
|
|
if is_write_to_file:
|
2023-06-16 16:04:55 +00:00
|
|
|
html_text = format_config_keyword_for_json(html_text)
|
2023-06-15 09:58:35 +00:00
|
|
|
with open(CONST_MAXBOT_ANSWER_ONLINE_FILE, "w") as text_file:
|
2023-06-16 04:04:04 +00:00
|
|
|
text_file.write("%s" % html_text)
|
|
|
|
return is_write_to_file
|
2023-06-15 09:58:35 +00:00
|
|
|
|
|
|
|
def btn_preview_text_clicked():
|
|
|
|
global txt_online_dictionary_url
|
2023-06-16 16:04:55 +00:00
|
|
|
online_dictionary_url = ""
|
|
|
|
try:
|
|
|
|
online_dictionary_url = txt_online_dictionary_url.get("1.0",END).strip()
|
|
|
|
except Exception as exc:
|
|
|
|
pass
|
2023-06-16 04:04:04 +00:00
|
|
|
online_dictionary_url = format_config_keyword_for_json(online_dictionary_url)
|
|
|
|
if len(online_dictionary_url) > 0:
|
|
|
|
url_array = []
|
|
|
|
try:
|
|
|
|
url_array = json.loads("["+ online_dictionary_url +"]")
|
|
|
|
except Exception as exc:
|
|
|
|
url_array = []
|
|
|
|
|
|
|
|
force_write = False
|
|
|
|
if len(url_array)==1:
|
|
|
|
force_write = True
|
|
|
|
for each_url in url_array:
|
|
|
|
#print("new_online_dictionary_url:", new_online_dictionary_url)
|
|
|
|
is_write_to_file = save_url_to_file(each_url, force_write=force_write)
|
|
|
|
if is_write_to_file:
|
|
|
|
break
|
2023-06-15 09:58:35 +00:00
|
|
|
show_preview_text()
|
|
|
|
|
2023-06-15 15:45:50 +00:00
|
|
|
def run_python_script(script_name):
|
|
|
|
working_dir = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
if hasattr(sys, 'frozen'):
|
|
|
|
print("execute in frozen mode")
|
|
|
|
|
|
|
|
# check platform here.
|
|
|
|
if platform.system() == 'Darwin':
|
|
|
|
print("execute MacOS python script")
|
|
|
|
subprocess.Popen("./" + script_name, shell=True, cwd=working_dir)
|
|
|
|
if platform.system() == 'Linux':
|
|
|
|
print("execute linux binary")
|
|
|
|
subprocess.Popen("./" + script_name, shell=True, cwd=working_dir)
|
|
|
|
if platform.system() == 'Windows':
|
|
|
|
print("execute .exe binary.")
|
|
|
|
subprocess.Popen(script_name + ".exe", shell=True, cwd=working_dir)
|
|
|
|
else:
|
|
|
|
interpreter_binary = 'python'
|
|
|
|
interpreter_binary_alt = 'python3'
|
|
|
|
if platform.system() == 'Darwin':
|
|
|
|
# try python3 before python.
|
|
|
|
interpreter_binary = 'python3'
|
|
|
|
interpreter_binary_alt = 'python'
|
|
|
|
print("execute in shell mode.")
|
|
|
|
#print("script path:", working_dir)
|
|
|
|
#messagebox.showinfo(title="Debug0", message=working_dir)
|
|
|
|
|
|
|
|
# some python3 binary, running in 'python' command.
|
|
|
|
try:
|
|
|
|
print('try', interpreter_binary)
|
|
|
|
s=subprocess.Popen([interpreter_binary, script_name + '.py'], cwd=working_dir)
|
|
|
|
#s=subprocess.Popen(['./chrome_tixcraft'], stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=working_dir)
|
|
|
|
#s=subprocess.run(['python3', 'chrome_tixcraft.py'], cwd=working_dir)
|
|
|
|
#messagebox.showinfo(title="Debug1", message=str(s))
|
|
|
|
except Exception as exc:
|
|
|
|
print('try', interpreter_binary_alt)
|
|
|
|
try:
|
|
|
|
s=subprocess.Popen([interpreter_binary_alt, script_name + '.py'], cwd=working_dir)
|
|
|
|
except Exception as exc:
|
|
|
|
msg=str(exc)
|
|
|
|
print("exeption:", msg)
|
|
|
|
#messagebox.showinfo(title="Debug2", message=msg)
|
|
|
|
pass
|
|
|
|
|
|
|
|
def btn_open_text_server_clicked():
|
2023-06-19 12:55:33 +00:00
|
|
|
global txt_online_dictionary_url
|
|
|
|
online_dictionary_url = ""
|
|
|
|
try:
|
|
|
|
online_dictionary_url = txt_online_dictionary_url.get("1.0",END).strip()
|
|
|
|
except Exception as exc:
|
|
|
|
pass
|
|
|
|
|
|
|
|
if online_dictionary_url=="":
|
|
|
|
local_ip = get_ip_address()
|
|
|
|
ip_address = "http://%s:%d/" % (local_ip,CONST_SERVER_PORT)
|
|
|
|
txt_online_dictionary_url.insert("1.0", ip_address)
|
|
|
|
|
2023-06-15 15:45:50 +00:00
|
|
|
run_python_script("text_server")
|
2023-06-15 09:58:35 +00:00
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
def btn_preview_sound_clicked():
|
|
|
|
global txt_captcha_sound_filename
|
|
|
|
new_sound_filename = txt_captcha_sound_filename.get().strip()
|
|
|
|
#print("new_sound_filename:", new_sound_filename)
|
|
|
|
app_root = get_app_root()
|
|
|
|
new_sound_filename = os.path.join(app_root, new_sound_filename)
|
2022-11-17 18:17:19 +00:00
|
|
|
play_mp3_async(new_sound_filename)
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2022-11-17 18:17:19 +00:00
|
|
|
def play_mp3_async(sound_filename):
|
2023-04-05 12:47:44 +00:00
|
|
|
threading.Thread(target=play_mp3, args=(sound_filename,)).start()
|
2022-11-17 18:17:19 +00:00
|
|
|
|
|
|
|
def play_mp3(sound_filename):
|
2022-11-16 15:43:53 +00:00
|
|
|
from playsound import playsound
|
|
|
|
try:
|
2022-11-17 18:17:19 +00:00
|
|
|
playsound(sound_filename)
|
2022-11-16 15:43:53 +00:00
|
|
|
except Exception as exc:
|
|
|
|
msg=str(exc)
|
|
|
|
print("play sound exeption:", msg)
|
2022-11-17 18:17:19 +00:00
|
|
|
if platform.system() == 'Windows':
|
|
|
|
import winsound
|
|
|
|
try:
|
|
|
|
winsound.PlaySound(sound_filename, winsound.SND_FILENAME)
|
|
|
|
except Exception as exc2:
|
|
|
|
pass
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
def open_url(url):
|
|
|
|
webbrowser.open_new(url)
|
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
def btn_exit_clicked():
|
|
|
|
root.destroy()
|
|
|
|
|
2022-11-10 14:02:26 +00:00
|
|
|
def btn_donate_clicked():
|
2023-06-19 09:31:57 +00:00
|
|
|
webbrowser.open(URL_DONATE)
|
2022-11-10 14:02:26 +00:00
|
|
|
|
|
|
|
def btn_help_clicked():
|
2023-06-19 09:31:57 +00:00
|
|
|
webbrowser.open(URL_HELP)
|
2022-11-10 14:02:26 +00:00
|
|
|
|
2022-11-17 18:17:19 +00:00
|
|
|
def btn_copy_clicked():
|
|
|
|
pyperclip.copy(CONST_ADBLOCK_PLUS_ADVANCED_FILTER_DEFAULT)
|
|
|
|
|
2022-11-24 21:40:40 +00:00
|
|
|
def callbackTicketNumberOnChange(event):
|
|
|
|
showHidePass1SeatRemaining()
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
def callbackLanguageOnChange(event):
|
|
|
|
applyNewLanguage()
|
|
|
|
|
|
|
|
def get_language_code_by_name(new_language):
|
|
|
|
language_code = "en_us"
|
2022-11-13 18:34:22 +00:00
|
|
|
if u'繁體中文' in new_language:
|
2022-11-11 16:46:36 +00:00
|
|
|
language_code = 'zh_tw'
|
2022-11-13 18:34:22 +00:00
|
|
|
if u'簡体中文' in new_language:
|
2022-11-11 16:46:36 +00:00
|
|
|
language_code = 'zh_cn'
|
2022-11-13 18:34:22 +00:00
|
|
|
if u'日本語' in new_language:
|
2022-11-11 16:46:36 +00:00
|
|
|
language_code = 'ja_jp'
|
|
|
|
#print("new language code:", language_code)
|
|
|
|
|
|
|
|
return language_code
|
|
|
|
|
|
|
|
def applyNewLanguage():
|
|
|
|
global combo_language
|
|
|
|
new_language = combo_language.get().strip()
|
|
|
|
#print("new language value:", new_language)
|
|
|
|
|
|
|
|
language_code=get_language_code_by_name(new_language)
|
|
|
|
|
|
|
|
global lbl_homepage
|
|
|
|
global lbl_browser
|
|
|
|
global lbl_language
|
|
|
|
global lbl_ticket_number
|
2022-11-24 21:40:40 +00:00
|
|
|
global lbl_pass_1_seat_remaining
|
2022-12-15 11:26:51 +00:00
|
|
|
global lbl_auto_check_agree
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
# for kktix
|
|
|
|
global lbl_auto_press_next_step_button
|
|
|
|
global lbl_auto_fill_ticket_number
|
2023-06-19 09:31:57 +00:00
|
|
|
global lbl_user_guess_string_description
|
2022-12-27 15:38:13 +00:00
|
|
|
global lbl_user_guess_string
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
# for tixcraft
|
|
|
|
global lbl_date_auto_select
|
|
|
|
global lbl_date_auto_select_mode
|
|
|
|
global lbl_date_keyword
|
|
|
|
global lbl_area_auto_select
|
|
|
|
global lbl_area_auto_select_mode
|
2023-05-24 07:17:11 +00:00
|
|
|
global lbl_area_keyword
|
2023-03-21 17:33:12 +00:00
|
|
|
global lbl_area_keyword_exclude
|
2023-05-24 07:17:11 +00:00
|
|
|
global lbl_area_keyword_usage
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
global lbl_pass_date_is_sold_out
|
|
|
|
global lbl_auto_reload_coming_soon_page
|
2023-01-12 08:51:05 +00:00
|
|
|
global lbl_ocr_captcha
|
2023-01-12 22:29:58 +00:00
|
|
|
global lbl_ocr_captcha_force_submit
|
2023-01-13 19:01:47 +00:00
|
|
|
global lbl_ocr_captcha_image_source
|
2023-02-12 03:02:16 +00:00
|
|
|
global lbl_webdriver_type
|
2023-02-22 16:05:44 +00:00
|
|
|
global lbl_headless
|
2023-03-07 14:30:30 +00:00
|
|
|
global lbl_verbose
|
2023-04-28 04:04:21 +00:00
|
|
|
global lbl_auto_guess_options
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2023-03-12 17:08:23 +00:00
|
|
|
global lbl_maxbot_status
|
|
|
|
global lbl_maxbot_last_url
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
# for checkbox
|
2022-11-24 21:40:40 +00:00
|
|
|
global chk_pass_1_seat_remaining
|
2022-12-15 11:26:51 +00:00
|
|
|
global chk_auto_check_agree
|
2022-11-24 21:40:40 +00:00
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
global chk_auto_press_next_step_button
|
|
|
|
global chk_auto_fill_ticket_number
|
|
|
|
global chk_date_auto_select
|
|
|
|
global chk_area_auto_select
|
|
|
|
global chk_pass_date_is_sold_out
|
|
|
|
global chk_auto_reload_coming_soon_page
|
2022-11-16 15:43:53 +00:00
|
|
|
global chk_play_captcha_sound
|
2022-11-17 18:17:19 +00:00
|
|
|
global chk_adblock_plus
|
2023-01-12 08:51:05 +00:00
|
|
|
global chk_ocr_captcha
|
2023-01-13 09:27:08 +00:00
|
|
|
global chk_ocr_captcha_force_submit
|
2023-05-17 00:06:08 +00:00
|
|
|
global chk_adjacent_seat
|
2023-02-22 16:05:44 +00:00
|
|
|
global chk_headless
|
2023-03-07 14:30:30 +00:00
|
|
|
global chk_verbose
|
2023-06-15 09:58:35 +00:00
|
|
|
global lbl_online_dictionary_url
|
2023-06-19 09:31:57 +00:00
|
|
|
global lbl_online_dictionary_preview
|
2023-04-28 04:04:21 +00:00
|
|
|
global chk_auto_guess_options
|
2023-06-13 10:16:28 +00:00
|
|
|
global chk_auto_reload_random_delay
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
global tabControl
|
|
|
|
|
|
|
|
global lbl_slogan
|
|
|
|
global lbl_help
|
|
|
|
global lbl_donate
|
|
|
|
global lbl_release
|
|
|
|
|
2022-11-17 18:17:19 +00:00
|
|
|
global lbl_adblock_plus
|
|
|
|
global lbl_adblock_plus_settings
|
2023-05-17 00:06:08 +00:00
|
|
|
global lbl_adjacent_seat
|
2023-05-26 04:43:18 +00:00
|
|
|
global lbl_auto_reload_page_interval
|
2023-06-13 10:16:28 +00:00
|
|
|
global lbl_auto_reload_random_delay
|
2022-11-17 18:17:19 +00:00
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
lbl_homepage.config(text=translate[language_code]["homepage"])
|
|
|
|
lbl_browser.config(text=translate[language_code]["browser"])
|
|
|
|
lbl_language.config(text=translate[language_code]["language"])
|
|
|
|
lbl_ticket_number.config(text=translate[language_code]["ticket_number"])
|
2022-11-24 21:40:40 +00:00
|
|
|
lbl_pass_1_seat_remaining.config(text=translate[language_code]["pass_1_seat_remaining"])
|
2022-12-15 11:26:51 +00:00
|
|
|
lbl_auto_check_agree.config(text=translate[language_code]["auto_check_agree"])
|
2022-11-11 16:46:36 +00:00
|
|
|
|
|
|
|
lbl_auto_press_next_step_button.config(text=translate[language_code]["auto_press_next_step_button"])
|
|
|
|
lbl_auto_fill_ticket_number.config(text=translate[language_code]["auto_fill_ticket_number"])
|
2023-06-19 09:31:57 +00:00
|
|
|
lbl_user_guess_string_description.config(text=translate[language_code]["user_guess_string"])
|
|
|
|
lbl_user_guess_string.config(text=translate[language_code]["local_dictionary"])
|
2023-03-12 16:34:59 +00:00
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
lbl_date_auto_select.config(text=translate[language_code]["date_auto_select"])
|
|
|
|
lbl_date_auto_select_mode.config(text=translate[language_code]["date_select_order"])
|
|
|
|
lbl_date_keyword.config(text=translate[language_code]["date_keyword"])
|
|
|
|
lbl_area_auto_select.config(text=translate[language_code]["area_auto_select"])
|
|
|
|
lbl_area_auto_select_mode.config(text=translate[language_code]["area_select_order"])
|
2023-05-24 07:17:11 +00:00
|
|
|
lbl_area_keyword.config(text=translate[language_code]["area_keyword"])
|
2023-03-21 17:33:12 +00:00
|
|
|
lbl_area_keyword_exclude.config(text=translate[language_code]["area_keyword_exclude"])
|
2023-05-24 07:17:11 +00:00
|
|
|
lbl_area_keyword_usage.config(text=translate[language_code]["area_keyword_usage"])
|
2022-11-11 16:46:36 +00:00
|
|
|
lbl_pass_date_is_sold_out.config(text=translate[language_code]["pass_date_is_sold_out"])
|
|
|
|
lbl_auto_reload_coming_soon_page.config(text=translate[language_code]["auto_reload_coming_soon_page"])
|
2023-01-12 08:51:05 +00:00
|
|
|
lbl_ocr_captcha.config(text=translate[language_code]["ocr_captcha"])
|
2023-01-12 22:29:58 +00:00
|
|
|
lbl_ocr_captcha_force_submit.config(text=translate[language_code]["ocr_captcha_force_submit"])
|
2023-01-13 19:01:47 +00:00
|
|
|
lbl_ocr_captcha_image_source.config(text=translate[language_code]["ocr_captcha_image_source"])
|
2023-02-12 03:02:16 +00:00
|
|
|
lbl_webdriver_type.config(text=translate[language_code]["webdriver_type"])
|
2023-05-17 00:06:08 +00:00
|
|
|
lbl_adjacent_seat.config(text=translate[language_code]["disable_adjacent_seat"])
|
2023-05-26 04:43:18 +00:00
|
|
|
lbl_auto_reload_page_interval.config(text=translate[language_code]["auto_reload_page_interval"])
|
2023-06-13 10:16:28 +00:00
|
|
|
lbl_auto_reload_random_delay.config(text=translate[language_code]["auto_reload_random_delay"])
|
2023-05-26 04:43:18 +00:00
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
lbl_headless.config(text=translate[language_code]["headless"])
|
2023-03-07 14:30:30 +00:00
|
|
|
lbl_verbose.config(text=translate[language_code]["verbose"])
|
2023-06-15 09:58:35 +00:00
|
|
|
|
|
|
|
lbl_online_dictionary_url.config(text=translate[language_code]["online_dictionary_url"])
|
2023-06-19 09:31:57 +00:00
|
|
|
lbl_online_dictionary_preview.config(text=translate[language_code]["preview"])
|
2023-04-28 04:04:21 +00:00
|
|
|
lbl_auto_guess_options.config(text=translate[language_code]["auto_guess_options"])
|
|
|
|
|
2023-03-12 17:08:23 +00:00
|
|
|
lbl_maxbot_status.config(text=translate[language_code]["running_status"])
|
|
|
|
lbl_maxbot_last_url.config(text=translate[language_code]["running_url"])
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2022-11-24 21:40:40 +00:00
|
|
|
chk_pass_1_seat_remaining.config(text=translate[language_code]["enable"])
|
2022-12-15 11:26:51 +00:00
|
|
|
chk_auto_check_agree.config(text=translate[language_code]["enable"])
|
2022-11-11 16:46:36 +00:00
|
|
|
chk_auto_press_next_step_button.config(text=translate[language_code]["enable"])
|
|
|
|
chk_auto_fill_ticket_number.config(text=translate[language_code]["enable"])
|
|
|
|
chk_date_auto_select.config(text=translate[language_code]["enable"])
|
|
|
|
chk_area_auto_select.config(text=translate[language_code]["enable"])
|
|
|
|
chk_pass_date_is_sold_out.config(text=translate[language_code]["enable"])
|
|
|
|
chk_auto_reload_coming_soon_page.config(text=translate[language_code]["enable"])
|
2022-11-16 15:43:53 +00:00
|
|
|
chk_play_captcha_sound.config(text=translate[language_code]["enable"])
|
2022-11-17 18:17:19 +00:00
|
|
|
chk_adblock_plus.config(text=translate[language_code]["enable"])
|
2023-01-12 08:51:05 +00:00
|
|
|
chk_ocr_captcha.config(text=translate[language_code]["enable"])
|
2023-01-13 09:27:08 +00:00
|
|
|
chk_ocr_captcha_force_submit.config(text=translate[language_code]["enable"])
|
2023-05-17 00:06:08 +00:00
|
|
|
chk_adjacent_seat.config(text=translate[language_code]["enable"])
|
2023-02-22 16:05:44 +00:00
|
|
|
chk_headless.config(text=translate[language_code]["enable"])
|
2023-03-07 14:30:30 +00:00
|
|
|
chk_verbose.config(text=translate[language_code]["enable"])
|
2023-04-28 04:04:21 +00:00
|
|
|
chk_auto_guess_options.config(text=translate[language_code]["enable"])
|
2023-06-13 10:16:28 +00:00
|
|
|
chk_auto_reload_random_delay.config(text=translate[language_code]["enable"])
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
tabControl.tab(0, text=translate[language_code]["preference"])
|
2022-11-16 15:43:53 +00:00
|
|
|
tabControl.tab(1, text=translate[language_code]["advanced"])
|
2023-06-19 09:31:57 +00:00
|
|
|
tabControl.tab(2, text=translate[language_code]["verification_word"])
|
|
|
|
tabControl.tab(3, text=translate[language_code]["autofill"])
|
|
|
|
tabControl.tab(4, text=translate[language_code]["runtime"])
|
|
|
|
tabControl.tab(5, text=translate[language_code]["about"])
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
global lbl_tixcraft_sid
|
2023-02-26 08:39:37 +00:00
|
|
|
global lbl_ibon_ibonqware
|
2022-11-16 15:43:53 +00:00
|
|
|
global lbl_facebook_account
|
2022-12-27 15:38:13 +00:00
|
|
|
global lbl_kktix_account
|
2023-01-18 08:40:41 +00:00
|
|
|
global lbl_cityline_account
|
|
|
|
global lbl_urbtix_account
|
2023-02-12 09:49:55 +00:00
|
|
|
global lbl_hkticketing_account
|
2023-02-11 05:36:27 +00:00
|
|
|
global lbl_kham_account
|
|
|
|
|
|
|
|
global lbl_facebook_password
|
|
|
|
global lbl_kktix_password
|
|
|
|
global lbl_cityline_password
|
|
|
|
global lbl_urbtix_password
|
2023-02-12 09:49:55 +00:00
|
|
|
global lbl_hkticketing_password
|
2023-02-11 05:36:27 +00:00
|
|
|
global lbl_kham_password
|
|
|
|
|
|
|
|
global lbl_save_password_alert
|
2023-01-18 08:40:41 +00:00
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
global lbl_play_captcha_sound
|
|
|
|
global lbl_captcha_sound_filename
|
2023-02-22 16:05:44 +00:00
|
|
|
|
|
|
|
lbl_tixcraft_sid.config(text=translate[language_code]["tixcraft_sid"])
|
2023-02-26 08:39:37 +00:00
|
|
|
lbl_ibon_ibonqware.config(text=translate[language_code]["ibon_ibonqware"])
|
2022-11-16 15:43:53 +00:00
|
|
|
lbl_facebook_account.config(text=translate[language_code]["facebook_account"])
|
2022-12-27 15:38:13 +00:00
|
|
|
lbl_kktix_account.config(text=translate[language_code]["kktix_account"])
|
2023-01-18 08:40:41 +00:00
|
|
|
lbl_cityline_account.config(text=translate[language_code]["cityline_account"])
|
|
|
|
lbl_urbtix_account.config(text=translate[language_code]["urbtix_account"])
|
2023-02-12 09:49:55 +00:00
|
|
|
lbl_hkticketing_account.config(text=translate[language_code]["hkticketing_account"])
|
2023-02-11 05:36:27 +00:00
|
|
|
lbl_kham_account.config(text=translate[language_code]["kham_account"])
|
|
|
|
|
|
|
|
lbl_facebook_password.config(text=translate[language_code]["facebook_password"])
|
|
|
|
lbl_kktix_password.config(text=translate[language_code]["kktix_password"])
|
|
|
|
lbl_cityline_password.config(text=translate[language_code]["cityline_password"])
|
|
|
|
lbl_urbtix_password.config(text=translate[language_code]["urbtix_password"])
|
2023-02-12 09:49:55 +00:00
|
|
|
lbl_hkticketing_password.config(text=translate[language_code]["hkticketing_password"])
|
2023-02-11 05:36:27 +00:00
|
|
|
lbl_kham_password.config(text=translate[language_code]["kham_password"])
|
|
|
|
|
|
|
|
lbl_save_password_alert.config(text=translate[language_code]["save_password_alert"])
|
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
lbl_play_captcha_sound.config(text=translate[language_code]["play_captcha_sound"])
|
|
|
|
lbl_captcha_sound_filename.config(text=translate[language_code]["captcha_sound_filename"])
|
2022-11-14 09:26:52 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
lbl_slogan.config(text=translate[language_code]["maxbot_slogan"])
|
|
|
|
lbl_help.config(text=translate[language_code]["help"])
|
|
|
|
lbl_donate.config(text=translate[language_code]["donate"])
|
|
|
|
lbl_release.config(text=translate[language_code]["release"])
|
|
|
|
|
2022-11-17 18:17:19 +00:00
|
|
|
lbl_adblock_plus.config(text=translate[language_code]["adblock_plus_enable"])
|
|
|
|
lbl_adblock_plus_settings.config(text=translate[language_code]["adblock_plus_settings"])
|
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
global btn_run
|
|
|
|
global btn_save
|
|
|
|
global btn_exit
|
2022-12-27 15:38:13 +00:00
|
|
|
global btn_restore_defaults
|
2023-02-26 08:39:37 +00:00
|
|
|
global btn_launcher
|
2022-12-27 15:38:13 +00:00
|
|
|
|
2023-03-12 17:08:23 +00:00
|
|
|
global btn_idle
|
|
|
|
global btn_resume
|
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
btn_run.config(text=translate[language_code]["run"])
|
|
|
|
btn_save.config(text=translate[language_code]["save"])
|
2022-12-27 15:38:13 +00:00
|
|
|
if btn_exit:
|
|
|
|
btn_exit.config(text=translate[language_code]["exit"])
|
|
|
|
btn_restore_defaults.config(text=translate[language_code]["restore_defaults"])
|
2023-02-26 08:39:37 +00:00
|
|
|
btn_launcher.config(text=translate[language_code]["config_launcher"])
|
2022-11-21 19:01:04 +00:00
|
|
|
|
2023-03-12 17:08:23 +00:00
|
|
|
btn_idle.config(text=translate[language_code]["idle"])
|
|
|
|
btn_resume.config(text=translate[language_code]["resume"])
|
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
def callbackHomepageOnChange(event):
|
|
|
|
showHideBlocks()
|
|
|
|
|
|
|
|
def callbackDateAutoOnChange():
|
|
|
|
showHideTixcraftBlocks()
|
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
def callbackAreaAutoOnChange():
|
|
|
|
showHideAreaBlocks()
|
|
|
|
|
2023-01-02 06:53:28 +00:00
|
|
|
def showHideBlocks():
|
2019-10-01 17:52:13 +00:00
|
|
|
global UI_PADDING_X
|
|
|
|
|
|
|
|
global frame_group_kktix
|
|
|
|
global frame_group_kktix_index
|
|
|
|
global frame_group_tixcraft
|
|
|
|
global frame_group_tixcraft_index
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
global combo_homepage
|
2019-10-01 17:52:13 +00:00
|
|
|
|
|
|
|
new_homepage = combo_homepage.get().strip()
|
|
|
|
#print("new homepage value:", new_homepage)
|
|
|
|
|
2023-01-02 06:53:28 +00:00
|
|
|
BLOCK_STYLE_TIXCRAFT = 0
|
|
|
|
BLOCK_STYLE_KKTIX = 1
|
|
|
|
STYLE_KKTIX_DOMAIN_LIST = ['kktix']
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-01-02 06:53:28 +00:00
|
|
|
show_block_index = BLOCK_STYLE_TIXCRAFT
|
|
|
|
for domain_name in STYLE_KKTIX_DOMAIN_LIST:
|
|
|
|
if domain_name in new_homepage:
|
|
|
|
show_block_index = BLOCK_STYLE_KKTIX
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-01-02 06:53:28 +00:00
|
|
|
if show_block_index == BLOCK_STYLE_KKTIX:
|
|
|
|
frame_group_kktix.grid(column=0, row=frame_group_kktix_index, padx=UI_PADDING_X)
|
|
|
|
frame_group_tixcraft.grid_forget()
|
|
|
|
|
|
|
|
else:
|
|
|
|
frame_group_tixcraft.grid(column=0, row=frame_group_tixcraft_index, padx=UI_PADDING_X)
|
|
|
|
frame_group_kktix.grid_forget()
|
2019-10-01 17:52:13 +00:00
|
|
|
|
|
|
|
showHideTixcraftBlocks()
|
2022-11-24 21:40:40 +00:00
|
|
|
showHidePass1SeatRemaining()
|
2023-01-12 11:41:49 +00:00
|
|
|
|
|
|
|
def showHideOcrCaptchaWithSubmit():
|
|
|
|
global chk_state_ocr_captcha
|
|
|
|
is_ocr_captcha_enable = bool(chk_state_ocr_captcha.get())
|
|
|
|
|
2023-01-12 22:29:58 +00:00
|
|
|
global ocr_captcha_force_submit_index
|
|
|
|
global lbl_ocr_captcha_force_submit
|
2023-01-13 09:27:08 +00:00
|
|
|
global chk_ocr_captcha_force_submit
|
2023-01-12 22:29:58 +00:00
|
|
|
|
2023-01-13 09:27:08 +00:00
|
|
|
if is_ocr_captcha_enable:
|
2023-01-12 22:29:58 +00:00
|
|
|
# show.
|
|
|
|
lbl_ocr_captcha_force_submit.grid(column=0, row=ocr_captcha_force_submit_index, sticky = E)
|
2023-01-13 09:27:08 +00:00
|
|
|
chk_ocr_captcha_force_submit.grid(column=1, row=ocr_captcha_force_submit_index, sticky = W)
|
2023-01-12 22:29:58 +00:00
|
|
|
else:
|
|
|
|
# hide
|
|
|
|
lbl_ocr_captcha_force_submit.grid_forget()
|
2023-01-13 09:27:08 +00:00
|
|
|
chk_ocr_captcha_force_submit.grid_forget()
|
2023-01-12 22:29:58 +00:00
|
|
|
|
2022-11-24 21:40:40 +00:00
|
|
|
def showHidePass1SeatRemaining():
|
|
|
|
global combo_ticket_number
|
|
|
|
ticket_number_int = int(combo_ticket_number.get().strip())
|
|
|
|
|
|
|
|
global pass_1_seat_remaining_index
|
|
|
|
global lbl_pass_1_seat_remaining
|
|
|
|
global chk_pass_1_seat_remaining
|
|
|
|
|
|
|
|
if ticket_number_int > 1:
|
|
|
|
# show.
|
|
|
|
lbl_pass_1_seat_remaining.grid(column=0, row=pass_1_seat_remaining_index, sticky = E)
|
|
|
|
chk_pass_1_seat_remaining.grid(column=1, row=pass_1_seat_remaining_index, sticky = W)
|
|
|
|
else:
|
|
|
|
# hide
|
|
|
|
lbl_pass_1_seat_remaining.grid_forget()
|
|
|
|
chk_pass_1_seat_remaining.grid_forget()
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2021-03-21 06:14:20 +00:00
|
|
|
# purpose: show detail blocks if master field is enable.
|
2019-10-01 17:52:13 +00:00
|
|
|
def showHideTixcraftBlocks():
|
|
|
|
# for tixcraft show/hide enable.
|
|
|
|
global chk_state_date_auto_select
|
|
|
|
|
|
|
|
global date_auto_select_mode_index
|
|
|
|
global lbl_date_auto_select_mode
|
|
|
|
global combo_date_auto_select_mode
|
|
|
|
|
|
|
|
global date_keyword_index
|
|
|
|
global lbl_date_keyword
|
|
|
|
global txt_date_keyword
|
|
|
|
|
2019-10-27 01:31:22 +00:00
|
|
|
is_date_set_to_enable = bool(chk_state_date_auto_select.get())
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2019-10-27 01:31:22 +00:00
|
|
|
if is_date_set_to_enable:
|
2019-10-01 17:52:13 +00:00
|
|
|
# show
|
|
|
|
lbl_date_auto_select_mode.grid(column=0, row=date_auto_select_mode_index, sticky = E)
|
|
|
|
combo_date_auto_select_mode.grid(column=1, row=date_auto_select_mode_index, sticky = W)
|
|
|
|
|
|
|
|
lbl_date_keyword.grid(column=0, row=date_keyword_index, sticky = E)
|
|
|
|
txt_date_keyword.grid(column=1, row=date_keyword_index, sticky = W)
|
|
|
|
else:
|
|
|
|
# hide
|
|
|
|
lbl_date_auto_select_mode.grid_forget()
|
|
|
|
combo_date_auto_select_mode.grid_forget()
|
|
|
|
|
|
|
|
lbl_date_keyword.grid_forget()
|
|
|
|
txt_date_keyword.grid_forget()
|
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
|
|
|
|
# purpose: show detail of area block.
|
|
|
|
def showHideAreaBlocks():
|
|
|
|
# for tixcraft show/hide enable.
|
|
|
|
global chk_state_area_auto_select
|
|
|
|
|
|
|
|
global area_auto_select_mode_index
|
|
|
|
global lbl_area_auto_select_mode
|
|
|
|
global combo_area_auto_select_mode
|
|
|
|
|
|
|
|
area_keyword_index = area_auto_select_mode_index + 1
|
|
|
|
area_keyword_exclude_index = area_auto_select_mode_index + 2
|
|
|
|
|
|
|
|
global lbl_area_keyword
|
|
|
|
global txt_area_keyword
|
|
|
|
|
|
|
|
global lbl_area_keyword_exclude
|
|
|
|
global txt_area_keyword_exclude
|
|
|
|
|
|
|
|
is_area_set_to_enable = bool(chk_state_area_auto_select.get())
|
|
|
|
|
2019-10-27 01:31:22 +00:00
|
|
|
if is_area_set_to_enable:
|
2019-10-01 17:52:13 +00:00
|
|
|
# show
|
2023-05-24 07:17:11 +00:00
|
|
|
lbl_area_auto_select_mode.grid(column=0, row=area_auto_select_mode_index, sticky = E)
|
|
|
|
combo_area_auto_select_mode.grid(column=1, row=area_auto_select_mode_index, sticky = W)
|
2019-10-27 01:31:22 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
lbl_area_keyword.grid(column=0, row=area_keyword_index, sticky = E+N)
|
|
|
|
txt_area_keyword.grid(column=1, row=area_keyword_index, sticky = W)
|
2022-11-09 17:56:12 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
lbl_area_keyword_exclude.grid(column=0, row=area_keyword_exclude_index, sticky = E+N)
|
|
|
|
txt_area_keyword_exclude.grid(column=1, row=area_keyword_exclude_index, sticky = W)
|
2022-11-09 17:56:12 +00:00
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
else:
|
|
|
|
# hide
|
|
|
|
lbl_area_auto_select_mode.grid_forget()
|
|
|
|
combo_area_auto_select_mode.grid_forget()
|
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
lbl_area_keyword.grid_forget()
|
|
|
|
txt_area_keyword.grid_forget()
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
lbl_area_keyword_exclude.grid_forget()
|
|
|
|
txt_area_keyword_exclude.grid_forget()
|
2022-11-09 17:56:12 +00:00
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-05-25 02:42:32 +00:00
|
|
|
def on_homepage_configure(event):
|
|
|
|
font = tkfont.nametofont(str(event.widget.cget('font')))
|
|
|
|
width = font.measure(CONST_SUPPORTED_SITES[len(CONST_SUPPORTED_SITES)-1] + "0") - event.width
|
|
|
|
style = ttk.Style()
|
|
|
|
style.configure('TCombobox', postoffset=(0,0,width,0))
|
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
def PreferenctTab(root, config_dict, language_code, UI_PADDING_X):
|
2022-11-21 19:01:04 +00:00
|
|
|
# output config:
|
|
|
|
print("setting app version", CONST_APP_VERSION)
|
|
|
|
print("python version", platform.python_version())
|
2023-01-12 08:51:05 +00:00
|
|
|
print("platform", platform.platform())
|
2022-03-24 15:22:43 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
# for kktix
|
|
|
|
print("==[kktix]==")
|
2023-01-23 13:32:47 +00:00
|
|
|
print(config_dict["kktix"])
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
# for tixcraft
|
|
|
|
print("==[tixcraft]==")
|
2023-01-23 13:32:47 +00:00
|
|
|
print(config_dict["tixcraft"])
|
2021-11-21 09:33:49 +00:00
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
global lbl_homepage
|
|
|
|
global lbl_ticket_number
|
|
|
|
|
|
|
|
global lbl_kktix
|
|
|
|
global lbl_tixcraft
|
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
row_count = 0
|
|
|
|
|
|
|
|
frame_group_header = Frame(root)
|
|
|
|
group_row_count = 0
|
|
|
|
|
|
|
|
# first row need padding Y
|
2022-11-13 18:34:22 +00:00
|
|
|
lbl_homepage = Label(frame_group_header, text=translate[language_code]['homepage'])
|
2019-10-01 17:52:13 +00:00
|
|
|
lbl_homepage.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global combo_homepage
|
2023-05-25 02:42:32 +00:00
|
|
|
combo_homepage = ttk.Combobox(frame_group_header, width=30)
|
2023-05-24 07:17:11 +00:00
|
|
|
combo_homepage['values'] = CONST_SUPPORTED_SITES
|
|
|
|
combo_homepage.set(config_dict["homepage"])
|
2019-10-01 17:52:13 +00:00
|
|
|
combo_homepage.bind("<<ComboboxSelected>>", callbackHomepageOnChange)
|
2023-05-25 02:42:32 +00:00
|
|
|
#combo_homepage.bind('<Configure>', on_homepage_configure)
|
2019-10-01 17:52:13 +00:00
|
|
|
combo_homepage.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count+=1
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
lbl_ticket_number = Label(frame_group_header, text=translate[language_code]['ticket_number'])
|
2019-10-01 17:52:13 +00:00
|
|
|
lbl_ticket_number.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
2022-01-13 09:49:26 +00:00
|
|
|
global combo_ticket_number
|
|
|
|
# for text format.
|
2022-11-16 15:43:53 +00:00
|
|
|
# PS: some user keyin wrong type. @_@;
|
2022-01-13 09:49:26 +00:00
|
|
|
'''
|
|
|
|
global combo_ticket_number_value
|
|
|
|
combo_ticket_number_value = StringVar(frame_group_header, value=ticket_number)
|
2023-05-25 02:42:32 +00:00
|
|
|
combo_ticket_number = Entry(frame_group_header, width=30, textvariable = combo_ticket_number_value)
|
2022-01-13 09:49:26 +00:00
|
|
|
combo_ticket_number.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
'''
|
2023-05-25 02:42:32 +00:00
|
|
|
combo_ticket_number = ttk.Combobox(frame_group_header, state="readonly", width=30)
|
2022-11-16 15:43:53 +00:00
|
|
|
combo_ticket_number['values']= ("1","2","3","4","5","6","7","8","9","10","11","12")
|
2022-01-13 09:49:26 +00:00
|
|
|
#combo_ticket_number.current(0)
|
2023-05-24 07:17:11 +00:00
|
|
|
combo_ticket_number.set(str(config_dict["ticket_number"]))
|
2022-11-24 21:40:40 +00:00
|
|
|
combo_ticket_number.bind("<<ComboboxSelected>>", callbackTicketNumberOnChange)
|
2022-01-13 09:49:26 +00:00
|
|
|
combo_ticket_number.grid(column=1, row=group_row_count, sticky = W)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-24 21:40:40 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global pass_1_seat_remaining_index
|
|
|
|
pass_1_seat_remaining_index = group_row_count
|
|
|
|
|
|
|
|
global lbl_pass_1_seat_remaining
|
|
|
|
lbl_pass_1_seat_remaining = Label(frame_group_header, text=translate[language_code]['pass_1_seat_remaining'])
|
|
|
|
lbl_pass_1_seat_remaining.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_pass_1_seat_remaining
|
|
|
|
chk_state_pass_1_seat_remaining = BooleanVar()
|
2023-05-24 07:17:11 +00:00
|
|
|
chk_state_pass_1_seat_remaining.set(config_dict["pass_1_seat_remaining"])
|
2022-11-24 21:40:40 +00:00
|
|
|
|
|
|
|
global chk_pass_1_seat_remaining
|
|
|
|
chk_pass_1_seat_remaining = Checkbutton(frame_group_header, text=translate[language_code]['enable'], variable=chk_state_pass_1_seat_remaining)
|
|
|
|
chk_pass_1_seat_remaining.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
2022-12-15 11:26:51 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global lbl_auto_check_agree
|
|
|
|
lbl_auto_check_agree = Label(frame_group_header, text=translate[language_code]['auto_check_agree'])
|
|
|
|
lbl_auto_check_agree.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_auto_check_agree
|
|
|
|
chk_state_auto_check_agree = BooleanVar()
|
2023-05-24 07:17:11 +00:00
|
|
|
chk_state_auto_check_agree.set(config_dict["auto_check_agree"])
|
2022-12-15 11:26:51 +00:00
|
|
|
|
|
|
|
global chk_auto_check_agree
|
|
|
|
chk_auto_check_agree = Checkbutton(frame_group_header, text=translate[language_code]['enable'], variable=chk_state_auto_check_agree)
|
|
|
|
chk_auto_check_agree.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
frame_group_header.grid(column=0, row=row_count, sticky = W, padx=UI_PADDING_X)
|
|
|
|
|
|
|
|
row_count+=1
|
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
# for sub group KKTix.
|
2019-10-01 17:52:13 +00:00
|
|
|
global frame_group_kktix
|
|
|
|
frame_group_kktix = Frame(root)
|
|
|
|
group_row_count = 0
|
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
# start sub group...
|
2019-10-01 17:52:13 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
global lbl_auto_press_next_step_button
|
|
|
|
lbl_auto_press_next_step_button = Label(frame_group_kktix, text=translate[language_code]['auto_press_next_step_button'])
|
2019-10-01 17:52:13 +00:00
|
|
|
lbl_auto_press_next_step_button.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_auto_press_next_step_button
|
|
|
|
chk_state_auto_press_next_step_button = BooleanVar()
|
2023-05-24 07:17:11 +00:00
|
|
|
chk_state_auto_press_next_step_button.set(config_dict["kktix"]["auto_press_next_step_button"])
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
global chk_auto_press_next_step_button
|
|
|
|
chk_auto_press_next_step_button = Checkbutton(frame_group_kktix, text=translate[language_code]['enable'], variable=chk_state_auto_press_next_step_button)
|
2019-10-01 17:52:13 +00:00
|
|
|
chk_auto_press_next_step_button.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count+=1
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
global lbl_auto_fill_ticket_number
|
|
|
|
lbl_auto_fill_ticket_number = Label(frame_group_kktix, text=translate[language_code]['auto_fill_ticket_number'])
|
2019-10-01 17:52:13 +00:00
|
|
|
lbl_auto_fill_ticket_number.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_auto_fill_ticket_number
|
|
|
|
chk_state_auto_fill_ticket_number = BooleanVar()
|
2023-05-24 07:17:11 +00:00
|
|
|
chk_state_auto_fill_ticket_number.set(config_dict["kktix"]["auto_fill_ticket_number"])
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
global chk_auto_fill_ticket_number
|
|
|
|
chk_auto_fill_ticket_number = Checkbutton(frame_group_kktix, text=translate[language_code]['enable'], variable=chk_state_auto_fill_ticket_number)
|
2021-03-21 06:14:20 +00:00
|
|
|
chk_auto_fill_ticket_number.grid(column=1, row=group_row_count, sticky = W)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
|
|
|
global frame_group_kktix_index
|
|
|
|
frame_group_kktix_index = row_count
|
2023-01-02 06:53:28 +00:00
|
|
|
#PS: don't need show when onload(), because show/hide block will load again.
|
|
|
|
#frame_group_kktix.grid(column=0, row=row_count, sticky = W, padx=UI_PADDING_X)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
|
|
|
row_count+=1
|
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
# for sub group tixcraft.
|
2019-10-01 17:52:13 +00:00
|
|
|
global frame_group_tixcraft
|
|
|
|
frame_group_tixcraft = Frame(root)
|
|
|
|
group_row_count = 0
|
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
# start sub group.
|
2019-10-01 17:52:13 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
global lbl_date_auto_select
|
|
|
|
lbl_date_auto_select = Label(frame_group_tixcraft, text=translate[language_code]['date_auto_select'])
|
2019-10-01 17:52:13 +00:00
|
|
|
lbl_date_auto_select.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_date_auto_select
|
|
|
|
chk_state_date_auto_select = BooleanVar()
|
2023-05-24 07:17:11 +00:00
|
|
|
chk_state_date_auto_select.set(config_dict["tixcraft"]["date_auto_select"]["enable"])
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-11 16:46:36 +00:00
|
|
|
global chk_date_auto_select
|
|
|
|
chk_date_auto_select = Checkbutton(frame_group_tixcraft, text=translate[language_code]['enable'], variable=chk_state_date_auto_select, command=callbackDateAutoOnChange)
|
2019-10-01 17:52:13 +00:00
|
|
|
chk_date_auto_select.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global date_auto_select_mode_index
|
|
|
|
date_auto_select_mode_index = group_row_count
|
|
|
|
|
|
|
|
global lbl_date_auto_select_mode
|
2022-11-11 16:46:36 +00:00
|
|
|
lbl_date_auto_select_mode = Label(frame_group_tixcraft, text=translate[language_code]['date_select_order'])
|
2019-10-01 17:52:13 +00:00
|
|
|
lbl_date_auto_select_mode.grid(column=0, row=date_auto_select_mode_index, sticky = E)
|
|
|
|
|
|
|
|
global combo_date_auto_select_mode
|
2023-05-25 02:42:32 +00:00
|
|
|
combo_date_auto_select_mode = ttk.Combobox(frame_group_tixcraft, state="readonly", width=30)
|
2019-10-01 17:52:13 +00:00
|
|
|
combo_date_auto_select_mode['values']= (CONST_FROM_TOP_TO_BOTTOM, CONST_FROM_BOTTOM_TO_TOP)
|
2023-05-24 07:17:11 +00:00
|
|
|
combo_date_auto_select_mode.set(config_dict["tixcraft"]["date_auto_select"]["mode"])
|
2019-10-01 17:52:13 +00:00
|
|
|
combo_date_auto_select_mode.grid(column=1, row=date_auto_select_mode_index, sticky = W)
|
|
|
|
|
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global date_keyword_index
|
|
|
|
date_keyword_index = group_row_count
|
|
|
|
|
|
|
|
global lbl_date_keyword
|
2022-11-11 16:46:36 +00:00
|
|
|
lbl_date_keyword = Label(frame_group_tixcraft, text=translate[language_code]['date_keyword'])
|
2019-10-01 17:52:13 +00:00
|
|
|
lbl_date_keyword.grid(column=0, row=date_keyword_index, sticky = E)
|
|
|
|
|
|
|
|
global txt_date_keyword
|
2023-05-24 07:17:11 +00:00
|
|
|
txt_date_keyword_value = StringVar(frame_group_tixcraft, value=config_dict["tixcraft"]["date_auto_select"]["date_keyword"].strip())
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_date_keyword = Entry(frame_group_tixcraft, width=30, textvariable = txt_date_keyword_value)
|
2019-10-01 17:52:13 +00:00
|
|
|
txt_date_keyword.grid(column=1, row=date_keyword_index, sticky = W)
|
|
|
|
|
|
|
|
group_row_count+=1
|
|
|
|
|
2023-01-12 08:51:05 +00:00
|
|
|
global lbl_pass_date_is_sold_out
|
|
|
|
lbl_pass_date_is_sold_out = Label(frame_group_tixcraft, text=translate[language_code]['pass_date_is_sold_out'])
|
|
|
|
lbl_pass_date_is_sold_out.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_pass_date_is_sold_out
|
|
|
|
chk_state_pass_date_is_sold_out = BooleanVar()
|
2023-05-24 07:17:11 +00:00
|
|
|
chk_state_pass_date_is_sold_out.set(config_dict["tixcraft"]["pass_date_is_sold_out"])
|
2023-01-12 08:51:05 +00:00
|
|
|
|
|
|
|
global chk_pass_date_is_sold_out
|
|
|
|
chk_pass_date_is_sold_out = Checkbutton(frame_group_tixcraft, text=translate[language_code]['enable'], variable=chk_state_pass_date_is_sold_out)
|
|
|
|
chk_pass_date_is_sold_out.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global lbl_auto_reload_coming_soon_page
|
|
|
|
lbl_auto_reload_coming_soon_page = Label(frame_group_tixcraft, text=translate[language_code]['auto_reload_coming_soon_page'])
|
|
|
|
lbl_auto_reload_coming_soon_page.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_auto_reload_coming_soon_page
|
|
|
|
chk_state_auto_reload_coming_soon_page = BooleanVar()
|
2023-05-24 07:17:11 +00:00
|
|
|
chk_state_auto_reload_coming_soon_page.set(config_dict["tixcraft"]["auto_reload_coming_soon_page"])
|
2023-01-12 08:51:05 +00:00
|
|
|
|
|
|
|
global chk_auto_reload_coming_soon_page
|
|
|
|
chk_auto_reload_coming_soon_page = Checkbutton(frame_group_tixcraft, text=translate[language_code]['enable'], variable=chk_state_auto_reload_coming_soon_page)
|
|
|
|
chk_auto_reload_coming_soon_page.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
# final flush.
|
|
|
|
global frame_group_tixcraft_index
|
|
|
|
frame_group_tixcraft_index = row_count
|
|
|
|
#PS: don't need show when onload(), because show/hide block will load again.
|
|
|
|
#frame_group_tixcraft.grid(column=0, row=row_count, sticky = W, padx=UI_PADDING_X)
|
2019-10-27 01:31:22 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
row_count += 1
|
2019-10-27 01:31:22 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
showHideBlocks()
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
# for area block.
|
|
|
|
global frame_group_area
|
|
|
|
frame_group_area = Frame(root)
|
|
|
|
group_row_count = 0
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
global lbl_area_auto_select
|
|
|
|
lbl_area_auto_select = Label(frame_group_area, text=translate[language_code]['area_auto_select'])
|
|
|
|
lbl_area_auto_select.grid(column=0, row=group_row_count, sticky = E)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
global chk_state_area_auto_select
|
|
|
|
chk_state_area_auto_select = BooleanVar()
|
|
|
|
chk_state_area_auto_select.set(config_dict["area_auto_select"]["enable"])
|
2023-02-11 05:36:27 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
global chk_area_auto_select
|
|
|
|
chk_area_auto_select = Checkbutton(frame_group_area, text=translate[language_code]['enable'], variable=chk_state_area_auto_select, command=callbackAreaAutoOnChange)
|
|
|
|
chk_area_auto_select.grid(column=1, row=group_row_count, sticky = W)
|
2023-02-11 05:36:27 +00:00
|
|
|
|
2021-03-21 06:14:20 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
global area_auto_select_mode_index
|
|
|
|
area_auto_select_mode_index = group_row_count
|
2022-11-09 17:56:12 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
global lbl_area_auto_select_mode
|
|
|
|
lbl_area_auto_select_mode = Label(frame_group_area, text=translate[language_code]['area_auto_select'])
|
|
|
|
lbl_area_auto_select_mode.grid(column=0, row=area_auto_select_mode_index, sticky = E)
|
2023-02-11 05:36:27 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
global combo_area_auto_select_mode
|
2023-05-25 02:42:32 +00:00
|
|
|
combo_area_auto_select_mode = ttk.Combobox(frame_group_area, state="readonly", width=30)
|
2023-05-24 07:17:11 +00:00
|
|
|
combo_area_auto_select_mode['values']= CONST_SELECT_OPTIONS_DEFAULT
|
|
|
|
combo_area_auto_select_mode.set(config_dict["area_auto_select"]["mode"])
|
|
|
|
combo_area_auto_select_mode.grid(column=1, row=area_auto_select_mode_index, sticky = W)
|
2023-02-11 05:36:27 +00:00
|
|
|
|
2022-11-09 17:56:12 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
global lbl_area_keyword
|
|
|
|
lbl_area_keyword = Label(frame_group_area, text=translate[language_code]['area_keyword'])
|
|
|
|
lbl_area_keyword.grid(column=0, row=group_row_count, sticky = E+N)
|
2022-11-09 17:56:12 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
global txt_area_keyword
|
|
|
|
txt_area_keyword = Text(frame_group_area, width=30, height=4)
|
|
|
|
txt_area_keyword.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
txt_area_keyword.insert("1.0", config_dict["area_auto_select"]["area_keyword"].strip())
|
2022-11-09 17:56:12 +00:00
|
|
|
|
2023-06-15 09:58:35 +00:00
|
|
|
group_row_count+=1
|
2022-11-09 17:56:12 +00:00
|
|
|
|
2023-03-21 17:33:12 +00:00
|
|
|
global lbl_area_keyword_exclude
|
2023-05-24 07:17:11 +00:00
|
|
|
lbl_area_keyword_exclude = Label(frame_group_area, text=translate[language_code]['area_keyword_exclude'])
|
2023-06-15 09:58:35 +00:00
|
|
|
lbl_area_keyword_exclude.grid(column=0, row=group_row_count, sticky = E+N)
|
2023-03-21 17:33:12 +00:00
|
|
|
|
|
|
|
global txt_area_keyword_exclude
|
2023-05-24 07:17:11 +00:00
|
|
|
txt_area_keyword_exclude = Text(frame_group_area, width=30, height=4)
|
2023-06-15 09:58:35 +00:00
|
|
|
txt_area_keyword_exclude.grid(column=1, row=group_row_count, sticky = W)
|
2023-05-24 07:17:11 +00:00
|
|
|
txt_area_keyword_exclude.insert("1.0", config_dict["area_auto_select"]["area_keyword_exclude"].strip())
|
2022-12-27 15:38:13 +00:00
|
|
|
|
2023-06-15 09:58:35 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
global lbl_area_keyword_usage
|
|
|
|
lbl_area_keyword_usage = Label(frame_group_area, text=translate[language_code]['area_keyword_usage'])
|
2023-06-15 09:58:35 +00:00
|
|
|
lbl_area_keyword_usage.grid(column=1, row=group_row_count, sticky = W)
|
2023-02-17 16:54:16 +00:00
|
|
|
|
2023-06-15 09:58:35 +00:00
|
|
|
# flush
|
2023-05-24 07:17:11 +00:00
|
|
|
frame_group_area.grid(column=0, row=row_count, sticky = W, padx=UI_PADDING_X)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
showHideAreaBlocks()
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
def AdvancedTab(root, config_dict, language_code, UI_PADDING_X):
|
|
|
|
row_count = 0
|
|
|
|
|
|
|
|
frame_group_header = Frame(root)
|
|
|
|
group_row_count = 0
|
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
# for advanced
|
2022-11-16 15:43:53 +00:00
|
|
|
print("==[advanced]==")
|
2023-01-12 08:51:05 +00:00
|
|
|
print("browser", config_dict['browser'])
|
|
|
|
print("language", config_dict['language'])
|
2023-01-23 13:32:47 +00:00
|
|
|
print(config_dict["advanced"])
|
2022-11-16 15:43:53 +00:00
|
|
|
|
|
|
|
# assign default value.
|
2023-05-26 04:43:18 +00:00
|
|
|
captcha_sound_filename = config_dict["advanced"]["play_captcha_sound"]["filename"].strip()
|
2022-11-16 15:43:53 +00:00
|
|
|
if captcha_sound_filename is None:
|
|
|
|
captcha_sound_filename = ""
|
|
|
|
if len(captcha_sound_filename)==0:
|
|
|
|
captcha_sound_filename = captcha_sound_filename_default
|
|
|
|
|
2023-01-12 08:51:05 +00:00
|
|
|
global lbl_browser
|
|
|
|
lbl_browser = Label(frame_group_header, text=translate[language_code]['browser'])
|
|
|
|
lbl_browser.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global combo_browser
|
2023-05-25 02:42:32 +00:00
|
|
|
combo_browser = ttk.Combobox(frame_group_header, state="readonly", width=30)
|
2023-06-13 05:35:53 +00:00
|
|
|
combo_browser['values']= ("chrome","firefox","edge","safari","brave")
|
2023-01-12 08:51:05 +00:00
|
|
|
combo_browser.set(config_dict['browser'])
|
|
|
|
combo_browser.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global lbl_language
|
|
|
|
lbl_language = Label(frame_group_header, text=translate[language_code]['language'])
|
|
|
|
lbl_language.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global combo_language
|
2023-05-25 02:42:32 +00:00
|
|
|
combo_language = ttk.Combobox(frame_group_header, state="readonly", width=30)
|
2023-01-12 08:51:05 +00:00
|
|
|
combo_language['values']= ("English","繁體中文","簡体中文","日本語")
|
|
|
|
combo_language.set(config_dict['language'])
|
|
|
|
combo_language.bind("<<ComboboxSelected>>", callbackLanguageOnChange)
|
|
|
|
combo_language.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
2023-01-13 19:01:47 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global lbl_ocr_captcha_image_source
|
|
|
|
lbl_ocr_captcha_image_source = Label(frame_group_header, text=translate[language_code]['ocr_captcha_image_source'])
|
|
|
|
lbl_ocr_captcha_image_source.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global combo_ocr_captcha_image_source
|
2023-05-25 02:42:32 +00:00
|
|
|
combo_ocr_captcha_image_source = ttk.Combobox(frame_group_header, state="readonly", width=30)
|
2023-02-12 03:02:16 +00:00
|
|
|
combo_ocr_captcha_image_source['values']= (CONST_OCR_CAPTCH_IMAGE_SOURCE_NON_BROWSER, CONST_OCR_CAPTCH_IMAGE_SOURCE_CANVAS)
|
2023-01-13 19:01:47 +00:00
|
|
|
combo_ocr_captcha_image_source.set(config_dict["ocr_captcha"]["image_source"])
|
|
|
|
combo_ocr_captcha_image_source.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
2023-02-12 03:02:16 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global lbl_webdriver_type
|
|
|
|
lbl_webdriver_type = Label(frame_group_header, text=translate[language_code]['webdriver_type'])
|
|
|
|
lbl_webdriver_type.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global combo_webdriver_type
|
2023-05-25 02:42:32 +00:00
|
|
|
combo_webdriver_type = ttk.Combobox(frame_group_header, state="readonly", width=30)
|
2023-02-12 03:02:16 +00:00
|
|
|
combo_webdriver_type['values']= (CONST_WEBDRIVER_TYPE_SELENIUM, CONST_WEBDRIVER_TYPE_UC)
|
|
|
|
combo_webdriver_type.set(config_dict["webdriver_type"])
|
|
|
|
combo_webdriver_type.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
group_row_count +=1
|
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
global lbl_play_captcha_sound
|
|
|
|
lbl_play_captcha_sound = Label(frame_group_header, text=translate[language_code]['play_captcha_sound'])
|
|
|
|
lbl_play_captcha_sound.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_play_captcha_sound
|
|
|
|
chk_state_play_captcha_sound = BooleanVar()
|
2023-05-26 04:43:18 +00:00
|
|
|
chk_state_play_captcha_sound.set(config_dict["advanced"]["play_captcha_sound"]["enable"])
|
2022-11-16 15:43:53 +00:00
|
|
|
|
|
|
|
global chk_play_captcha_sound
|
|
|
|
chk_play_captcha_sound = Checkbutton(frame_group_header, text=translate[language_code]['enable'], variable=chk_state_play_captcha_sound)
|
|
|
|
chk_play_captcha_sound.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_captcha_sound_filename
|
|
|
|
lbl_captcha_sound_filename = Label(frame_group_header, text=translate[language_code]['captcha_sound_filename'])
|
|
|
|
lbl_captcha_sound_filename.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_captcha_sound_filename
|
|
|
|
txt_captcha_sound_filename_value = StringVar(frame_group_header, value=captcha_sound_filename)
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_captcha_sound_filename = Entry(frame_group_header, width=30, textvariable = txt_captcha_sound_filename_value)
|
2022-11-16 15:43:53 +00:00
|
|
|
txt_captcha_sound_filename.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
2022-11-17 18:17:19 +00:00
|
|
|
icon_play_filename = "icon_play_1.gif"
|
2022-11-16 15:43:53 +00:00
|
|
|
icon_play_img = PhotoImage(file=icon_play_filename)
|
|
|
|
|
|
|
|
lbl_icon_play = Label(frame_group_header, image=icon_play_img, cursor="hand2")
|
|
|
|
lbl_icon_play.image = icon_play_img
|
2023-02-09 17:23:46 +00:00
|
|
|
lbl_icon_play.grid(column=2, row=group_row_count)
|
2022-11-16 15:43:53 +00:00
|
|
|
lbl_icon_play.bind("<Button-1>", lambda e: btn_preview_sound_clicked())
|
|
|
|
|
2022-11-17 18:17:19 +00:00
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_adblock_plus
|
|
|
|
lbl_adblock_plus = Label(frame_group_header, text=translate[language_code]['adblock_plus_enable'])
|
|
|
|
lbl_adblock_plus.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_adblock_plus
|
|
|
|
chk_state_adblock_plus = BooleanVar()
|
2023-05-26 04:43:18 +00:00
|
|
|
chk_state_adblock_plus.set(config_dict["advanced"]["adblock_plus_enable"])
|
2022-11-17 18:17:19 +00:00
|
|
|
|
|
|
|
global chk_adblock_plus
|
|
|
|
chk_adblock_plus = Checkbutton(frame_group_header, text=translate[language_code]['enable'], variable=chk_state_adblock_plus)
|
|
|
|
chk_adblock_plus.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_adblock_plus_settings
|
|
|
|
lbl_adblock_plus_settings = Label(frame_group_header, text=translate[language_code]['adblock_plus_settings'])
|
|
|
|
lbl_adblock_plus_settings.grid(column=0, row=group_row_count, sticky = E+N)
|
|
|
|
|
2023-05-24 07:17:11 +00:00
|
|
|
txt_adblock_plus_settings = Text(frame_group_header, width=30, height=4)
|
2022-11-17 18:17:19 +00:00
|
|
|
txt_adblock_plus_settings.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
txt_adblock_plus_settings.insert("1.0", CONST_ADBLOCK_PLUS_ADVANCED_FILTER_DEFAULT)
|
|
|
|
|
|
|
|
icon_copy_filename = "icon_copy_2.gif"
|
|
|
|
icon_copy_img = PhotoImage(file=icon_copy_filename)
|
|
|
|
|
|
|
|
lbl_icon_copy = Label(frame_group_header, image=icon_copy_img, cursor="hand2")
|
|
|
|
lbl_icon_copy.image = icon_copy_img
|
2023-02-09 17:23:46 +00:00
|
|
|
lbl_icon_copy.grid(column=2, row=group_row_count, sticky = W+N)
|
2022-11-17 18:17:19 +00:00
|
|
|
lbl_icon_copy.bind("<Button-1>", lambda e: btn_copy_clicked())
|
|
|
|
|
2023-02-09 17:23:46 +00:00
|
|
|
group_row_count +=1
|
|
|
|
|
2023-05-26 04:43:18 +00:00
|
|
|
global lbl_auto_reload_page_interval
|
|
|
|
lbl_auto_reload_page_interval = Label(frame_group_header, text=translate[language_code]['auto_reload_page_interval'])
|
|
|
|
lbl_auto_reload_page_interval.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_auto_reload_page_interval
|
|
|
|
txt_auto_reload_page_interval_value = StringVar(frame_group_header, value=config_dict["advanced"]["auto_reload_page_interval"])
|
|
|
|
txt_auto_reload_page_interval = Entry(frame_group_header, width=30, textvariable = txt_auto_reload_page_interval_value)
|
|
|
|
txt_auto_reload_page_interval.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
2023-06-13 10:16:28 +00:00
|
|
|
global lbl_auto_reload_random_delay
|
|
|
|
lbl_auto_reload_random_delay = Label(frame_group_header, text=translate[language_code]['auto_reload_random_delay'])
|
|
|
|
lbl_auto_reload_random_delay.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_auto_reload_random_delay
|
|
|
|
chk_state_auto_reload_random_delay = BooleanVar()
|
|
|
|
chk_state_auto_reload_random_delay.set(config_dict["advanced"]["auto_reload_random_delay"])
|
|
|
|
|
|
|
|
global chk_auto_reload_random_delay
|
|
|
|
chk_auto_reload_random_delay = Checkbutton(frame_group_header, text=translate[language_code]['enable'], variable=chk_state_auto_reload_random_delay)
|
|
|
|
chk_auto_reload_random_delay.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
2023-05-17 00:06:08 +00:00
|
|
|
global lbl_adjacent_seat
|
|
|
|
lbl_adjacent_seat = Label(frame_group_header, text=translate[language_code]['disable_adjacent_seat'])
|
|
|
|
lbl_adjacent_seat.grid(column=0, row=group_row_count, sticky = E)
|
2023-02-09 17:23:46 +00:00
|
|
|
|
2023-05-17 00:06:08 +00:00
|
|
|
global chk_state_adjacent_seat
|
|
|
|
chk_state_adjacent_seat = BooleanVar()
|
|
|
|
chk_state_adjacent_seat.set(config_dict["advanced"]["disable_adjacent_seat"])
|
2023-02-09 17:50:34 +00:00
|
|
|
|
2023-05-17 00:06:08 +00:00
|
|
|
global chk_adjacent_seat
|
|
|
|
chk_adjacent_seat = Checkbutton(frame_group_header, text=translate[language_code]['enable'], variable=chk_state_adjacent_seat)
|
|
|
|
chk_adjacent_seat.grid(column=1, row=group_row_count, sticky = W)
|
2023-02-09 17:23:46 +00:00
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global lbl_headless
|
|
|
|
lbl_headless = Label(frame_group_header, text=translate[language_code]['headless'])
|
|
|
|
lbl_headless.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_headless
|
|
|
|
chk_state_headless = BooleanVar()
|
|
|
|
chk_state_headless.set(config_dict['advanced']["headless"])
|
|
|
|
|
|
|
|
global chk_headless
|
|
|
|
chk_headless = Checkbutton(frame_group_header, text=translate[language_code]['enable'], variable=chk_state_headless)
|
|
|
|
chk_headless.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
2023-03-07 14:30:30 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global lbl_verbose
|
|
|
|
lbl_verbose = Label(frame_group_header, text=translate[language_code]['verbose'])
|
|
|
|
lbl_verbose.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_verbose
|
|
|
|
chk_state_verbose = BooleanVar()
|
|
|
|
chk_state_verbose.set(config_dict['advanced']["verbose"])
|
|
|
|
|
|
|
|
global chk_verbose
|
|
|
|
chk_verbose = Checkbutton(frame_group_header, text=translate[language_code]['enable'], variable=chk_state_verbose)
|
|
|
|
chk_verbose.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
2023-06-15 09:58:35 +00:00
|
|
|
group_row_count +=1
|
|
|
|
|
2023-06-19 09:31:57 +00:00
|
|
|
global lbl_ocr_captcha
|
|
|
|
lbl_ocr_captcha = Label(frame_group_header, text=translate[language_code]['ocr_captcha'])
|
|
|
|
lbl_ocr_captcha.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_ocr_captcha
|
|
|
|
chk_state_ocr_captcha = BooleanVar()
|
|
|
|
chk_state_ocr_captcha.set(config_dict['ocr_captcha']["enable"])
|
|
|
|
|
|
|
|
global chk_ocr_captcha
|
|
|
|
chk_ocr_captcha = Checkbutton(frame_group_header, text=translate[language_code]['enable'], variable=chk_state_ocr_captcha, command=showHideOcrCaptchaWithSubmit)
|
|
|
|
chk_ocr_captcha.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global ocr_captcha_force_submit_index
|
|
|
|
ocr_captcha_force_submit_index = group_row_count
|
|
|
|
|
|
|
|
global lbl_ocr_captcha_force_submit
|
|
|
|
lbl_ocr_captcha_force_submit = Label(frame_group_header, text=translate[language_code]['ocr_captcha_force_submit'])
|
|
|
|
lbl_ocr_captcha_force_submit.grid(column=0, row=ocr_captcha_force_submit_index, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_ocr_captcha_force_submit
|
|
|
|
chk_state_ocr_captcha_force_submit = BooleanVar()
|
|
|
|
chk_state_ocr_captcha_force_submit.set(config_dict['ocr_captcha']["force_submit"])
|
|
|
|
|
|
|
|
global chk_ocr_captcha_force_submit
|
|
|
|
chk_ocr_captcha_force_submit = Checkbutton(frame_group_header, text=translate[language_code]['enable'], variable=chk_state_ocr_captcha_force_submit)
|
|
|
|
chk_ocr_captcha_force_submit.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
frame_group_header.grid(column=0, row=row_count, padx=UI_PADDING_X)
|
|
|
|
|
|
|
|
showHideOcrCaptchaWithSubmit()
|
|
|
|
|
|
|
|
def VerificationTab(root, config_dict, language_code, UI_PADDING_X):
|
|
|
|
row_count = 0
|
|
|
|
|
|
|
|
frame_group_header = Frame(root)
|
|
|
|
group_row_count = 0
|
|
|
|
|
|
|
|
global lbl_user_guess_string_description
|
|
|
|
lbl_user_guess_string_description = Label(frame_group_header, text=translate[language_code]['user_guess_string'])
|
|
|
|
lbl_user_guess_string_description.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global lbl_user_guess_string
|
|
|
|
lbl_user_guess_string = Label(frame_group_header, text=translate[language_code]['local_dictionary'])
|
|
|
|
lbl_user_guess_string.grid(column=0, row=group_row_count, sticky = E+N)
|
|
|
|
|
|
|
|
global txt_user_guess_string
|
|
|
|
txt_user_guess_string = Text(frame_group_header, width=30, height=4)
|
|
|
|
txt_user_guess_string.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
txt_user_guess_string.insert("1.0", config_dict["advanced"]["user_guess_string"].strip())
|
|
|
|
|
|
|
|
group_row_count+=1
|
|
|
|
|
2023-06-15 09:58:35 +00:00
|
|
|
global lbl_online_dictionary_url
|
|
|
|
lbl_online_dictionary_url = Label(frame_group_header, text=translate[language_code]['online_dictionary_url'])
|
2023-06-16 04:04:04 +00:00
|
|
|
lbl_online_dictionary_url.grid(column=0, row=group_row_count, sticky = E+N)
|
2023-06-15 09:58:35 +00:00
|
|
|
|
|
|
|
global txt_online_dictionary_url
|
2023-06-19 09:31:57 +00:00
|
|
|
txt_online_dictionary_url = Text(frame_group_header, width=30, height=4)
|
2023-06-15 09:58:35 +00:00
|
|
|
txt_online_dictionary_url.grid(column=1, row=group_row_count, sticky = W)
|
2023-06-16 04:04:04 +00:00
|
|
|
txt_online_dictionary_url.insert("1.0", config_dict['advanced']["online_dictionary_url"].strip())
|
2023-06-15 09:58:35 +00:00
|
|
|
|
2023-06-15 15:45:50 +00:00
|
|
|
icon_preview_text_filename = "icon_chrome_4.gif"
|
|
|
|
icon_preview_text_img = PhotoImage(file=icon_preview_text_filename)
|
|
|
|
|
|
|
|
lbl_icon_preview_text = Label(frame_group_header, image=icon_preview_text_img, cursor="hand2")
|
|
|
|
lbl_icon_preview_text.image = icon_preview_text_img
|
2023-06-16 04:04:04 +00:00
|
|
|
lbl_icon_preview_text.grid(column=2, row=group_row_count, sticky = W+N)
|
2023-06-15 15:45:50 +00:00
|
|
|
lbl_icon_preview_text.bind("<Button-1>", lambda e: btn_open_text_server_clicked())
|
|
|
|
|
2023-06-15 09:58:35 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global lbl_online_dictionary_preview
|
2023-06-19 09:31:57 +00:00
|
|
|
lbl_online_dictionary_preview = Label(frame_group_header, text=translate[language_code]['preview'])
|
|
|
|
lbl_online_dictionary_preview.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global lbl_online_dictionary_preview_data
|
|
|
|
lbl_online_dictionary_preview_data = Label(frame_group_header, text="")
|
|
|
|
lbl_online_dictionary_preview_data.grid(column=1, row=group_row_count, sticky = W)
|
2023-06-15 09:58:35 +00:00
|
|
|
|
2023-04-28 04:04:21 +00:00
|
|
|
group_row_count+=1
|
|
|
|
|
|
|
|
global lbl_auto_guess_options
|
|
|
|
lbl_auto_guess_options = Label(frame_group_header, text=translate[language_code]['auto_guess_options'])
|
|
|
|
lbl_auto_guess_options.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global chk_state_auto_guess_options
|
|
|
|
chk_state_auto_guess_options = BooleanVar()
|
|
|
|
chk_state_auto_guess_options.set(config_dict["advanced"]["auto_guess_options"])
|
|
|
|
|
|
|
|
global chk_auto_guess_options
|
|
|
|
chk_auto_guess_options = Checkbutton(frame_group_header, text=translate[language_code]['enable'], variable=chk_state_auto_guess_options)
|
|
|
|
chk_auto_guess_options.grid(column=1, row=group_row_count, sticky = W)
|
2023-03-21 17:33:12 +00:00
|
|
|
|
|
|
|
group_row_count+=1
|
|
|
|
|
2023-02-11 05:36:27 +00:00
|
|
|
frame_group_header.grid(column=0, row=row_count, padx=UI_PADDING_X)
|
|
|
|
|
|
|
|
def AutofillTab(root, config_dict, language_code, UI_PADDING_X):
|
|
|
|
row_count = 0
|
|
|
|
|
|
|
|
frame_group_header = Frame(root)
|
|
|
|
group_row_count = 0
|
|
|
|
|
2023-02-22 16:05:44 +00:00
|
|
|
global lbl_tixcraft_sid
|
|
|
|
lbl_tixcraft_sid = Label(frame_group_header, text=translate[language_code]['tixcraft_sid'])
|
|
|
|
lbl_tixcraft_sid.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_tixcraft_sid
|
|
|
|
txt_tixcraft_sid_value = StringVar(frame_group_header, value=decryptMe(config_dict["advanced"]["tixcraft_sid"].strip()))
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_tixcraft_sid = Entry(frame_group_header, width=30, textvariable = txt_tixcraft_sid_value, show="*")
|
2023-02-22 16:05:44 +00:00
|
|
|
txt_tixcraft_sid.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
2023-02-26 08:39:37 +00:00
|
|
|
global lbl_ibon_ibonqware
|
|
|
|
lbl_ibon_ibonqware = Label(frame_group_header, text=translate[language_code]['ibon_ibonqware'])
|
|
|
|
lbl_ibon_ibonqware.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_ibon_ibonqware
|
|
|
|
txt_ibon_ibonqware_value = StringVar(frame_group_header, value=decryptMe(config_dict["advanced"]["ibonqware"].strip()))
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_ibon_ibonqware = Entry(frame_group_header, width=30, textvariable = txt_ibon_ibonqware_value, show="*")
|
2023-02-26 08:39:37 +00:00
|
|
|
txt_ibon_ibonqware.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
2023-02-11 05:36:27 +00:00
|
|
|
global lbl_facebook_account
|
|
|
|
lbl_facebook_account = Label(frame_group_header, text=translate[language_code]['facebook_account'])
|
|
|
|
lbl_facebook_account.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_facebook_account
|
|
|
|
txt_facebook_account_value = StringVar(frame_group_header, value=config_dict["advanced"]["facebook_account"].strip())
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_facebook_account = Entry(frame_group_header, width=30, textvariable = txt_facebook_account_value)
|
2023-02-11 05:36:27 +00:00
|
|
|
txt_facebook_account.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
2023-02-09 17:23:46 +00:00
|
|
|
|
2023-02-11 05:36:27 +00:00
|
|
|
global lbl_facebook_password
|
|
|
|
lbl_facebook_password = Label(frame_group_header, text=translate[language_code]['facebook_password'])
|
|
|
|
lbl_facebook_password.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_facebook_password
|
|
|
|
txt_facebook_password_value = StringVar(frame_group_header, value=decryptMe(config_dict["advanced"]["facebook_password"].strip()))
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_facebook_password = Entry(frame_group_header, width=30, textvariable = txt_facebook_password_value, show="*")
|
2023-02-11 05:36:27 +00:00
|
|
|
txt_facebook_password.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_kktix_account
|
|
|
|
lbl_kktix_account = Label(frame_group_header, text=translate[language_code]['kktix_account'])
|
|
|
|
lbl_kktix_account.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_kktix_account
|
|
|
|
txt_kktix_account_value = StringVar(frame_group_header, value=config_dict["advanced"]["kktix_account"].strip())
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_kktix_account = Entry(frame_group_header, width=30, textvariable = txt_kktix_account_value)
|
2023-02-11 05:36:27 +00:00
|
|
|
txt_kktix_account.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_kktix_password
|
|
|
|
lbl_kktix_password = Label(frame_group_header, text=translate[language_code]['kktix_password'])
|
|
|
|
lbl_kktix_password.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_kktix_password
|
|
|
|
txt_kktix_password_value = StringVar(frame_group_header, value=decryptMe(config_dict["advanced"]["kktix_password"].strip()))
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_kktix_password = Entry(frame_group_header, width=30, textvariable = txt_kktix_password_value, show="*")
|
2023-02-11 05:36:27 +00:00
|
|
|
txt_kktix_password.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_cityline_account
|
|
|
|
lbl_cityline_account = Label(frame_group_header, text=translate[language_code]['cityline_account'])
|
|
|
|
lbl_cityline_account.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_cityline_account
|
|
|
|
txt_cityline_account_value = StringVar(frame_group_header, value=config_dict["advanced"]["cityline_account"].strip())
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_cityline_account = Entry(frame_group_header, width=30, textvariable = txt_cityline_account_value)
|
2023-02-11 05:36:27 +00:00
|
|
|
txt_cityline_account.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_cityline_password
|
|
|
|
lbl_cityline_password = Label(frame_group_header, text=translate[language_code]['cityline_password'])
|
|
|
|
lbl_cityline_password.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_cityline_password
|
|
|
|
txt_cityline_password_value = StringVar(frame_group_header, value=decryptMe(config_dict["advanced"]["cityline_password"].strip()))
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_cityline_password = Entry(frame_group_header, width=30, textvariable = txt_cityline_password_value, show="*")
|
2023-02-11 05:36:27 +00:00
|
|
|
txt_cityline_password.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_urbtix_account
|
|
|
|
lbl_urbtix_account = Label(frame_group_header, text=translate[language_code]['urbtix_account'])
|
|
|
|
lbl_urbtix_account.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_urbtix_account
|
|
|
|
txt_urbtix_account_value = StringVar(frame_group_header, value=config_dict["advanced"]["urbtix_account"].strip())
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_urbtix_account = Entry(frame_group_header, width=30, textvariable = txt_urbtix_account_value)
|
2023-02-11 05:36:27 +00:00
|
|
|
txt_urbtix_account.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_urbtix_password
|
|
|
|
lbl_urbtix_password = Label(frame_group_header, text=translate[language_code]['urbtix_password'])
|
|
|
|
lbl_urbtix_password.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_urbtix_password
|
|
|
|
txt_urbtix_password_value = StringVar(frame_group_header, value=decryptMe(config_dict["advanced"]["urbtix_password"].strip()))
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_urbtix_password = Entry(frame_group_header, width=30, textvariable = txt_urbtix_password_value, show="*")
|
2023-02-11 05:36:27 +00:00
|
|
|
txt_urbtix_password.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
2023-02-12 09:49:55 +00:00
|
|
|
global lbl_hkticketing_account
|
|
|
|
lbl_hkticketing_account = Label(frame_group_header, text=translate[language_code]['hkticketing_account'])
|
|
|
|
lbl_hkticketing_account.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_hkticketing_account
|
|
|
|
txt_hkticketing_account_value = StringVar(frame_group_header, value=config_dict["advanced"]["hkticketing_account"].strip())
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_hkticketing_account = Entry(frame_group_header, width=30, textvariable = txt_hkticketing_account_value)
|
2023-02-12 09:49:55 +00:00
|
|
|
txt_hkticketing_account.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_hkticketing_password
|
|
|
|
lbl_hkticketing_password = Label(frame_group_header, text=translate[language_code]['hkticketing_password'])
|
|
|
|
lbl_hkticketing_password.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_hkticketing_password
|
|
|
|
txt_hkticketing_password_value = StringVar(frame_group_header, value=decryptMe(config_dict["advanced"]["hkticketing_password"].strip()))
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_hkticketing_password = Entry(frame_group_header, width=30, textvariable = txt_hkticketing_password_value, show="*")
|
2023-02-12 09:49:55 +00:00
|
|
|
txt_hkticketing_password.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
2023-02-11 05:36:27 +00:00
|
|
|
global lbl_kham_account
|
|
|
|
lbl_kham_account = Label(frame_group_header, text=translate[language_code]['kham_account'])
|
|
|
|
lbl_kham_account.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_kham_account
|
|
|
|
txt_kham_account_value = StringVar(frame_group_header, value=config_dict["advanced"]["kham_account"].strip())
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_kham_account = Entry(frame_group_header, width=30, textvariable = txt_kham_account_value)
|
2023-02-11 05:36:27 +00:00
|
|
|
txt_kham_account.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_kham_password
|
|
|
|
lbl_kham_password = Label(frame_group_header, text=translate[language_code]['kham_password'])
|
|
|
|
lbl_kham_password.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
global txt_kham_password
|
|
|
|
txt_kham_password_value = StringVar(frame_group_header, value=decryptMe(config_dict["advanced"]["kham_password"].strip()))
|
2023-05-25 02:42:32 +00:00
|
|
|
txt_kham_password = Entry(frame_group_header, width=30, textvariable = txt_kham_password_value, show="*")
|
2023-02-11 05:36:27 +00:00
|
|
|
txt_kham_password.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_save_password_alert
|
|
|
|
lbl_save_password_alert = Label(frame_group_header, fg="red", text=translate[language_code]['save_password_alert'])
|
|
|
|
lbl_save_password_alert.grid(column=0, row=group_row_count, columnspan=2, sticky = E)
|
2023-02-09 17:23:46 +00:00
|
|
|
|
2022-11-16 17:52:38 +00:00
|
|
|
frame_group_header.grid(column=0, row=row_count, padx=UI_PADDING_X)
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2023-06-16 16:04:55 +00:00
|
|
|
def resetful_api_timer():
|
2023-03-12 16:34:59 +00:00
|
|
|
while True:
|
2023-06-15 09:58:35 +00:00
|
|
|
btn_preview_text_clicked()
|
2023-06-16 04:04:04 +00:00
|
|
|
time.sleep(0.2)
|
2023-03-12 16:34:59 +00:00
|
|
|
|
2023-06-16 16:04:55 +00:00
|
|
|
def settings_timer():
|
|
|
|
while True:
|
|
|
|
update_maxbot_runtime_status()
|
|
|
|
time.sleep(0.6)
|
|
|
|
|
2023-03-12 17:08:23 +00:00
|
|
|
def update_maxbot_runtime_status():
|
2023-03-12 16:34:59 +00:00
|
|
|
is_paused = False
|
|
|
|
if os.path.exists(CONST_MAXBOT_INT28_FILE):
|
|
|
|
is_paused = True
|
|
|
|
|
|
|
|
try:
|
2023-03-12 17:08:23 +00:00
|
|
|
global combo_language
|
|
|
|
new_language = combo_language.get().strip()
|
|
|
|
language_code=get_language_code_by_name(new_language)
|
|
|
|
|
2023-03-12 16:34:59 +00:00
|
|
|
global lbl_maxbot_status_data
|
|
|
|
maxbot_status = translate[language_code]['status_enabled']
|
|
|
|
if is_paused:
|
|
|
|
maxbot_status = translate[language_code]['status_paused']
|
|
|
|
|
|
|
|
lbl_maxbot_status_data.config(text=maxbot_status)
|
|
|
|
|
|
|
|
global btn_idle
|
|
|
|
global btn_resume
|
|
|
|
|
|
|
|
if not is_paused:
|
|
|
|
btn_idle.grid(column=1, row=0)
|
|
|
|
btn_resume.grid_forget()
|
|
|
|
else:
|
|
|
|
btn_resume.grid(column=2, row=0)
|
|
|
|
btn_idle.grid_forget()
|
|
|
|
|
|
|
|
global lbl_maxbot_last_url_data
|
|
|
|
last_url = read_last_url_from_file()
|
2023-03-15 15:40:05 +00:00
|
|
|
if len(last_url) > 60:
|
|
|
|
last_url=last_url[:60]+"..."
|
2023-03-12 16:34:59 +00:00
|
|
|
lbl_maxbot_last_url_data.config(text=last_url)
|
|
|
|
except Exception as exc:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def RuntimeTab(root, config_dict, language_code, UI_PADDING_X):
|
|
|
|
row_count = 0
|
|
|
|
|
|
|
|
frame_group_header = Frame(root)
|
|
|
|
group_row_count = 0
|
|
|
|
|
|
|
|
maxbot_status = ""
|
|
|
|
global lbl_maxbot_status
|
|
|
|
lbl_maxbot_status = Label(frame_group_header, text=translate[language_code]['running_status'])
|
|
|
|
lbl_maxbot_status.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
|
|
|
|
frame_maxbot_interrupt = Frame(frame_group_header)
|
|
|
|
|
|
|
|
global lbl_maxbot_status_data
|
|
|
|
lbl_maxbot_status_data = Label(frame_maxbot_interrupt, text=maxbot_status)
|
|
|
|
lbl_maxbot_status_data.grid(column=0, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
global btn_idle
|
|
|
|
global btn_resume
|
|
|
|
|
|
|
|
btn_idle = ttk.Button(frame_maxbot_interrupt, text=translate[language_code]['idle'], command= lambda: btn_idle_clicked(language_code) )
|
|
|
|
btn_idle.grid(column=1, row=0)
|
|
|
|
|
|
|
|
btn_resume = ttk.Button(frame_maxbot_interrupt, text=translate[language_code]['resume'], command= lambda: btn_resume_clicked(language_code))
|
|
|
|
btn_resume.grid(column=2, row=0)
|
|
|
|
|
|
|
|
frame_maxbot_interrupt.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
global lbl_maxbot_last_url
|
|
|
|
lbl_maxbot_last_url = Label(frame_group_header, text=translate[language_code]['running_url'])
|
|
|
|
lbl_maxbot_last_url.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
last_url = ""
|
|
|
|
global lbl_maxbot_last_url_data
|
|
|
|
lbl_maxbot_last_url_data = Label(frame_group_header, text=last_url)
|
|
|
|
lbl_maxbot_last_url_data.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
|
|
|
|
frame_group_header.grid(column=0, row=row_count, padx=UI_PADDING_X)
|
2023-03-12 17:08:23 +00:00
|
|
|
update_maxbot_runtime_status()
|
2023-03-12 16:34:59 +00:00
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
def AboutTab(root, language_code):
|
|
|
|
row_count = 0
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
frame_group_header = Frame(root)
|
|
|
|
group_row_count = 0
|
2022-11-10 14:02:26 +00:00
|
|
|
|
2022-11-14 09:26:52 +00:00
|
|
|
logo_filename = "maxbot_logo2_single.ppm"
|
|
|
|
logo_img = PhotoImage(file=logo_filename)
|
|
|
|
|
|
|
|
lbl_logo = Label(frame_group_header, image=logo_img)
|
|
|
|
lbl_logo.image = logo_img
|
2022-11-13 18:34:22 +00:00
|
|
|
lbl_logo.grid(column=0, row=group_row_count, columnspan=2)
|
2022-11-10 17:19:03 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
group_row_count +=1
|
2022-11-10 14:02:26 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
global lbl_slogan
|
|
|
|
global lbl_help
|
|
|
|
global lbl_donate
|
|
|
|
global lbl_release
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
lbl_slogan = Label(frame_group_header, text=translate[language_code]['maxbot_slogan'], wraplength=400, justify="center")
|
|
|
|
lbl_slogan.grid(column=0, row=group_row_count, columnspan=2)
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
lbl_help = Label(frame_group_header, text=translate[language_code]['help'])
|
|
|
|
lbl_help.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
lbl_help_url = Label(frame_group_header, text=URL_HELP, fg="blue", cursor="hand2")
|
|
|
|
lbl_help_url.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
lbl_help_url.bind("<Button-1>", lambda e: open_url(URL_HELP))
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
lbl_donate = Label(frame_group_header, text=translate[language_code]['donate'])
|
|
|
|
lbl_donate.grid(column=0, row=group_row_count, sticky = E)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
lbl_donate_url = Label(frame_group_header, text=URL_DONATE, fg="blue", cursor="hand2")
|
|
|
|
lbl_donate_url.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
lbl_donate_url.bind("<Button-1>", lambda e: open_url(URL_DONATE))
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
lbl_release = Label(frame_group_header, text=translate[language_code]['release'])
|
|
|
|
lbl_release.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
lbl_release_url = Label(frame_group_header, text=URL_RELEASE, fg="blue", cursor="hand2")
|
|
|
|
lbl_release_url.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
lbl_release_url.bind("<Button-1>", lambda e: open_url(URL_RELEASE))
|
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
lbl_fb_fans = Label(frame_group_header, text=u'Facebook')
|
|
|
|
lbl_fb_fans.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
lbl_fb_fans_url = Label(frame_group_header, text=URL_FB, fg="blue", cursor="hand2")
|
|
|
|
lbl_fb_fans_url.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
lbl_fb_fans_url.bind("<Button-1>", lambda e: open_url(URL_FB))
|
|
|
|
|
2023-02-07 16:42:04 +00:00
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
lbl_chrome_driver = Label(frame_group_header, text=u'Chrome Driver')
|
|
|
|
lbl_chrome_driver.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
lbl_chrome_driver_url = Label(frame_group_header, text=URL_CHROME_DRIVER, fg="blue", cursor="hand2")
|
|
|
|
lbl_chrome_driver_url.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
lbl_chrome_driver_url.bind("<Button-1>", lambda e: open_url(URL_CHROME_DRIVER))
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
lbl_firefox_driver = Label(frame_group_header, text=u'Firefox Driver')
|
|
|
|
lbl_firefox_driver.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
lbl_firefox_driver_url = Label(frame_group_header, text=URL_FIREFOX_DRIVER, fg="blue", cursor="hand2")
|
|
|
|
lbl_firefox_driver_url.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
lbl_firefox_driver_url.bind("<Button-1>", lambda e: open_url(URL_FIREFOX_DRIVER))
|
|
|
|
|
|
|
|
group_row_count +=1
|
|
|
|
|
|
|
|
lbl_edge_driver = Label(frame_group_header, text=u'Edge Driver')
|
|
|
|
lbl_edge_driver.grid(column=0, row=group_row_count, sticky = E)
|
|
|
|
|
|
|
|
lbl_edge_driver_url = Label(frame_group_header, text=URL_EDGE_DRIVER, fg="blue", cursor="hand2")
|
|
|
|
lbl_edge_driver_url.grid(column=1, row=group_row_count, sticky = W)
|
|
|
|
lbl_edge_driver_url.bind("<Button-1>", lambda e: open_url(URL_EDGE_DRIVER))
|
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
frame_group_header.grid(column=0, row=row_count)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
def get_action_bar(root, language_code):
|
2022-11-16 15:43:53 +00:00
|
|
|
frame_action = Frame(root)
|
|
|
|
|
2022-11-21 19:01:04 +00:00
|
|
|
global btn_run
|
|
|
|
global btn_save
|
|
|
|
global btn_exit
|
2022-12-27 15:38:13 +00:00
|
|
|
global btn_restore_defaults
|
2023-02-26 08:39:37 +00:00
|
|
|
global btn_launcher
|
2022-11-21 19:01:04 +00:00
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
btn_run = ttk.Button(frame_action, text=translate[language_code]['run'], command= lambda: btn_run_clicked(language_code))
|
2022-11-16 15:43:53 +00:00
|
|
|
btn_run.grid(column=0, row=0)
|
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
btn_save = ttk.Button(frame_action, text=translate[language_code]['save'], command= lambda: btn_save_clicked(language_code) )
|
2022-11-16 15:43:53 +00:00
|
|
|
btn_save.grid(column=1, row=0)
|
|
|
|
|
|
|
|
btn_exit = ttk.Button(frame_action, text=translate[language_code]['exit'], command=btn_exit_clicked)
|
2022-12-27 15:38:13 +00:00
|
|
|
#btn_exit.grid(column=2, row=0)
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2023-03-03 14:05:20 +00:00
|
|
|
btn_launcher = ttk.Button(frame_action, text=translate[language_code]['config_launcher'], command= lambda: btn_launcher_clicked(language_code))
|
|
|
|
btn_launcher.grid(column=2, row=0)
|
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
btn_restore_defaults = ttk.Button(frame_action, text=translate[language_code]['restore_defaults'], command= lambda: btn_restore_defaults_clicked(language_code))
|
2023-03-03 14:05:20 +00:00
|
|
|
btn_restore_defaults.grid(column=3, row=0)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
return frame_action
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
def clearFrame(frame):
|
|
|
|
# destroy all widgets from frame
|
|
|
|
for widget in frame.winfo_children():
|
|
|
|
widget.destroy()
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
def load_GUI(root, config_dict):
|
|
|
|
clearFrame(root)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
language_code="en_us"
|
|
|
|
if not config_dict is None:
|
|
|
|
if u'language' in config_dict:
|
|
|
|
language_code = get_language_code_by_name(config_dict["language"])
|
|
|
|
|
|
|
|
row_count = 0
|
|
|
|
|
|
|
|
global tabControl
|
|
|
|
tabControl = ttk.Notebook(root)
|
|
|
|
tab1 = Frame(tabControl)
|
|
|
|
tabControl.add(tab1, text=translate[language_code]['preference'])
|
2023-02-11 05:36:27 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
tab2 = Frame(tabControl)
|
2022-11-16 15:43:53 +00:00
|
|
|
tabControl.add(tab2, text=translate[language_code]['advanced'])
|
2023-02-11 05:36:27 +00:00
|
|
|
|
2022-11-16 15:43:53 +00:00
|
|
|
tab3 = Frame(tabControl)
|
2023-06-19 09:31:57 +00:00
|
|
|
tabControl.add(tab3, text=translate[language_code]['verification_word'])
|
2023-02-11 05:36:27 +00:00
|
|
|
|
|
|
|
tab4 = Frame(tabControl)
|
2023-06-19 09:31:57 +00:00
|
|
|
tabControl.add(tab4, text=translate[language_code]['autofill'])
|
2023-03-12 16:34:59 +00:00
|
|
|
|
|
|
|
tab5 = Frame(tabControl)
|
2023-06-19 09:31:57 +00:00
|
|
|
tabControl.add(tab5, text=translate[language_code]['runtime'])
|
|
|
|
|
|
|
|
tab6 = Frame(tabControl)
|
|
|
|
tabControl.add(tab6, text=translate[language_code]['about'])
|
2023-03-12 16:34:59 +00:00
|
|
|
|
2022-11-13 18:34:22 +00:00
|
|
|
tabControl.grid(column=0, row=row_count)
|
|
|
|
tabControl.select(tab1)
|
|
|
|
|
|
|
|
row_count+=1
|
2019-10-01 17:52:13 +00:00
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
frame_action = get_action_bar(root, language_code)
|
2022-11-13 18:34:22 +00:00
|
|
|
frame_action.grid(column=0, row=row_count)
|
|
|
|
|
|
|
|
global UI_PADDING_X
|
|
|
|
PreferenctTab(tab1, config_dict, language_code, UI_PADDING_X)
|
2022-11-16 15:43:53 +00:00
|
|
|
AdvancedTab(tab2, config_dict, language_code, UI_PADDING_X)
|
2023-06-19 09:31:57 +00:00
|
|
|
VerificationTab(tab3, config_dict, language_code, UI_PADDING_X)
|
|
|
|
AutofillTab(tab4, config_dict, language_code, UI_PADDING_X)
|
|
|
|
RuntimeTab(tab5, config_dict, language_code, UI_PADDING_X)
|
|
|
|
AboutTab(tab6, language_code)
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2022-12-27 15:38:13 +00:00
|
|
|
|
|
|
|
def main():
|
|
|
|
global translate
|
|
|
|
# only need to load translate once.
|
|
|
|
translate = load_translate()
|
|
|
|
|
|
|
|
global config_filepath
|
|
|
|
global config_dict
|
|
|
|
# only need to load json file once.
|
|
|
|
config_filepath, config_dict = load_json()
|
|
|
|
|
|
|
|
global root
|
|
|
|
root = Tk()
|
|
|
|
root.title(CONST_APP_VERSION)
|
|
|
|
|
|
|
|
global UI_PADDING_X
|
|
|
|
UI_PADDING_X = 15
|
|
|
|
|
|
|
|
load_GUI(root, config_dict)
|
|
|
|
|
2023-06-19 12:55:33 +00:00
|
|
|
GUI_SIZE_WIDTH = 570
|
|
|
|
GUI_SIZE_HEIGHT = 580
|
2022-12-27 15:38:13 +00:00
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
GUI_SIZE_MACOS = str(GUI_SIZE_WIDTH) + 'x' + str(GUI_SIZE_HEIGHT)
|
2023-06-19 12:55:33 +00:00
|
|
|
GUI_SIZE_WINDOWS=str(GUI_SIZE_WIDTH-60) + 'x' + str(GUI_SIZE_HEIGHT-70)
|
2019-10-01 17:52:13 +00:00
|
|
|
|
|
|
|
GUI_SIZE =GUI_SIZE_MACOS
|
2022-11-16 15:43:53 +00:00
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
if platform.system() == 'Windows':
|
2022-11-10 14:02:26 +00:00
|
|
|
GUI_SIZE = GUI_SIZE_WINDOWS
|
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
root.geometry(GUI_SIZE)
|
2022-11-11 16:46:36 +00:00
|
|
|
|
2020-12-01 18:28:56 +00:00
|
|
|
# for icon.
|
|
|
|
icon_filepath = 'tmp.ico'
|
|
|
|
|
|
|
|
# icon format.
|
|
|
|
iconImg = 'AAABAAEAAAAAAAEAIAD4MgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAEAAAABAAgGAAAAXHKoZgAAAAFzUkdCAK7OHOkAAABQZVhJZk1NACoAAAAIAAIBEgADAAAAAQABAACHaQAEAAAAAQAAACYAAAAAAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAQCgAwAEAAAAAQAAAQAAAAAAdTc0VwAAAVlpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KTMInWQAAMPFJREFUeAHtndmTJNd13rP36e7pWXt6OFiHGAxACssApChTskRZom1J3ETS9ov/AIclO/Tm8JMj/OxQBMNhO0IRdvjNtB0SSYirTFEiJZoSTBAidoAAZjCYAYazb73M9O7vdzKzOqu6qmvLyr5VeW5MT3VXVea997s3v3vOueecO/SlmYnNyIsj4AiUEoHhUvbaO+0IOAKGgBOATwRHoMQIOAGUePC9646AE4DPAUegxAg4AZR48L3rjoATgM8BR6DECDgBlHjwveuOgBOAzwFHoMQIOAGUePC9646AE4DPAUegxAg4AZR48L3rjoATgM8BR6DECDgBlHjwveuOgBOAzwFHoMQIOAGUePC9646AE4DPAUegxAg4AZR48L3rjoATgM8BR6DECDgBlHjwveuOgBOAzwFHoMQIOAGUePC9646AE4DPAUegxAg4AZR48L3rjoATgM8BR6DECDgBlHjwveuOgBOAzwFHoMQIOAGUePC9646AE4DPAUegxAg4AZR48L3rjoATgM8BR6DECDgBlHjwveuOgBOAzwFHoMQIOAGUePC9646AE4DPAUegxAg4AZR48L3rjoATgM8BR6DECDgBlHjwveuOgBOAzwFHoMQIOAGUePC9646AE4DPAUegxAg4AZR48L3rjoATgM8BR6DECDgBlHjwveuOgBOAzwFHoMQIOAGUePC9646AE4DPAUegxAg4AZR48L3rjoATgM8BR6DECDgBlHjwveuOgBOAzwFHoMQIOAGUePC9646AE4DPAUegxAg4AZR48L3rjoATgM8BR6DECDgBlHjwveuOgBOAzwFHoMQIOAGUePC9646AE4DPAUegxAg4AZR48L3rjoATgM8BR6DECDgBlHjwveuOgBOAzwFHoMQIOAGUePC9646AE4DPAUegxAg4AZR48L3rjoATgM8BR6DECIzuWt83N3et6oGpeGioflf6FFtmhPWoUb/q9zafd4VZpf587ljIXSpt7hCz4glADR0ZH49GJiai4dHRaGh4JErbbvOW/2wweAVD+68QMPupks2NzWhlfj7a3FivavbQ8HA0PjMjXPtRuBuK1u7eidbu3KnqUxF/jAmzkbFxVdVv820o2lhbjVYWFuy5aRer4glALYQAJg/PRlNzc9H00Q/o9aj9znt7Dh6MJvbtj8amp6ORPXs0KGPR0MiIloYhWx02Y5aAI+IO2y/tdru/v8/DffPM6eh7f/D70Z1r1wRNLAlsbmxEhz704eiTX/pP0fi+fR1NiN1EhnF+/X99OfrJl/6wMAJjPk3NHok++R//c3TgoRMi1I3dhKDtusHswt/+KPrBv/030cbqStvXF08AAnzl9u1oWT9MYiYvnRgeHYtG90zYgz8+s09EcCianD0cTR2Zi6ZEEtMpSRw5Ek3qs4n9B6KxvXuj0clJkyTa7nmfXzD/3nvRqlg/ffjpDpN37tRT0T2//CuFPUB5w3jw5MlC2765vh7d92ufiD7425+yhSnv/hRxv6uvvhJtSgropBRPALQyWc3TBjMI6/xI/Lt784Zmsj4RUcSrPd/XP6kKqAwj4yKJqSkTcycOHIgmDx2OJkUK00clRSREwd+8z+eQydjUpF1nkkRaaZ+/XnnpBROVs33i96NPfaTQByhvGMen91r7i1qJmUuPfPGf9u3DD/4LF96PNvT8dKL27Q4BNJo1Rgw87fEXkpfKtyGKtaXFaFU/S1cuV5OEvgUAw0gTUjGQDMYlIUzsOxDtOSRpQqRgKsecpAmRxaQki8nZROUQSYxK5RjFLiGVI/SysbYWXX7pRSPICkYizHH14ciTp0Jv/o7tG4MANIZFEADzafaxx6P7fvUTO7Yp9A8Xf37B8Op/AmgF6VR60Cul8gAk1yI1rC8vS5q4G929fl0k8e6WJMH3uR6S0IM+KhsDtgb05T0HUDkSuwTqhtkmpH5IP4RAzC6ByqFrIJis6J1UXdgL/brx5s+q2kC/p4/dEx04caKwdvSiIlZkJL2NFemzyRj3oh67pxaME5/9XRv3ntXR4xtDYgsXL3ZcS1gSQMfdqHMhD3oDkuDbG6uynGqSLd+6FUUXxKB6gPRffCOuRZrQREQqGDWVA5KQNHE4sUuIJEztgCwkXeyRysHnWOBHJ6dsl6MTRq7Tk21v3X73bDQvsS97f1bMQ49+yNqy7YI+egOsi5DCwGvvPfdGJz71mT5CZ3tT15bvRkuXLm1fCbd/te47g0sAdbtb82YTkoBdVxcXoxX9LF1uoHKIJIa1fTQmlQOjZGyXQJpA5ciQhHY80l0Os0tMQxKSJnR9u+Xqa6+aITW7QkJ2GABpSz8XCICdH6i4VrrLs18QwAO/8ZvRwUcezfO2hd9rdWFRO0FXK4tduw1of/a1W0O/fx+SoA96tRf7f+s/JtK6WBgD5p3r16JIq3PFeKmvVascIgmpHBP7k12OZCvUjJcYMc0ukVU5ZJfYIwMmdomkfmrGAIgdIEse2Dzmnnp6q2F9+hsqFoZek8Yyfc61O5L0sA898oV/UoVhrnUUdDMk2OVbN1VbZ3TpBJDXQEEUDUiCKrZUjpuy2r4XaxuJymEkYSrHmHwf0l2OfbE0AUlgwBRB4DOx58DB6MKzz1bq4t6QEEbOQ498iD/7uqBygUEvC3hBlvd8/Fd6WU0h976rRQcnoHTutVupE0C7iHXz/WYksb4WbSzEXl2L6HUiiCppItnlMPFYhsy0bG5uRAdPPCwj4LH0rb59xUN0VKpRzJC96QZG4Id/9wtGsL2pobi7Ll6+ZAbvrITYTu1OAO2gVcR3IQnqaSBNZAmh0hwxAtt/WND7vWDDwIjaq8Lqv//B49EHf+t3elVFofdd1A7AugzanUoA/egwXijA/VAZrtVzcgAahGLbsyKyODQn/x5BoA/+o39sbr/53734O8Y+ANXxIO20wgmgHbQC/C4TGrfp2V94LMDWtd8kDJsmySQ7su3fYYcrhBX+HCc//8WqLdQdrgj+o4Wf/1zqUufNdALoHLswrpRIu+/48Wjm/vvDaE+XrcCTk52SXpQNYfWBX/yYfn6pF7cv/J7rK8vyAejcCYgGOwEUPmz5VogEcOSxJ7S1uD/fG+/S3TDQ4U/RizIi6YLVny3AQShrS0tyib/Ssf4PBk4AfT4TEJnnnmb/v7N94BC7T0BQ3sWMfw+diI5L/x+Usqx8EHdvyN09MRh30i8ngE5QC+Uarf64Hh954slQWpRLO0wCyJvPhBWW/30PPJhLG0O4yfKNG0oKc7srCaCYbUAYSgNAsW0sfk//jt+1//2/xggMDQ1vM1yxqs3ce1+0//gHG1/Yh59YRqM8JRrNNQK6Tmrvf5AK4v+q1IBuJICeEwDbOkTUEYpLIA2ebHGMfhwww+cE
|
|
|
|
if platform.system() == 'Linux':
|
|
|
|
# PNG format.
|
|
|
|
iconImg = 'iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAABcWlDQ1BpY2MAACiRdZE9S8NQFIbfttaKVjroIOKQoUqHFoqCOGoduhQptYJVl+Q2aYUkDTcpUlwFF4eCg+ji1+A/0FVwVRAERRBx8Bf4tUiJ5zaFFmlPuDkP7z3v4d5zAX9GZ4bdlwQM0+G5dEpaLaxJoXeE4UMQMfTLzLYWstkMesbPI9VSPCREr951XWOoqNoM8A0QzzKLO8TzxJktxxK8RzzKynKR+IQ4zumAxLdCVzx+E1zy+Eswz+cWAb/oKZU6WOlgVuYGcYw4auhV1jqPuElYNVeWKY/TmoCNHNJIQYKCKjahw0GCskkz6+5LNn1LqJCH0d9CDZwcJZTJGye1Sl1VyhrpKn06amLu/+dpazPTXvdwCgi+uu7nJBDaBxp11/09dd3GGRB4Aa7Ntr9Cc5r7Jr3e1qLHQGQHuLxpa8oBcLULjD1bMpebUoCWX9OAjwtguACM3AOD696sWvs4fwLy2/REd8DhETBF9ZGNP5NzZ9j92udAAAAACXBIWXMAAAsSAAALEgHS3X78AAAgAElEQVR4Xu1d+ZMdV3W+s2s0GmkkzYwsa7EsWbLBi7wAAcIScBbCYjBJfskfkAokxW+p/JSq/JyiypVKUkVVUvktJCmwMYsxYTUQg4MxWJIl29qsxZIlzYyW2ffJ953ufuq3Tfd7vbz7+p6bUmys9/r1/e7tr88595zvdDw12LdmdCgCioCTCHQ6OWudtCKgCAgCSgC6ERQBhxFQAnB48XXqioASgO4BRcBhBJQAHF58nboioASge0ARcBgBJQCHF1+nrggoAegeUAQcRkAJwOHF16krAkoAugcUAYcRUAJwePF16oqAEoDuAUXAYQSUABxefJ26IqAEoHtAEXAYASUAhxdfp64IKAHoHlAEHEZACcDhxdepKwJKALoHFAGHEVACcHjxdeqKgBKA7gFFwGEElAAcXnyduiKgBKB7QBFwGAElAIcXX6euCCgB6B5QBBxGQAnA4cXXqSsCSgC6BxQBhxFQAnB48XXqioASgO4BRcBhBJQAHF58nboioASge0ARcBgBJQCHF1+nrggoAegeUAQcRkAJwOHF16krAkoAugcUAYcRUAJwePF16oqAEoDuAUXAYQSUABxefJ26IqAEoHtAEXAYASUAhxdfp64IKAHoHlAEHEZACcDhxdepKwJKALoHFAGHEVACcHjxdeqKgBKA7gFFwGEElAAcXnyduiKgBKB7QBFwGAElAIcXX6euCCgB6B5QBBxGQAnA4cXXqSsCSgC6BxQBhxFQAnB48XXqioASgO4BRcBhBJQAHF58nboioASge0ARcBgBJQCHF1+nrggoAegeUAQcRkAJwOHF16krAkoAugcUAYcRUAJwePF16oqAEoDuAUXAYQSUABxefJ26IqAEoHtAEXAYASUAhxdfp64IKAHoHlAEHEZACcDhxdepKwJKALoHFAGHEehu2dzX1lr204X54Y6O2lNpU2y5I2RG9eaV5cIBs9LvZ/k7KV87KWb5EwAWt6u313T19ZnO7m7T0dlVWm/Zt/x/shj8J9FSoqi1Z9ZW18zi1JRZW10p++uOzk7TOzgIXNvRuOswy/NzZnluLuXHJPpyPcCsq6e3Dfdbh1ldXjKL09Pes9PgyJ8AcIMkgP7tw2bj6KgZ2HEH/rlD/p3/bcPWraZv8xbTMzBgujZswKL0mI6uLnkr8O2w5rGEN1efLBqcc9t/nA/3zbNnzA+/9EUzNzEBaDxLYG111Wy7713m8af+yfRu3tzUhmglOFzn1//rq+bXT305NwLjfto4PGIe/8d/NkP7DwiG7TSI2eVfvmhe+Nu/MatLiw3fev4EAMAXJyfNAv5wE3PzchKd3T2me0OfPPi9g5tBBNtM//B2s3Fk1GwESQwEJDEyYvrxd31bhkzPpk2mu79fLAnXxtTbb5slsH7w8AcEMHr4YXPnBz6Y2wOUNu5bDx7M9d7XVlbM7g9/xNz9iU/Ki6kdx/jx18warIBmRmueHP9tHtwwF2GFf2D+zd+84Vn9dAMCkwYvOLoKfNC7ekESGzeKmds3NGT6t203/SCFgR2wInyi4P/mf+ffk0x6NvbL98SSKMgYO/qqmMrhOfHfdzz8aK4PUNpw9g5skvvP603MvXTo83/atg8/8Z++fMms4vlpxu1rDQHU2zVCDHzavQ9UhrhIFMuzM2YJf2bHrpWTBD+PjdNJawJMTsugFxZC3+Yhs2EbrAmQgrgco7AmQBb9sCz6h32XAyTRDcujm3EJuBy2j9XlZXPt6BEhyBJG+PdezGHkocO23/6699dDAsAa5kEA3E/D9z9gdn/oI22N2cw7lwWv9ieAOMsQWA++31tFEngQVhYWYE3Mm/nr10ES529bEiSJwOXAg96NGIO4HPCXNwzR5fDjEnQ3JDYB9wP+IQlE4hJ0OfAdEkzY9I5z22l+hvO6cfLNcvMf8x7YeacZOnAgzZ/K/Vp8I9PSW12EP5v1aQBeGAc+81lZ93YdJLHpK1eavn27LICmp1Hji3zQ65AEP726hMgpNtnCrVvGXAaDhgOK/C6tCWxEWgXd4nKQJGBNbPfjEiAJcTtIFrAuNsDl4N/TNenu3yinHM0wchwIJs+fM1Mw+8LXlwDgvffJvbTzINZ5WGHEa9Odu8yBT366neEyywvzZvbq1WpzOeasiksAcQCIIAmy69LMjFnEn9lrdVwOkEQnjo964HLQQvDiErQm6HKESCJ0yiFxiQGSBKyJJgKY4yeOSyA1/IYk2TEAyHtp50EC4MlP1mfyJIC9H/u42Xro3naGC4HgGZwEjTdtkbpNAHGWPsrlwEZaAQszgDl3fcIYvJ1LwcsqlwMkAZejb4t/yuEfhUrwktaExCXCLgfiEhsQwGRcImQOMwDIOECYPBjzGH34kTgzsvozdLEYsJUj3qxcAMZLQNaHnvyTpgjYJgBpwS7cusmd1tRtKQE0BVsSl+MmorZv385jCEhCXI4e5D4EpxybPWuCJMEAJgiCORMbhraayy+9VHX8xyDntkP3pTWbll2HLhcxyHLw7U+yvPP9H8zyZ3K59jxeOkwCajYmpQSQyzL5PxIVl1hZNqvTXlbXDP268FEoicI/5RDzOHSkuba2arYeuAdBwJ15ziaT32LspBuuUTNZbXFviNjd89knhWDbfcxcuyoB72atJSUA23ZAlMtRK90TjMDjP0bQ230whsEgalaDb/8td+0zd//RH2f1E7ledwYnACsIaDdrAbRjwniuALfDjzGDbRQJQEUYPAFgINArzUl/MD5z1x/8oaT9FmF4OQDl9SCNzEsJoBG0LPwsNzTTpofffb+Fd9f4LTGwKZZMFs8/sGI+x8HPfT6zI9rGZ5zsG9PvvJMIKyWAZPi3/tswaTfv22cG9+xp/b2kcAfM5ORJSRZjFVjd8Z734s/7srh87tdcWVxADkDzSUC8YSWA3Jct3R+kBTBy/4M4WtyS7oVbdDUG6JhPkcXognXBtz+PAIswlmdnkRI/1rT/rwRQgF1Ak3n0EZ7/N3cObCMELAhKe0jwD37/Pvj/RRkL0IOYv4F09wT5EmoBtPNuYEILUo9HHnyonWdRde9iAaTNZ8CKkf/Ne+8qDFYLN25AFGYykQWQzzEgGco/virl3Af/W5Yji4hPYdZZJtLR0VkVuOJbbXDXbrNl392FmqwoGqXJAAyUIj37IM7+izRo/i/BDUhiAWROADzWYUUdK+tYSMNMNq9G3yuY4d8zwaWkaqOKP1V7lPjcOHPanHr2GcP6hGCQTLe/693AtX2r2Wo9kOKjpyhpxlp5Zv0VIVU6jNcMAoArrJpMMDInAFbdzSJbiUIfXvktCmYQsPIUf2rIgjEXPiQLxu8UScij2bU68q9fMSef/lrZ10kM3NSMnBdpiCYACaAJjbtaOPBFcxB5/6yXKNKYwRHgGmpCkjwfmRMAAScDr0K9hlFLath5op+0/D3TX2r0meYKa4AVcqyU82TBtoZy4f2CGVTYsWCGFXdhWTAmw2RVftvqTUNT/8rLvyov
|
|
|
|
|
|
|
|
tmpIcon = open(icon_filepath, 'wb+')
|
|
|
|
tmpIcon.write(base64.b64decode(iconImg))
|
|
|
|
tmpIcon.close()
|
|
|
|
if platform.system() == 'Windows':
|
|
|
|
root.iconbitmap(icon_filepath)
|
|
|
|
if platform.system() == 'Darwin':
|
|
|
|
#from PIL import Image, ImageTk
|
|
|
|
#logo = ImageTk.PhotoImage(Image.open(icon_filepath).convert('RGB'))
|
|
|
|
#root.call('wm', 'iconphoto', root._w, logo)
|
|
|
|
pass
|
|
|
|
if platform.system() == 'Linux':
|
2020-12-08 15:24:17 +00:00
|
|
|
logo = PhotoImage(file=icon_filepath)
|
2020-12-01 18:28:56 +00:00
|
|
|
root.call('wm', 'iconphoto', root._w, logo)
|
|
|
|
os.remove(icon_filepath)
|
|
|
|
|
2023-03-14 00:28:24 +00:00
|
|
|
threading.Thread(target=settings_timer, daemon=True).start()
|
2019-10-01 17:52:13 +00:00
|
|
|
root.mainloop()
|
|
|
|
|
2023-06-16 04:04:04 +00:00
|
|
|
def force_remove_file(filepath):
|
|
|
|
if os.path.exists(filepath):
|
|
|
|
try:
|
|
|
|
os.remove(filepath)
|
|
|
|
except Exception as exc:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def clean_tmp_file():
|
|
|
|
remove_file_list = [CONST_MAXBOT_LAST_URL_FILE
|
|
|
|
,CONST_MAXBOT_INT28_FILE
|
|
|
|
,CONST_MAXBOT_ANSWER_ONLINE_FILE
|
|
|
|
,CONST_MAXBOT_QUESTION_FILE
|
|
|
|
]
|
|
|
|
for filepath in remove_file_list:
|
|
|
|
force_remove_file(filepath)
|
|
|
|
|
2019-10-01 17:52:13 +00:00
|
|
|
if __name__ == "__main__":
|
2023-06-16 16:04:55 +00:00
|
|
|
threading.Thread(target=resetful_api_timer, daemon=True).start()
|
2023-06-16 04:04:04 +00:00
|
|
|
clean_tmp_file()
|
2023-02-11 05:36:27 +00:00
|
|
|
main()
|