mirror of
https://github.com/aclist/dztui.git
synced 2026-08-25 17:32:36 +02:00
Merge 687c5ac168 into 04e9e5dcf0
This commit is contained in:
commit
7cabd0d17f
@ -1,3 +1,4 @@
|
|||||||
|
import json
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
@ -7,11 +8,10 @@ from dzgui.config.convert import rc2json
|
|||||||
from dzgui.util._json import read_json, write_json
|
from dzgui.util._json import read_json, write_json
|
||||||
|
|
||||||
|
|
||||||
def migrate_legacy_conf(config: Path) -> None:
|
def migrate_legacy_conf(config: Path) -> Any:
|
||||||
old_conf = Path.home() / LEGACY_CONFIG_PATH
|
old_conf = Path.home() / LEGACY_CONFIG_PATH
|
||||||
j = rc2json(old_conf)
|
j = rc2json(old_conf)
|
||||||
config.parent.mkdir(parents=True, exist_ok=True)
|
return json.loads(j)
|
||||||
config.write_text(j)
|
|
||||||
|
|
||||||
|
|
||||||
def has_new_config(config: Path) -> bool:
|
def has_new_config(config: Path) -> bool:
|
||||||
|
|||||||
@ -17,9 +17,7 @@ from dzgui.const.constants import (
|
|||||||
)
|
)
|
||||||
from dzgui.const.boilerplate import config_boilerplate
|
from dzgui.const.boilerplate import config_boilerplate
|
||||||
from dzgui.const.endpoints import STEAM_API_SETUP
|
from dzgui.const.endpoints import STEAM_API_SETUP
|
||||||
from dzgui.const.enum import Preferences
|
|
||||||
from dzgui.config import freedesktop
|
from dzgui.config import freedesktop
|
||||||
from dzgui.config.query import lookup
|
|
||||||
from dzgui.init.migrate import migrate_legacy_conf
|
from dzgui.init.migrate import migrate_legacy_conf
|
||||||
from dzgui.managers.threading import call_on_thread, StoredFunc, ThreadingManager
|
from dzgui.managers.threading import call_on_thread, StoredFunc, ThreadingManager
|
||||||
from dzgui.strings import wizard
|
from dzgui.strings import wizard
|
||||||
@ -305,6 +303,7 @@ class ConfigMigrationPage(EnumeratedWizardPage):
|
|||||||
)
|
)
|
||||||
|
|
||||||
self.migrated = False
|
self.migrated = False
|
||||||
|
self.migrated_conf: dict[str, Any] = {}
|
||||||
self.config = config
|
self.config = config
|
||||||
self.page_type = Gtk.AssistantPageType.INTRO
|
self.page_type = Gtk.AssistantPageType.INTRO
|
||||||
|
|
||||||
@ -344,8 +343,7 @@ class ConfigMigrationPage(EnumeratedWizardPage):
|
|||||||
def _on_import_clicked(self, button: Gtk.Button) -> None:
|
def _on_import_clicked(self, button: Gtk.Button) -> None:
|
||||||
self.grid.set_sensitive(False)
|
self.grid.set_sensitive(False)
|
||||||
try:
|
try:
|
||||||
# TODO: this could be deferred to the final page (prevents accidental destruction of dialog via ESC)
|
self.migrated_conf = migrate_legacy_conf(self.config)
|
||||||
migrate_legacy_conf(self.config)
|
|
||||||
self.migrated = True
|
self.migrated = True
|
||||||
self.success_box.set_visible(True)
|
self.success_box.set_visible(True)
|
||||||
except Exception:
|
except Exception:
|
||||||
@ -444,13 +442,13 @@ class Assistant(Gtk.Assistant):
|
|||||||
|
|
||||||
self.setup_complete = False
|
self.setup_complete = False
|
||||||
|
|
||||||
self.page1 = IntroductionPage()
|
self.page_intro = IntroductionPage()
|
||||||
self.page2 = ConfigMigrationPage(XDG.config)
|
self.page_migration = ConfigMigrationPage(XDG.config)
|
||||||
self.page3 = SteamPathPage()
|
self.page_paths = SteamPathPage()
|
||||||
self.page4 = SteamValidationPage()
|
self.page_api = SteamValidationPage()
|
||||||
self.page5 = PreferencesPage()
|
self.page_prefs = PreferencesPage()
|
||||||
self.page6 = ShortcutCreationPage(XDG.shortcut)
|
self.page_shortcuts = ShortcutCreationPage(XDG.shortcut)
|
||||||
self.page7 = CompletionPage()
|
self.page_completion = CompletionPage()
|
||||||
|
|
||||||
self.set_forward_page_func(self._advance_page)
|
self.set_forward_page_func(self._advance_page)
|
||||||
|
|
||||||
@ -461,13 +459,13 @@ class Assistant(Gtk.Assistant):
|
|||||||
legacy_path = Path.home().joinpath(LEGACY_CONFIG_PATH)
|
legacy_path = Path.home().joinpath(LEGACY_CONFIG_PATH)
|
||||||
self.has_legacy_config = legacy_path.is_file()
|
self.has_legacy_config = legacy_path.is_file()
|
||||||
for page in (
|
for page in (
|
||||||
self.page1,
|
self.page_intro,
|
||||||
self.page2,
|
self.page_migration,
|
||||||
self.page3,
|
self.page_paths,
|
||||||
self.page4,
|
self.page_api,
|
||||||
self.page5,
|
self.page_prefs,
|
||||||
self.page6,
|
self.page_shortcuts,
|
||||||
self.page7,
|
self.page_completion,
|
||||||
):
|
):
|
||||||
# NOTE: skip config migration page if no legacy config file
|
# NOTE: skip config migration page if no legacy config file
|
||||||
if (
|
if (
|
||||||
@ -486,8 +484,17 @@ class Assistant(Gtk.Assistant):
|
|||||||
self.show_all()
|
self.show_all()
|
||||||
load_css()
|
load_css()
|
||||||
|
|
||||||
def write_config(self) -> None:
|
def write_config(self, config: dict[str, Any]) -> None:
|
||||||
write_json(self.config_values, self.config_path)
|
write_json(config, self.config_path)
|
||||||
|
|
||||||
|
def get_final_page(self) -> int:
|
||||||
|
pages = self.get_n_pages()
|
||||||
|
# TODO: might be better to check if path is writeable
|
||||||
|
# and selectively block certain shortcut options
|
||||||
|
if self.is_binary:
|
||||||
|
return pages - 2
|
||||||
|
else:
|
||||||
|
return pages - 1
|
||||||
|
|
||||||
def _advance_page(self, index: int) -> int:
|
def _advance_page(self, index: int) -> int:
|
||||||
page = self.get_nth_page(index)
|
page = self.get_nth_page(index)
|
||||||
@ -496,23 +503,25 @@ class Assistant(Gtk.Assistant):
|
|||||||
pass
|
pass
|
||||||
case ConfigMigrationPage():
|
case ConfigMigrationPage():
|
||||||
if page.is_migrated():
|
if page.is_migrated():
|
||||||
steam_path = lookup(self.config_path, Preferences.DEFAULT)
|
sp = page.migrated_conf["default_steam_path"]
|
||||||
self.page6.set_steam_path(steam_path)
|
self.page_shortcuts.set_steam_path(sp)
|
||||||
offset = 1 if not self.is_binary else 2
|
self.write_config(self.page_migration.migrated_conf)
|
||||||
self.setup_complete = True
|
self.setup_complete = True
|
||||||
return self.get_n_pages() - offset
|
return self.get_final_page()
|
||||||
case SteamPathPage():
|
case SteamPathPage():
|
||||||
self.config_values["default_steam_path"] = page.get_path_from_radio()
|
self.config_values["default_steam_path"] = page.get_path_from_radio()
|
||||||
case SteamValidationPage():
|
case SteamValidationPage():
|
||||||
self.config_values["steam_api"] = page.get_api_key()
|
self.config_values["steam_api"] = page.get_api_key()
|
||||||
case PreferencesPage():
|
case PreferencesPage():
|
||||||
# NOTE: collects config values before advancing to last page
|
# NOTE: collects config values before advancing to last page
|
||||||
name, use_miles, client = self.page5.get_prefs()
|
name, use_miles, client = self.page_prefs.get_prefs()
|
||||||
self.config_values["name"] = name
|
self.config_values["name"] = name
|
||||||
self.config_values["use_miles"] = use_miles
|
self.config_values["use_miles"] = use_miles
|
||||||
self.config_values["client"] = client
|
self.config_values["client"] = client
|
||||||
self.write_config()
|
self.write_config(self.config_values)
|
||||||
self.page6.set_steam_path(self.config_values["default_steam_path"])
|
self.page_shortcuts.set_steam_path(
|
||||||
|
self.config_values["default_steam_path"]
|
||||||
|
)
|
||||||
self.setup_complete = True
|
self.setup_complete = True
|
||||||
case ShortcutCreationPage():
|
case ShortcutCreationPage():
|
||||||
page.create_shortcuts()
|
page.create_shortcuts()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user