This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
DeepSea/common.py
2020-05-13 15:23:19 +02:00

104 lines
2.8 KiB
Python

#
# Kosmos Builder
# Copyright (C) 2020 Nichole Mattera
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
#
import enum
import glob
from pathlib import Path
import re
import shutil
import uuid
class Command(enum.Enum):
Kosmos = 0
SDSetup = 1
KosmosMinimal = 2
class GitService(enum.Enum):
GitHub = 0
GitLab = 1
SourceForge = 2
def generate_temp_path():
return Path.cwd().joinpath('tmp', str(uuid.uuid4()))
def delete(source):
sourcePath = Path(source)
if not sourcePath.exists():
return
if sourcePath.is_file():
sourcePath.unlink()
return
for fileSourcePath in sourcePath.iterdir():
delete(fileSourcePath)
if fileSourcePath.is_dir():
fileSourcePath.rmdir()
if sourcePath.is_dir():
sourcePath.rmdir()
return
def copy_module_file(module_name, file_name, destination):
sourcePath = Path.cwd().joinpath('Modules', module_name, file_name)
return shutil.copyfile(sourcePath, destination)
def copy_module_folder(module_name, folder_name, destination):
sourcePath = Path.cwd().joinpath('Modules', module_name, file_name)
return shutil.copytree(sourcePath, destination)
def find_file(pattern):
return glob.glob(str(pattern), recursive=False)
def sed(pattern, replace, file_path):
lines = []
with open(file_path, 'r') as text_file:
lines += text_file.readlines()
with open(file_path, 'w') as text_file:
for line in lines:
text_file.write(re.sub(pattern, replace, line))
def mkdir(dest):
Path(dest).mkdir(parents=True, exist_ok=True)
def move(source, dest):
sourcePath = Path(source)
destPath = Path(dest)
if not sourcePath.exists():
return
if sourcePath.is_file():
sourcePath.rename(destPath)
return
if not destPath.exists():
destPath.mkdir(parents=True, exist_ok=True)
for fileSourcePath in sourcePath.iterdir():
fileDestPath = destPath.joinpath(fileSourcePath.name)
if fileSourcePath.is_dir():
fileDestPath.mkdir(parents=True, exist_ok=True)
move(fileSourcePath, fileDestPath)