From a725149b0bcbdec5f352b5eff918301cccb10d3a Mon Sep 17 00:00:00 2001
From: Christoph Alt <christoph.alt@fau.de>
Date: Tue, 2 Aug 2022 17:25:49 +0200
Subject: [PATCH] added git utility to util

---
 cbutil/util.py | 40 ++++++++++++++++++++++++++++++++++++++++
 setup.py       |  3 ++-
 2 files changed, 42 insertions(+), 1 deletion(-)

diff --git a/cbutil/util.py b/cbutil/util.py
index 4a21e99..5993775 100644
--- a/cbutil/util.py
+++ b/cbutil/util.py
@@ -1,6 +1,46 @@
+import git
+
+from typing import Union, Tuple
+from pathlib import Path
+
+
+def remove_newline(string: str) -> str:
+    return string.replace("\n", " ").strip()
+
 
 def read_file_line_wise(path):
     """Linewise generator of a file """
     with open(path, "r") as file_to_read:
         for line in file_to_read.readlines():
             yield line.strip("\n")
+
+
+def get_repo(repo_path: Union[Path, str]) -> git.Repo:
+    return git.Repo(repo_path)
+
+
+def get_current_head(repo: git.Repo) -> git.Commit:
+    return repo.head.commit
+
+
+def get_commit_infos(commit) -> Tuple[str, str]:
+    return commit.hexsha, commit.message
+
+
+def get_head_info(repo_path: Path):
+    return get_commit_infos(get_current_head(get_repo(repo_path)))
+
+
+def get_submodule(submodule_name: str, repo: git.Repo) -> git.Submodule:
+    return repo.submodule(submodule_name)
+
+
+def get_submodule_path(submodule_name: str, repo_path: Union[Path, str] = ".") -> Path:
+    submodule_path = get_submodule(submodule_name, get_repo(repo_path)).path
+    return Path(repo_path, submodule_path)
+
+
+def get_git_infos(repo_path: Union[Path, str], *, commit_key="commit", commit_msg_key="commit_message"):
+    commit, commit_msg = get_commit_infos(get_current_head(get_repo(repo_path)))
+    commit_msg = remove_newline(commit_msg)
+    return {commit_key: commit, commit_msg_key: commit_msg}
diff --git a/setup.py b/setup.py
index b6d856d..6c26fd6 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,8 @@ setup(name="cb-util",
       packages=find_packages(include=["cbutil"]),
       install_requires=[
           "python-dotenv",
-          "influxdb"
+          "influxdb",
+          "gitpython",
       ],
       setup_requires=['pytest-runner'],
       tests_require=['pytest']
-- 
GitLab