import argparse
|
|
import os
|
|
|
|
from transpose import Transpose, version, DEFAULT_STORE_PATH, DEFAULT_CACHE_FILENAME
|
|
|
|
|
|
def entry_point() -> None:
|
|
store_path = os.environ.get("TRANSPOSE_STORE_PATH", DEFAULT_STORE_PATH)
|
|
cache_filename = os.environ.get("TRANSPOSE_CACHE_FILENAME", DEFAULT_CACHE_FILENAME)
|
|
|
|
args = parse_arguments()
|
|
|
|
t = Transpose(
|
|
target_path=args.target_path,
|
|
store_path=store_path,
|
|
cache_filename=cache_filename,
|
|
force=args.force,
|
|
)
|
|
|
|
if args.action == "restore":
|
|
t.restore()
|
|
elif args.action == "store":
|
|
t.store(name=args.name)
|
|
|
|
|
|
def parse_arguments():
|
|
base_parser = argparse.ArgumentParser(add_help=False)
|
|
parser = argparse.ArgumentParser(
|
|
parents=[base_parser],
|
|
description="""
|
|
Move and symlink a path for easier management
|
|
""",
|
|
)
|
|
parser.add_argument(
|
|
"-f",
|
|
"--force",
|
|
action="store_true",
|
|
help="Force directory moves. For instance, create the store path if it does not exist",
|
|
)
|
|
parser.add_argument("--version", action="version", version=f"Transpose {version}")
|
|
|
|
subparsers = parser.add_subparsers(
|
|
help="Transpose Action", dest="action", required=True
|
|
)
|
|
|
|
restore_parser = subparsers.add_parser(
|
|
"restore",
|
|
help="Move a transposed directory back to it's original location",
|
|
parents=[base_parser],
|
|
)
|
|
restore_parser.add_argument(
|
|
"target_path",
|
|
help="The path to the directory to restore",
|
|
)
|
|
|
|
store_parser = subparsers.add_parser(
|
|
"store", help="Move target and create symlink in place", parents=[base_parser]
|
|
)
|
|
store_parser.add_argument(
|
|
"name",
|
|
help="The name of the directory that will be created in the store path",
|
|
)
|
|
store_parser.add_argument(
|
|
"target_path",
|
|
help="The path to the directory to be stored",
|
|
)
|
|
|
|
return parser.parse_args()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
entry_point()
|