This commit is contained in:
leo 2023-02-28 10:04:41 +01:00
commit a8106995fa
Signed by: leo
GPG Key ID: 0DD993BFB2B307DB

34
clone_for_markdown.py Normal file
View File

@ -0,0 +1,34 @@
#!/usr/bin/env python3
"""
Python script to parse, clone and return a repo for gitea
in order for asciidoctor to be able to access included files
Doesn't overwrite folder if it already exists, will still return that folder name in that case.
Parameters :
in : a relative path as given by GITEA_PREFIX_SRC (https://docs.gitea.io/en-us/config-cheat-sheet/#markup-markup)
return : The name of the folder containing the cloned repo
"""
#PATH_PREFIX = "/var/lib/gitea/git/repositories"
PATH_PREFIX = ".."
import sys
import subprocess
import os
if(len(sys.argv) != 2):
sys.exit("wrong number of args") # wrong number of args
repo_path = sys.argv[1].split('/',3)
if(len(repo_path)<2):
sys.exit("Wrong path format passed")
repo_name = repo_path[2]
repo_path = "/".join(repo_path[:3])
repo_path = PATH_PREFIX + repo_path
if not os.path.isdir(repo_name):
subprocess.run(["git", "clone", repo_path, repo_name], check=True, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)
print(repo_name)