48 lines
2.0 KiB
Python
48 lines
2.0 KiB
Python
import configparser
|
|
import random
|
|
import string
|
|
|
|
from playwright.sync_api import sync_playwright
|
|
|
|
from db.DbManager import DataManager
|
|
from logs.LogSender import LogSender
|
|
|
|
firebase_store_manager = DataManager()
|
|
oracle_log_sender = LogSender()
|
|
|
|
# proxy
|
|
PROXY_SERVER = "http://gw.ntnt.io:5959"
|
|
PROXY_PASSWORD = "94sY7zwBG13i"
|
|
|
|
BRIGHT_DATA_PROXY_SERVER = "http://zproxy.lum-superproxy.io:22225"
|
|
BRIGHT_DATA_PROXY_USERNAME = " lum-customer-c_daabba94-zone-residential-country-fr"
|
|
BRIGHT_DATA_PROXY_PASSWORD = "9dwmh54u3bbh"
|
|
PROXY_NAME_PREFIX_RES = "panleicim-res-fr-"
|
|
PROXY_NAME_PREFIX_CC = "panleicim-cc-fr-"
|
|
|
|
|
|
def get_proxy_name_prefix(proxy_type=0) -> str:
|
|
if proxy_type == 0:
|
|
return PROXY_NAME_PREFIX_RES
|
|
else:
|
|
return PROXY_NAME_PREFIX_CC
|
|
|
|
|
|
def get_random_id_number_for_proxy() -> str:
|
|
S = 8 # number of characters in the string.
|
|
ran = ''.join(random.choices(string.digits, k=S))
|
|
id_number = str(ran)
|
|
print("The randomly generated string is : " + str(ran)) # print the random data
|
|
return id_number
|
|
|
|
|
|
DEVICES = ['iPad (gen 6)', 'iPad (gen 6) landscape', 'iPad (gen 7)', 'iPad (gen 7) landscape', 'iPad Mini',
|
|
'iPad Mini landscape', 'iPad Pro 11', 'iPad Pro 11 landscape', 'iPhone 6', 'iPhone 6 landscape',
|
|
'iPhone 6 Plus', 'iPhone 6 Plus landscape', 'iPhone 7', 'iPhone 7 landscape', 'iPhone 7 Plus',
|
|
'iPhone 7 Plus landscape', 'iPhone 8', 'iPhone 8 landscape', 'iPhone 8 Plus', 'iPhone 8 Plus landscape',
|
|
'iPhone SE', 'iPhone SE landscape', 'iPhone X', 'iPhone X landscape', 'iPhone XR', 'iPhone XR landscape',
|
|
'iPhone 11', 'iPhone 11 landscape', 'iPhone 11 Pro', 'iPhone 11 Pro landscape', 'iPhone 11 Pro Max',
|
|
'iPhone 11 Pro Max landscape', 'iPhone 12', 'iPhone 12 landscape', 'iPhone 12 Pro',
|
|
'iPhone 12 Pro landscape', 'iPhone 12 Pro Max', 'iPhone 12 Pro Max landscape', 'iPhone 12 Mini', 'iPhone 13',
|
|
'iPhone 13 landscape', 'iPhone 13 Pro', 'iPhone 13 Pro landscape', 'iPhone 13 Pro Max', 'iPhone 13 Mini']
|