Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3767094
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/roles/saltmaster/software/files/staging-commit-message.py b/roles/saltmaster/software/files/staging-commit-message.py
new file mode 100755
index 0000000..b5f0acc
--- /dev/null
+++ b/roles/saltmaster/software/files/staging-commit-message.py
@@ -0,0 +1,95 @@
+#!/usr/bin/env python3
+
+# -------------------------------------------------------------
+# Staging :: write a commit message for submodule update
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+# Project: Nasqueron
+# Created: 2018-10-27
+# License: Trivial work, not eligible to copyright
+#
+# Thanks to joki for the git diff-files and ls-tree hint
+# https://stackoverflow.com/a/52908906/1930997
+# -------------------------------------------------------------
+
+
+from git import Repo
+from os import path
+import re
+import subprocess
+
+
+staging_repo_path = '/opt/salt/staging'
+
+
+class SubmoduleCommit:
+
+ def __init__(self, repo_path, submodule_path):
+ self.repo_path = repo_path
+ self.submodule_path = submodule_path
+ self.repo = Repo(self.submodule_path)
+
+ def craft_commit(self):
+ lines = []
+
+ old_hash = self.get_old_hash()
+ new_hash = self.get_new_hash()
+
+ lines.append("Bump " + path.basename(self.submodule_path)
+ + " to " + new_hash[:12])
+ lines.append("")
+ lines.extend(self.get_commits_lines(old_hash, new_hash))
+
+ return "\n".join(lines)
+
+ def get_old_hash(self):
+ output = subprocess.check_output(['git', 'ls-tree',
+ '@', self.submodule_path],
+ cwd=self.repo_path,
+ encoding="utf-8")
+ matches = re.search('.*commit ([a-f0-9]*).*', output.strip())
+ return matches.group(1)
+
+ def get_new_hash(self):
+ return str(self.repo.head.commit)
+
+ @staticmethod
+ def format_commit_line(commit):
+ commit_hash = str(commit)[:12]
+ title = commit.message.split("\n")[0]
+
+ return " * {} {}".format(commit_hash, title)
+
+ def get_commits_lines(self, hash_base, hash_head):
+ commits_lines = []
+
+ for commit in self.repo.iter_commits(hash_head):
+ if str(commit) == hash_base:
+ break
+
+ line = self.format_commit_line(commit)
+ commits_lines.append(line)
+
+ return commits_lines
+
+ def has_submodule_been_updated(self):
+ process = subprocess.run(['git', 'diff-files', '--quiet',
+ self.submodule_path],
+ cwd=self.repo_path)
+ return process.returncode != 0
+
+
+def run(repo_path):
+ repo = Repo(repo_path)
+
+ submodules = [SubmoduleCommit(repo_path, submodule.name)
+ for submodule in repo.submodules]
+
+ commits = [submodule.craft_commit()
+ for submodule in submodules
+ if submodule.has_submodule_been_updated()]
+
+ print("\n\n".join(commits))
+
+
+if __name__ == "__main__":
+ run(staging_repo_path)
diff --git a/roles/saltmaster/software/init.sls b/roles/saltmaster/software/init.sls
index af63fcb..4651d67 100644
--- a/roles/saltmaster/software/init.sls
+++ b/roles/saltmaster/software/init.sls
@@ -1,19 +1,26 @@
# -------------------------------------------------------------
# Salt — Provision a salt master
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Project: Nasqueron
# Created: 2018-10-04
# License: Trivial work, not eligible to copyright
# -------------------------------------------------------------
-{% from "map.jinja" import packages_prefixes with context %}
+{% from "map.jinja" import dirs, packages_prefixes with context %}
# -------------------------------------------------------------
# Additional software
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
install_salt_extra_software:
pkg.installed:
- pkgs:
# Jenkins execution module
- {{ packages_prefixes.python3 }}python-jenkins
+ # For staging-commit-message
+ - {{ packages_prefixes.python3 }}GitPython
+
+{{ dirs.bin }}/staging-commit-message:
+ file.managed:
+ - source: salt://roles/saltmaster/software/files/staging-commit-message.py
+ - mode: 755
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sun, Nov 24, 22:23 (9 h, 44 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2259036
Default Alt Text
(4 KB)
Attached To
Mode
rOPS Nasqueron Operations
Attached
Detach File
Event Timeline
Log In to Comment