FifaAccountPlatforms = (
    ('ps', 'PS4'),
    ('ps5', 'PS5'),
    ('xbox360', 'XBOX 360'),
    ('xboxs', 'XBOX Series S'),
    ('pc', 'PC')
)
FifaAccountLoginStatus = (
    (0, 'None'),
    (1, 'Logined'),
    (2, 'Wrong password'),
    (3, 'Wrong Bckupcode'),
    (4, 'Account transfer banned'),

    (10, 'Account problem')
)
SniperOrderStatus = (
    ('0', 'None'),
    ('1', 'doing'),
    ('2', 'done'),
    ('3', 'error'),
    ('4', 'done with some errors'),

)

SNIPER_ITEM_LOG_STATUS = (
    (0, 'Missed'),
    (1, 'Success')
)

FIFA_PROXY_TYPE_NAME = (
    ('', 'Normal'),
    ('mule', 'Mule'),
    ('web_healthy', 'Web Healthy')
)

DELETE_CONSOLE_REASON = (
    ('', ''),
    ('account_disable', 'Account Disable'),
    ('console_transfer_ban', 'Console Transfer Ban'),
    ('web_transfer_ban', 'Web Transfer Ban'),
    ('account_suspend', 'Account Suspend'),
    ('console_suspend', 'Console Suspend'),
    ('limit_reached', 'Limit Reached'),
    ('link_problem', 'link problem'),
    ('other', 'Other'),
    ('opened_web', 'Opened Web App'),
    ('no_console', 'Console has Problem')
)

ESTABLISHMENT_STATE = (
    (0, 'None'),
    (1, 'Host'),
    (2, 'Guest'),
)
LAST_HEALTH_STATUS = (
    ('web_transfer_open', 'Web Transfer Open'),
    ('console_transfer_open', 'Console Transfer Open'),
) + DELETE_CONSOLE_REASON

FIFA_ACCOUNT_WORK_ERROR_SOLVE_STATUS = (
    ('', ''),
    ('solved', 'Solved'),
    ('pre_solved', 'Pre Solved'),
)

# 0: "NONE" , 1: "BANNED" , 2: "ALLOWED" , 3: "CONSOLE_ONLY" , 4: "UNAVAILABLE" , 100: "MAINTENANCE"
TRADE_ACCESS = (('-1', 'None'), ('0', 'not yet'), ('1', 'Console Transfer Ban'),
                ('2', 'Full Permission'), ('3', 'Web Transfer Ban'))

TRADE_ACCESS_DICT = dict(TRADE_ACCESS)

TELEGRAM_MESSAGE_TYPE = (
    ('', 'Normal'),
    ('error', 'Error'),
    ('warning', 'Warning'),
    ('info', 'Information')
)

CREATE_OUTLOOK_STATUS = (
    ('', 'Nothing'),
    ('email_user_password_set', 'Email user name and password set'),
    ('email_support_set', 'Email support set'),
    ('origin_user_password_set', 'Origin user name and password set'),
    ('origin_security_data_set', 'Origin security data set'),
    ('origin_full_created', 'Origin full created'),
    ('gamer_tag_changed', 'Gamer tag changed'),

)

CREATE_OUTLOOK_TRANSLATE = {
    'wait to solve captcha': 'منتظر حل کپچا',
}

CONSOLE_READING_ACCOUNTS_STATUS = (
    (0, ''),
    (1, 'Success'),
    (2, 'In Console Not Found'),
    (3, 'In server Not Found'),
    (4, 'Duplicate In Console'),
)

CONSOLE_USER_MODE = ((0, ''), (1, 'Host'), (2, 'Guest'))

FIFA_ACCOUNT_DISABLE_MODE = ((0, 'Disable'), (1, 'Console Transfer Ban'), (3, 'Web Transfer Ban'))
