1

Add an auto-discovery command to basejump

This commit is contained in:
Evan Pratten 2023-11-20 12:24:45 -05:00
parent 933692bdf3
commit 1c875b7f21
2 changed files with 59 additions and 1 deletions

View File

@ -12,7 +12,7 @@ def main() -> int:
# Handle program arguments
ap = argparse.ArgumentParser(prog="basejump")
ap.add_argument(
"subcommand", help="The subcommand to run", choices=["init", "fetch"]
"subcommand", help="The subcommand to run", choices=["init", "fetch", "discover"]
)
ap.add_argument("arguments", nargs=argparse.REMAINDER)
args = ap.parse_args()

58
scripts/basejump-discover Executable file
View File

@ -0,0 +1,58 @@
#! /usr/bin/env python
import argparse
import sys
import logging
import subprocess
from pprint import pprint
from pathlib import Path
logger = logging.getLogger(__name__)
def main() -> int:
# Handle program arguments
ap = argparse.ArgumentParser(
prog="basejump discover", description="Discover repos in a codebase"
)
ap.add_argument("root_path", help="The root path of the codebase", type=Path)
ap.add_argument(
"-v", "--verbose", help="Enable verbose logging", action="store_true"
)
args = ap.parse_args()
# Configure logging
logging.basicConfig(
level=logging.DEBUG if args.verbose else logging.INFO,
format="%(levelname)s: %(message)s",
)
# Find all git repos in the codebase
logger.info(f"Searching for git repos in: {args.root_path}")
repos = []
for path in args.root_path.rglob(".git"):
repos.append({"path":str(path.parent.absolute())})
# For each repo, find the upstream
logger.info("Finding upstream URLs...")
for repo in repos:
# Get the upstream URL
upstream_url = subprocess.run(
["git", "remote", "get-url", "origin"],
cwd=repo["path"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
encoding="utf-8",
).stdout.strip()
# Add the upstream URL to the repo config
repo["upstream"] = upstream_url
# Print the results
logger.info("Found the following repos:")
pprint(repos)
return 0
if __name__ == "__main__":
sys.exit(main())