mirror of
https://github.com/dw-0/kiauh.git
synced 2026-01-02 04:33:35 +05:00
Compare commits
3 Commits
7f79f68209
...
51993e367d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
51993e367d | ||
|
|
a03e943ebf | ||
|
|
fc8fedc9f6 |
@@ -11,21 +11,21 @@ import grp
|
|||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
from subprocess import CalledProcessError, run
|
||||||
from typing import List, Union, Literal, Dict, Optional
|
from typing import Dict, List, Literal, Optional, Union
|
||||||
|
|
||||||
from components.klipper import (
|
from components.klipper import (
|
||||||
MODULE_PATH,
|
KLIPPER_BACKUP_DIR,
|
||||||
KLIPPER_DIR,
|
KLIPPER_DIR,
|
||||||
KLIPPER_ENV_DIR,
|
KLIPPER_ENV_DIR,
|
||||||
KLIPPER_BACKUP_DIR,
|
MODULE_PATH,
|
||||||
)
|
)
|
||||||
from components.klipper.klipper import Klipper
|
from components.klipper.klipper import Klipper
|
||||||
from components.klipper.klipper_dialogs import (
|
from components.klipper.klipper_dialogs import (
|
||||||
print_missing_usergroup_dialog,
|
|
||||||
print_instance_overview,
|
print_instance_overview,
|
||||||
print_select_instance_count_dialog,
|
print_missing_usergroup_dialog,
|
||||||
print_select_custom_name_dialog,
|
print_select_custom_name_dialog,
|
||||||
|
print_select_instance_count_dialog,
|
||||||
)
|
)
|
||||||
from components.moonraker.moonraker import Moonraker
|
from components.moonraker.moonraker import Moonraker
|
||||||
from components.moonraker.moonraker_utils import moonraker_to_multi_conversion
|
from components.moonraker.moonraker_utils import moonraker_to_multi_conversion
|
||||||
@@ -41,9 +41,9 @@ from core.instance_manager.name_scheme import NameScheme
|
|||||||
from utils import PRINTER_CFG_BACKUP_DIR
|
from utils import PRINTER_CFG_BACKUP_DIR
|
||||||
from utils.common import get_install_status_common
|
from utils.common import get_install_status_common
|
||||||
from utils.constants import CURRENT_USER
|
from utils.constants import CURRENT_USER
|
||||||
from utils.git_utils import get_repo_name, get_remote_commit, get_local_commit
|
from utils.git_utils import get_local_commit, get_remote_commit, get_repo_name
|
||||||
from utils.input_utils import get_confirm, get_string_input, get_number_input
|
from utils.input_utils import get_confirm, get_number_input, get_string_input
|
||||||
from utils.logger import Logger, DialogType
|
from utils.logger import DialogType, Logger
|
||||||
from utils.sys_utils import cmd_sysctl_service
|
from utils.sys_utils import cmd_sysctl_service
|
||||||
|
|
||||||
|
|
||||||
@@ -232,9 +232,9 @@ def check_user_groups():
|
|||||||
for group in missing_groups:
|
for group in missing_groups:
|
||||||
Logger.print_status(f"Adding user '{CURRENT_USER}' to group {group} ...")
|
Logger.print_status(f"Adding user '{CURRENT_USER}' to group {group} ...")
|
||||||
command = ["sudo", "usermod", "-a", "-G", group, CURRENT_USER]
|
command = ["sudo", "usermod", "-a", "-G", group, CURRENT_USER]
|
||||||
subprocess.run(command, check=True)
|
run(command, check=True)
|
||||||
Logger.print_ok(f"Group {group} assigned to user '{CURRENT_USER}'.")
|
Logger.print_ok(f"Group {group} assigned to user '{CURRENT_USER}'.")
|
||||||
except subprocess.CalledProcessError as e:
|
except CalledProcessError as e:
|
||||||
Logger.print_error(f"Unable to add user to usergroups: {e}")
|
Logger.print_error(f"Unable to add user to usergroups: {e}")
|
||||||
raise
|
raise
|
||||||
|
|
||||||
@@ -246,13 +246,13 @@ def handle_disruptive_system_packages() -> None:
|
|||||||
services = []
|
services = []
|
||||||
|
|
||||||
command = ["systemctl", "is-enabled", "brltty"]
|
command = ["systemctl", "is-enabled", "brltty"]
|
||||||
brltty_status = subprocess.run(command, capture_output=True, text=True)
|
brltty_status = run(command, capture_output=True, text=True)
|
||||||
|
|
||||||
command = ["systemctl", "is-enabled", "brltty-udev"]
|
command = ["systemctl", "is-enabled", "brltty-udev"]
|
||||||
brltty_udev_status = subprocess.run(command, capture_output=True, text=True)
|
brltty_udev_status = run(command, capture_output=True, text=True)
|
||||||
|
|
||||||
command = ["systemctl", "is-enabled", "ModemManager"]
|
command = ["systemctl", "is-enabled", "ModemManager"]
|
||||||
modem_manager_status = subprocess.run(command, capture_output=True, text=True)
|
modem_manager_status = run(command, capture_output=True, text=True)
|
||||||
|
|
||||||
if "enabled" in brltty_status.stdout:
|
if "enabled" in brltty_status.stdout:
|
||||||
services.append("brltty")
|
services.append("brltty")
|
||||||
@@ -264,7 +264,7 @@ def handle_disruptive_system_packages() -> None:
|
|||||||
for service in services if services else []:
|
for service in services if services else []:
|
||||||
try:
|
try:
|
||||||
cmd_sysctl_service(service, "mask")
|
cmd_sysctl_service(service, "mask")
|
||||||
except subprocess.CalledProcessError:
|
except CalledProcessError:
|
||||||
Logger.print_dialog(
|
Logger.print_dialog(
|
||||||
DialogType.WARNING,
|
DialogType.WARNING,
|
||||||
[
|
[
|
||||||
@@ -286,8 +286,7 @@ def detect_name_scheme(instance_list: List[BaseInstance]) -> NameScheme:
|
|||||||
|
|
||||||
|
|
||||||
def get_highest_index(instance_list: List[Klipper]) -> int:
|
def get_highest_index(instance_list: List[Klipper]) -> int:
|
||||||
indices = [int(instance.suffix.split("-")[-1]) for instance in instance_list]
|
return max([int(instance.suffix.split("-")[-1]) for instance in instance_list])
|
||||||
return max(indices)
|
|
||||||
|
|
||||||
|
|
||||||
def create_example_printer_cfg(
|
def create_example_printer_cfg(
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
import shutil
|
import shutil
|
||||||
import textwrap
|
import textwrap
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Type, Optional, Tuple
|
from typing import Optional, Tuple, Type
|
||||||
|
|
||||||
from components.klipper import KLIPPER_DIR
|
from components.klipper import KLIPPER_DIR
|
||||||
from components.klipper.klipper import Klipper
|
from components.klipper.klipper import Klipper
|
||||||
@@ -19,10 +19,10 @@ from core.instance_manager.instance_manager import InstanceManager
|
|||||||
from core.menus import Option
|
from core.menus import Option
|
||||||
from core.menus.base_menu import BaseMenu
|
from core.menus.base_menu import BaseMenu
|
||||||
from core.settings.kiauh_settings import KiauhSettings
|
from core.settings.kiauh_settings import KiauhSettings
|
||||||
from utils.constants import COLOR_CYAN, RESET_FORMAT, COLOR_GREEN, COLOR_YELLOW
|
from utils.constants import COLOR_CYAN, COLOR_GREEN, RESET_FORMAT
|
||||||
from utils.git_utils import git_clone_wrapper
|
from utils.git_utils import git_clone_wrapper
|
||||||
from utils.input_utils import get_string_input, get_confirm
|
from utils.input_utils import get_confirm, get_string_input
|
||||||
from utils.logger import Logger
|
from utils.logger import DialogType, Logger
|
||||||
|
|
||||||
|
|
||||||
# noinspection PyUnusedLocal
|
# noinspection PyUnusedLocal
|
||||||
@@ -88,7 +88,7 @@ class SettingsMenu(BaseMenu):
|
|||||||
| 3) Toggle unstable Mainsail releases |
|
| 3) Toggle unstable Mainsail releases |
|
||||||
| 4) Toggle unstable Fluidd releases |
|
| 4) Toggle unstable Fluidd releases |
|
||||||
| |
|
| |
|
||||||
| 5) Toggle automatic backups before updates |
|
| 5) Toggle automatic backups before updates |
|
||||||
"""
|
"""
|
||||||
)[1:]
|
)[1:]
|
||||||
print(menu, end="")
|
print(menu, end="")
|
||||||
@@ -100,12 +100,17 @@ class SettingsMenu(BaseMenu):
|
|||||||
self._format_repo_str("moonraker")
|
self._format_repo_str("moonraker")
|
||||||
|
|
||||||
self.auto_backups_enabled = self.kiauh_settings.get(
|
self.auto_backups_enabled = self.kiauh_settings.get(
|
||||||
"kiauh", "backup_before_update"
|
"kiauh",
|
||||||
|
"backup_before_update",
|
||||||
)
|
)
|
||||||
self.mainsail_unstable = self.kiauh_settings.get(
|
self.mainsail_unstable = self.kiauh_settings.get(
|
||||||
"mainsail", "unstable_releases"
|
"mainsail",
|
||||||
|
"unstable_releases",
|
||||||
|
)
|
||||||
|
self.fluidd_unstable = self.kiauh_settings.get(
|
||||||
|
"fluidd",
|
||||||
|
"unstable_releases",
|
||||||
)
|
)
|
||||||
self.fluidd_unstable = self.kiauh_settings.get("fluidd", "unstable_releases")
|
|
||||||
|
|
||||||
def _format_repo_str(self, repo_name: str) -> None:
|
def _format_repo_str(self, repo_name: str) -> None:
|
||||||
repo = self.kiauh_settings.get(repo_name, "repo_url")
|
repo = self.kiauh_settings.get(repo_name, "repo_url")
|
||||||
@@ -115,20 +120,16 @@ class SettingsMenu(BaseMenu):
|
|||||||
setattr(self, f"{repo_name}_repo", f"{COLOR_CYAN}{repo}{RESET_FORMAT} {branch}")
|
setattr(self, f"{repo_name}_repo", f"{COLOR_CYAN}{repo}{RESET_FORMAT} {branch}")
|
||||||
|
|
||||||
def _gather_input(self) -> Tuple[str, str]:
|
def _gather_input(self) -> Tuple[str, str]:
|
||||||
l2 = "Make sure your input is correct!"
|
Logger.print_dialog(
|
||||||
error = textwrap.dedent(
|
DialogType.ATTENTION,
|
||||||
f"""\n
|
[
|
||||||
{COLOR_YELLOW}/=======================================================\\
|
"There is no input validation in place! Make sure your"
|
||||||
| ATTENTION: |
|
" input is valid and has no typos! For any change to"
|
||||||
| There is no input validation in place! Make sure your |
|
" take effect, the repository must be cloned again. "
|
||||||
| input is valid and has no typos! For any change to |
|
"Make sure you don't have any ongoing prints running, "
|
||||||
| take effect, the repository must be cloned again. |
|
"as the services will be restarted!"
|
||||||
| Make sure you don't have any ongoing prints running, |
|
],
|
||||||
| as the services will be restarted! |
|
)
|
||||||
\=======================================================/{RESET_FORMAT}
|
|
||||||
"""
|
|
||||||
)[1:]
|
|
||||||
print(error, end="\n")
|
|
||||||
repo = get_string_input(
|
repo = get_string_input(
|
||||||
"Enter new repository URL",
|
"Enter new repository URL",
|
||||||
allow_special_chars=True,
|
allow_special_chars=True,
|
||||||
@@ -140,44 +141,35 @@ class SettingsMenu(BaseMenu):
|
|||||||
|
|
||||||
return repo, branch
|
return repo, branch
|
||||||
|
|
||||||
def _display_summary(self, name: str, repo: str, branch: str):
|
|
||||||
l1 = f"New {name} repository URL:"
|
|
||||||
l2 = f"● {repo}"
|
|
||||||
l3 = f"New {name} repository branch:"
|
|
||||||
l4 = f"● {branch}"
|
|
||||||
summary = textwrap.dedent(
|
|
||||||
f"""\n
|
|
||||||
/=======================================================\\
|
|
||||||
| {l1:<52} |
|
|
||||||
| {l2:<52} |
|
|
||||||
| {l3:<52} |
|
|
||||||
| {l4:<52} |
|
|
||||||
\=======================================================/
|
|
||||||
"""
|
|
||||||
)[1:]
|
|
||||||
print(summary, end="")
|
|
||||||
|
|
||||||
def _set_repo(self, repo_name: str):
|
def _set_repo(self, repo_name: str):
|
||||||
repo, branch = self._gather_input()
|
repo_url, branch = self._gather_input()
|
||||||
self._display_summary(repo_name.capitalize(), repo, branch)
|
display_name = repo_name.capitalize()
|
||||||
|
Logger.print_dialog(
|
||||||
|
DialogType.CUSTOM,
|
||||||
|
[
|
||||||
|
f"New {display_name} repository URL:",
|
||||||
|
f"● {repo_url}",
|
||||||
|
f"New {display_name} repository branch:",
|
||||||
|
f"● {branch}",
|
||||||
|
],
|
||||||
|
end="",
|
||||||
|
)
|
||||||
|
|
||||||
if get_confirm("Apply changes?", allow_go_back=True):
|
if get_confirm("Apply changes?", allow_go_back=True):
|
||||||
self.kiauh_settings.set(repo_name, "repo_url", repo)
|
self.kiauh_settings.set(repo_name, "repo_url", repo_url)
|
||||||
self.kiauh_settings.set(repo_name, "branch", branch)
|
self.kiauh_settings.set(repo_name, "branch", branch)
|
||||||
self.kiauh_settings.save()
|
self.kiauh_settings.save()
|
||||||
self._load_settings()
|
self._load_settings()
|
||||||
Logger.print_ok("Changes saved!")
|
Logger.print_ok("Changes saved!")
|
||||||
else:
|
else:
|
||||||
Logger.print_info(
|
Logger.print_info(
|
||||||
f"Skipping change of {repo_name.capitalize()} source repository ..."
|
f"Skipping change of {display_name} source repository ..."
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
Logger.print_status(
|
Logger.print_status(f"Switching to {display_name}'s new source repository ...")
|
||||||
f"Switching to {repo_name.capitalize()}'s new source repository ..."
|
|
||||||
)
|
|
||||||
self._switch_repo(repo_name)
|
self._switch_repo(repo_name)
|
||||||
Logger.print_ok(f"Switched to {repo} at branch {branch}!")
|
Logger.print_ok(f"Switched to {repo_url} at branch {branch}!")
|
||||||
|
|
||||||
def _switch_repo(self, name: str) -> None:
|
def _switch_repo(self, name: str) -> None:
|
||||||
target_dir: Path
|
target_dir: Path
|
||||||
@@ -211,17 +203,27 @@ class SettingsMenu(BaseMenu):
|
|||||||
|
|
||||||
def toggle_mainsail_release(self, **kwargs):
|
def toggle_mainsail_release(self, **kwargs):
|
||||||
self.mainsail_unstable = not self.mainsail_unstable
|
self.mainsail_unstable = not self.mainsail_unstable
|
||||||
self.kiauh_settings.set("mainsail", "unstable_releases", self.mainsail_unstable)
|
self.kiauh_settings.set(
|
||||||
|
"mainsail",
|
||||||
|
"unstable_releases",
|
||||||
|
self.mainsail_unstable,
|
||||||
|
)
|
||||||
self.kiauh_settings.save()
|
self.kiauh_settings.save()
|
||||||
|
|
||||||
def toggle_fluidd_release(self, **kwargs):
|
def toggle_fluidd_release(self, **kwargs):
|
||||||
self.fluidd_unstable = not self.fluidd_unstable
|
self.fluidd_unstable = not self.fluidd_unstable
|
||||||
self.kiauh_settings.set("fluidd", "unstable_releases", self.fluidd_unstable)
|
self.kiauh_settings.set(
|
||||||
|
"fluidd",
|
||||||
|
"unstable_releases",
|
||||||
|
self.fluidd_unstable,
|
||||||
|
)
|
||||||
self.kiauh_settings.save()
|
self.kiauh_settings.save()
|
||||||
|
|
||||||
def toggle_backup_before_update(self, **kwargs):
|
def toggle_backup_before_update(self, **kwargs):
|
||||||
self.auto_backups_enabled = not self.auto_backups_enabled
|
self.auto_backups_enabled = not self.auto_backups_enabled
|
||||||
self.kiauh_settings.set(
|
self.kiauh_settings.set(
|
||||||
"kiauh", "backup_before_update", self.auto_backups_enabled
|
"kiauh",
|
||||||
|
"backup_before_update",
|
||||||
|
self.auto_backups_enabled,
|
||||||
)
|
)
|
||||||
self.kiauh_settings.save()
|
self.kiauh_settings.save()
|
||||||
|
|||||||
@@ -17,3 +17,5 @@ indent-style = "space"
|
|||||||
line-ending = "lf"
|
line-ending = "lf"
|
||||||
quote-style = "double"
|
quote-style = "double"
|
||||||
|
|
||||||
|
[tool.ruff.lint]
|
||||||
|
extend-select = ["I"]
|
||||||
|
|||||||
Reference in New Issue
Block a user