[IMP] script format: support format detected all repo
This commit is contained in:
parent
7a05cd29b8
commit
8ab3883b22
1 changed files with 73 additions and 45 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
# © 2021-2025 TechnoLibre (http://www.technolibre.ca)
|
# © 2021-2025 TechnoLibre (http://www.technolibre.ca)
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
||||||
|
|
||||||
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
IGNORE_EXTENSION = []
|
IGNORE_EXTENSION = []
|
||||||
|
|
@ -15,62 +16,89 @@ def execute_shell(cmd):
|
||||||
|
|
||||||
def get_modified_files():
|
def get_modified_files():
|
||||||
lst_cmd_git_status = ["git", "status", "--porcelain"]
|
lst_cmd_git_status = ["git", "status", "--porcelain"]
|
||||||
print(" ".join(lst_cmd_git_status))
|
lst_cmd_git_status_repo = [
|
||||||
|
".venv.erplibre/bin/repo",
|
||||||
|
"forall",
|
||||||
|
"-p",
|
||||||
|
"-c",
|
||||||
|
"git status -s",
|
||||||
|
]
|
||||||
try:
|
try:
|
||||||
|
print(" ".join(lst_cmd_git_status))
|
||||||
result = subprocess.run(
|
result = subprocess.run(
|
||||||
lst_cmd_git_status,
|
lst_cmd_git_status,
|
||||||
capture_output=True,
|
capture_output=True,
|
||||||
text=True,
|
text=True,
|
||||||
check=True,
|
check=True,
|
||||||
)
|
)
|
||||||
lines = result.stdout.strip().split("\n")
|
lines_local = result.stdout.strip().split("\n")
|
||||||
|
|
||||||
|
lst_lines = [(".", lines_local)]
|
||||||
|
|
||||||
|
print(" ".join(lst_cmd_git_status_repo))
|
||||||
|
|
||||||
|
result = subprocess.run(
|
||||||
|
lst_cmd_git_status_repo,
|
||||||
|
capture_output=True,
|
||||||
|
text=True,
|
||||||
|
check=True,
|
||||||
|
)
|
||||||
|
lines_project = result.stdout.strip().split("\n\n")
|
||||||
|
for str_project_line in lines_project:
|
||||||
|
line_repo = str_project_line.split("\n")
|
||||||
|
projet_name = line_repo[0]
|
||||||
|
lines_local = line_repo[1:]
|
||||||
|
directory_project = projet_name[len("project ") :]
|
||||||
|
lst_lines.append((directory_project, lines_local))
|
||||||
|
|
||||||
modified_files = []
|
modified_files = []
|
||||||
for line in lines:
|
for directory, lines in lst_lines:
|
||||||
if not line:
|
for line in lines:
|
||||||
continue
|
if not line:
|
||||||
|
continue
|
||||||
|
|
||||||
try:
|
try:
|
||||||
has_space = False
|
has_space = False
|
||||||
file_path_space = ""
|
file_path_space = ""
|
||||||
if '"' in line:
|
if '"' in line:
|
||||||
has_space = True
|
has_space = True
|
||||||
file_path_space = line[
|
file_path_space = line[
|
||||||
line.index('"') + 1 : line.rindex('"')
|
line.index('"') + 1 : line.rindex('"')
|
||||||
]
|
]
|
||||||
line = line.replace(f'"{file_path_space}"', "replace")
|
line = line.replace(f'"{file_path_space}"', "replace")
|
||||||
if "->" in line:
|
if "->" in line:
|
||||||
# Example : M file_01 -> file_02
|
# Example : M file_01 -> file_02
|
||||||
status, old_file_path, code, file_path = (
|
status, old_file_path, code, file_path = (
|
||||||
line.strip().replace(" ", " ").split(" ")
|
line.strip().replace(" ", " ").split(" ")
|
||||||
)
|
)
|
||||||
|
else:
|
||||||
|
# Example : M file_01
|
||||||
|
status, file_path = (
|
||||||
|
line.strip().replace(" ", " ").split(" ")
|
||||||
|
)
|
||||||
|
if has_space:
|
||||||
|
file_path = file_path_space
|
||||||
|
file_path = os.path.join(directory, file_path)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
print(f"'{line}'")
|
||||||
|
raise e
|
||||||
|
|
||||||
|
if (
|
||||||
|
status == "M"
|
||||||
|
or status == "A"
|
||||||
|
or status == "AM"
|
||||||
|
or status == "MM"
|
||||||
|
or status == "R"
|
||||||
|
or status == "RM"
|
||||||
|
or status == "??"
|
||||||
|
):
|
||||||
|
modified_files.append((status, file_path))
|
||||||
|
elif status == "D":
|
||||||
|
# Ignore to format removed file
|
||||||
|
pass
|
||||||
else:
|
else:
|
||||||
# Example : M file_01
|
print(f"Not supported status '{status}'")
|
||||||
status, file_path = (
|
|
||||||
line.strip().replace(" ", " ").split(" ")
|
|
||||||
)
|
|
||||||
if has_space:
|
|
||||||
file_path = file_path_space
|
|
||||||
|
|
||||||
except Exception as e:
|
|
||||||
print(f"'{line}'")
|
|
||||||
raise e
|
|
||||||
|
|
||||||
if (
|
|
||||||
status == "M"
|
|
||||||
or status == "A"
|
|
||||||
or status == "AM"
|
|
||||||
or status == "MM"
|
|
||||||
or status == "R"
|
|
||||||
or status == "RM"
|
|
||||||
or status == "??"
|
|
||||||
):
|
|
||||||
modified_files.append((status, file_path))
|
|
||||||
elif status == "D":
|
|
||||||
# Ignore to format removed file
|
|
||||||
pass
|
|
||||||
else:
|
|
||||||
print(f"Not supported status '{status}'")
|
|
||||||
|
|
||||||
return modified_files
|
return modified_files
|
||||||
except subprocess.CalledProcessError as e:
|
except subprocess.CalledProcessError as e:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue