-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathtools.py
81 lines (56 loc) · 2.19 KB
/
tools.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
# Copyright (C) 2019 - Today: GRAP (http://www.grap.coop)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
import subprocess
import re
import pathlib
from .config import _AVAILABLE_MIGRATION_STEPS
from .log import logger
def _get_available_init_version_names():
return [x["init_version_name"] for x in _AVAILABLE_MIGRATION_STEPS]
def _get_available_target_version_names():
return [x["target_version_name"] for x in _AVAILABLE_MIGRATION_STEPS]
def _get_latest_version_name():
return _AVAILABLE_MIGRATION_STEPS[-1]["target_version_name"]
def _get_latest_version_code():
return _AVAILABLE_MIGRATION_STEPS[-1]["target_version_code"]
def _execute_shell(shell_command, path=False, raise_error=True):
if path:
shell_command = "cd '%s' && %s" % (str(path.resolve()), shell_command)
logger.debug("Execute Shell:\n%s" % (shell_command))
if raise_error:
return subprocess.check_output(shell_command, shell=True)
else:
return subprocess.run(shell_command, shell=True)
def _read_content(file_path):
f = open(file_path, "r")
text = f.read()
f.close()
return text
def _write_content(file_path, content):
f = open(file_path, "w")
f.write(content)
f.close()
def _replace_in_file(file_path, replaces, log_message=False):
current_text = _read_content(file_path)
new_text = current_text
for old_term, new_term in replaces.items():
new_text = re.sub(old_term, new_term or "", new_text)
# Write file if changed
if new_text != current_text:
if not log_message:
log_message = "Changing content of file: %s" % file_path.name
logger.info(log_message)
_write_content(file_path, new_text)
return new_text
def get_files(module_path, extensions):
"""
Returns a list of files with the specified extensions within the module_path.
"""
file_paths = []
module_dir = pathlib.Path(module_path)
if not module_dir.is_dir():
raise Exception(f"'{module_path}' is not a valid directory.")
for ext in extensions:
file_paths.extend(module_dir.rglob(f"*{ext}"))
return file_paths