forked from SunoAI-API/Suno-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount_manager.py
57 lines (46 loc) · 1.92 KB
/
account_manager.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import json
from typing import List, Dict
import os
class AccountManager:
def __init__(self):
self.accounts: Dict = {}
self.disabled_accounts: List[str] = []
self.current_account_index = 0
self.active_accounts: List[str] = []
self.load_accounts()
self.load_disabled_accounts()
self.update_active_accounts()
def load_accounts(self):
try:
with open('accounts.json', 'r') as f:
self.accounts = json.load(f)
except FileNotFoundError:
self.accounts = {}
def load_disabled_accounts(self):
try:
with open('disabled_accounts.json', 'r') as f:
data = json.load(f)
self.disabled_accounts = data.get('disabled_accounts', [])
except FileNotFoundError:
self.disabled_accounts = []
def update_active_accounts(self):
self.active_accounts = [
account for account in self.accounts.keys()
if account not in self.disabled_accounts
]
def save_disabled_accounts(self):
with open('disabled_accounts.json', 'w') as f:
json.dump({'disabled_accounts': self.disabled_accounts}, f, indent=2)
def disable_account(self, account_email: str):
if account_email not in self.disabled_accounts:
self.disabled_accounts.append(account_email)
self.update_active_accounts()
self.save_disabled_accounts()
self.current_account_index = 0
def get_next_account(self) -> tuple[str, dict]:
if not self.active_accounts:
raise Exception("No active accounts available")
account_email = self.active_accounts[self.current_account_index]
account_data = self.accounts[account_email]
self.current_account_index = (self.current_account_index + 1) % len(self.active_accounts)
return account_email, account_data