-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.py
280 lines (216 loc) · 7.67 KB
/
main.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
import asyncio
import os
import json
import decky_plugin
from settings import SettingsManager
from typing import TypeVar
def log(txt):
decky_plugin.logger.info(txt)
def warn(txt):
decky_plugin.logger.warn(txt)
def error(txt):
decky_plugin.logger.error(txt)
Initialized = False
class Plugin:
user_id: str = None
users_dict: dict[str, dict] = None
tags: list[dict] = None
settings: SettingsManager
async def log_message(self, message, level):
if level == 0:
log(message)
elif level == 1:
warn(message)
elif level == 2:
error(message)
async def get_user_desktop(self) -> str:
return os.environ["DECKY_USER_HOME"] + "/Desktop"
async def backup_settings(self, dest_path: str) -> bool:
"""
Waits until users_dict is loaded, then returns users_dict
:return: The users dictionary
"""
while Plugin.users_dict is None:
await asyncio.sleep(0.1)
success = True
try:
with open(dest_path, 'w', encoding='utf-8') as settings_file:
json.dump(self.settings.settings, settings_file, ensure_ascii=False, indent=4)
except:
success = False
return success
async def backup_default_dir(self, name: str) -> bool:
success = True
backup = SettingsManager(name=name, settings_directory=os.environ["DECKY_PLUGIN_SETTINGS_DIR"])
backup.settings = self.settings.settings
try:
backup.commit()
except:
try:
os.remove(backup.path)
except:
pass
success = False
return success
# Plugin settings getters
async def get_users_dict(self) -> dict[str, dict] | None:
"""
Waits until users_dict is loaded, then returns users_dict
:return: The users dictionary
"""
while Plugin.users_dict is None:
await asyncio.sleep(0.1)
# log(f"Got users_dict {Plugin.settings_dict}")
return Plugin.users_dict
async def remove_legacy_settings(self):
Plugin.del_setting(self, "tabs")
Plugin.del_setting(self, "friends")
Plugin.del_setting(self, "friendsGames")
log("Legacy settings removal complete.")
pass
async def migrate_legacy_settings(self):
tabs = await Plugin.get_setting(self, "tabs", {})
friends = await Plugin.get_setting(self, "friends", [])
friends_games = await Plugin.get_setting(self, "friendsGames", {})
for tabId in tabs:
tab = tabs[tabId]
if "includesHidden" in tab:
tab["categoriesToInclude"] = 17 if tab["includesHidden"] == True else 1
del tab["includesHidden"]
Plugin.users_dict[Plugin.user_id] = {
"tabs": tabs,
"friends": friends,
"friendsGames": friends_games
}
await Plugin.set_setting(self, "usersDict", Plugin.users_dict)
await Plugin.remove_legacy_settings(self)
log("Legacy settings migration complete.")
pass
async def set_active_user_id(self, user_id: str) -> bool:
log(f"active user id: {user_id}")
Plugin.user_id = user_id
while Plugin.users_dict is None:
await asyncio.sleep(0.1)
if not user_id in Plugin.users_dict.keys():
log(f"User {user_id} had no settings.")
Plugin.users_dict[user_id] = {
"tabs": {},
"friends": [],
"friendsGames": {}
}
await Plugin.set_setting(self, "usersDict", Plugin.users_dict)
return "tabs" in Plugin.settings.settings.keys()
async def get_tabs(self) -> dict[str, dict] | None:
"""
Waits until tabs are loaded, then returns the tabs
:return: The tabs
"""
while Plugin.users_dict is None:
await asyncio.sleep(0.1)
tabs = Plugin.users_dict[Plugin.user_id]["tabs"]
log(f"Got tabs {tabs}")
return tabs or {}
async def get_tags(self) -> list[dict] | None:
"""
Waits until tags is loaded, then returns the tags
:return: The tags
"""
while Plugin.tags is None:
await asyncio.sleep(0.1)
log(f"Got {len(Plugin.tags)} tags")
return Plugin.tags
async def get_friends(self) -> list[dict] | None:
"""
Waits until friends is loaded, then returns the friends
:return: The friends
"""
while Plugin.users_dict is None:
await asyncio.sleep(0.1)
friends = Plugin.users_dict[Plugin.user_id]["friends"]
log(f"Got {len(friends)} friends")
return friends or []
async def get_friends_games(self) -> dict[int, list[int]] | None:
"""
Waits until friends_games is loaded, then returns the friends_games
:return: The friends_games
"""
while Plugin.users_dict is None:
await asyncio.sleep(0.1)
friends_games = Plugin.users_dict[Plugin.user_id]["friendsGames"]
log(f"Got {len(friends_games)} friendsGames")
return friends_games or {}
async def get_tab_profiles(self) -> dict[str, list[str]] | None:
"""
Waits until users_dict is loaded, then returns the tab profiles
:return: User's tab profiles
"""
while Plugin.users_dict is None:
await asyncio.sleep(0.1)
user = Plugin.users_dict[Plugin.user_id]
tab_profiles = Plugin.users_dict[Plugin.user_id]["tabProfiles"] if "tabProfiles" in user.keys() else {}
log(f"Got tab profiles {tab_profiles}")
return tab_profiles
# Plugin settings setters
async def set_tabs(self, tabs: dict[str, dict]):
Plugin.users_dict[Plugin.user_id]["tabs"] = tabs
await Plugin.set_setting(self, "usersDict", Plugin.users_dict)
async def set_tags(self, tags: list[dict]):
Plugin.tags = tags
await Plugin.set_setting(self, "tags", Plugin.tags)
async def set_friends(self, friends: list[dict]):
Plugin.users_dict[Plugin.user_id]["friends"] = friends
await Plugin.set_setting(self, "usersDict", Plugin.users_dict)
async def set_friends_games(self, friends_games: dict[str, list[int]]):
Plugin.users_dict[Plugin.user_id]["friendsGames"] = friends_games
await Plugin.set_setting(self, "usersDict", Plugin.users_dict)
async def set_tab_profiles(self, tab_profiles: dict[str, list[str]]):
Plugin.users_dict[Plugin.user_id]["tabProfiles"] = tab_profiles
await Plugin.set_setting(self, "usersDict", Plugin.users_dict)
async def read(self) -> None:
"""
Reads the json from disk
"""
Plugin.settings.read()
Plugin.users_dict = await Plugin.get_setting(self, "usersDict", {})
Plugin.tags = await Plugin.get_setting(self, "tags", [])
T = TypeVar("T")
# Plugin settingsManager wrappers
async def get_setting(self, key, default: T) -> T:
"""
Gets the specified setting from the json
:param key: The key to get
:param default: The default value
:return: The value, or default if not found
"""
return Plugin.settings.getSetting(key, default)
async def set_setting(self, key, value: T) -> T:
"""
Sets the specified setting in the json
:param key: The key to set
:param value: The value to set it to
:return: The new value
"""
Plugin.settings.setSetting(key, value)
return value
def del_setting(self, key) -> None:
"""
Deletes the specified setting in the json
"""
del Plugin.settings.settings[key]
Plugin.settings.commit()
pass
# Asyncio-compatible long-running code, executed in a task when the plugin is loaded
async def _main(self):
global Initialized
if Initialized:
return
Initialized = True
Plugin.settings = SettingsManager(name="settings", settings_directory=os.environ["DECKY_PLUGIN_SETTINGS_DIR"])
await Plugin.read(self)
log("Initializing Tab Master.")
# Function called first during the unload process, utilize this to handle your plugin being removed
async def _unload(self):
decky_plugin.logger.info("Unloading Tab Master.")
# Migrations that should be performed before entering `_main()`.
async def _migration(self):
pass