refactor(Mainsail): refactor methods for removing and checking files

Signed-off-by: Dominik Willner <th33xitus@gmail.com>
This commit is contained in:
dw-0
2023-12-22 22:39:43 +01:00
parent 22e8e314db
commit 8ff0b9d81d
5 changed files with 47 additions and 37 deletions

View File

@@ -23,19 +23,25 @@ from kiauh.utils import (
from kiauh.utils.logger import Logger
def check_file_exist(file_path: Path) -> bool:
def check_file_exist(file_path: Path, sudo=False) -> bool:
"""
Helper function for checking the existence of a file where
elevated permissions are required |
Helper function for checking the existence of a file |
:param file_path: the absolute path of the file to check
:return: True if file exists, otherwise False
:param sudo: use sudo if required
:return: True, if file exists, otherwise False
"""
try:
command = ["sudo", "find", file_path]
subprocess.check_output(command, stderr=subprocess.DEVNULL)
return True
except subprocess.CalledProcessError:
return False
if sudo:
try:
command = ["sudo", "find", file_path]
subprocess.check_output(command, stderr=subprocess.DEVNULL)
return True
except subprocess.CalledProcessError:
return False
else:
if Path(file_path).exists():
return True
else:
return False
def create_directory(_dir: Path) -> None:
@@ -66,8 +72,8 @@ def create_symlink(source: Path, target: Path, sudo=False) -> None:
def remove_file(file_path: Path, sudo=False) -> None:
try:
command = f"{'sudo ' if sudo else ''}rm -f {file_path}"
subprocess.run(command, stderr=subprocess.PIPE, check=True, shell=True)
cmd = f"{'sudo ' if sudo else ''}rm -f {file_path}"
subprocess.run(cmd, stderr=subprocess.PIPE, check=True, shell=True)
except subprocess.CalledProcessError as e:
log = f"Cannot remove file {file_path}: {e.stderr.decode()}"
Logger.print_error(log)
@@ -85,7 +91,7 @@ def unzip(file: str, target_dir: str) -> None:
_zip.extractall(target_dir)
def create_upstream_nginx_cfg() -> None:
def copy_upstream_nginx_cfg() -> None:
"""
Creates an upstream.conf in /etc/nginx/conf.d
:return: None
@@ -101,7 +107,7 @@ def create_upstream_nginx_cfg() -> None:
raise
def create_common_vars_nginx_cfg() -> None:
def copy_common_vars_nginx_cfg() -> None:
"""
Creates a common_vars.conf in /etc/nginx/conf.d
:return: None
@@ -152,7 +158,7 @@ def delete_default_nginx_cfg() -> None:
:return: None
"""
default_cfg = Path("/etc/nginx/sites-enabled/default")
if not check_file_exist(default_cfg):
if not check_file_exist(default_cfg, True):
return
try:
@@ -172,7 +178,7 @@ def enable_nginx_cfg(name: str) -> None:
"""
source = os.path.join(NGINX_SITES_AVAILABLE, name)
target = os.path.join(NGINX_SITES_ENABLED, name)
if check_file_exist(Path(target)):
if check_file_exist(Path(target), True):
return
try:

View File

@@ -19,15 +19,7 @@ import urllib.error
import urllib.request
from pathlib import Path
from typing import List, Literal
from zipfile import ZipFile
from kiauh.utils import (
NGINX_CONFD,
MODULE_PATH,
NGINX_SITES_AVAILABLE,
NGINX_SITES_ENABLED,
)
from kiauh.utils.filesystem_utils import check_file_exist
from kiauh.utils.input_utils import get_confirm
from kiauh.utils.logger import Logger