2023-10-27 00:01:31 +00:00
|
|
|
import hashlib
|
|
|
|
import re
|
|
|
|
import shutil
|
2023-10-25 18:06:58 +00:00
|
|
|
from pathlib import Path
|
2023-10-28 15:25:31 +00:00
|
|
|
from typing import Dict, List, Optional, Sequence, TypedDict
|
2023-10-27 00:01:31 +00:00
|
|
|
|
|
|
|
from git import Repo
|
2023-10-25 18:06:58 +00:00
|
|
|
|
2023-10-26 01:30:02 +00:00
|
|
|
from langchain_cli.constants import (
|
2023-10-27 00:01:31 +00:00
|
|
|
DEFAULT_GIT_REF,
|
2023-10-26 01:30:02 +00:00
|
|
|
DEFAULT_GIT_REPO,
|
|
|
|
DEFAULT_GIT_SUBDIRECTORY,
|
|
|
|
)
|
2023-10-25 18:06:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class DependencySource(TypedDict):
|
|
|
|
git: str
|
|
|
|
ref: Optional[str]
|
|
|
|
subdirectory: Optional[str]
|
2023-10-28 15:25:31 +00:00
|
|
|
api_path: Optional[str]
|
|
|
|
event_metadata: Dict
|
2023-10-25 18:06:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
# use poetry dependency string format
|
2023-10-28 15:25:31 +00:00
|
|
|
def parse_dependency_string(
|
|
|
|
dep: Optional[str],
|
|
|
|
repo: Optional[str],
|
|
|
|
branch: Optional[str],
|
|
|
|
api_path: Optional[str],
|
|
|
|
) -> DependencySource:
|
|
|
|
if dep is not None and dep.startswith("git+"):
|
|
|
|
if repo is not None or branch is not None:
|
|
|
|
raise ValueError(
|
|
|
|
"If a dependency starts with git+, you cannot manually specify "
|
|
|
|
"a repo or branch."
|
|
|
|
)
|
2023-10-25 18:06:58 +00:00
|
|
|
# remove git+
|
2023-10-28 15:25:31 +00:00
|
|
|
gitstring = dep[4:]
|
2023-10-26 01:30:02 +00:00
|
|
|
subdirectory = None
|
|
|
|
ref = None
|
|
|
|
# first check for #subdirectory= on the end
|
|
|
|
if "#subdirectory=" in gitstring:
|
|
|
|
gitstring, subdirectory = gitstring.split("#subdirectory=")
|
|
|
|
if "#" in subdirectory or "@" in subdirectory:
|
|
|
|
raise ValueError(
|
|
|
|
"#subdirectory must be the last part of the dependency string"
|
|
|
|
)
|
|
|
|
|
|
|
|
# find first slash after ://
|
|
|
|
# find @ or # after that slash
|
|
|
|
# remainder is ref
|
|
|
|
# if no @ or #, then ref is None
|
|
|
|
|
|
|
|
# find first slash after ://
|
|
|
|
if "://" not in gitstring:
|
|
|
|
raise ValueError(
|
|
|
|
"git+ dependencies must start with git+https:// or git+ssh://"
|
|
|
|
)
|
|
|
|
|
|
|
|
_, find_slash = gitstring.split("://", 1)
|
|
|
|
|
|
|
|
if "/" not in find_slash:
|
|
|
|
post_slash = find_slash
|
|
|
|
ref = None
|
|
|
|
else:
|
|
|
|
_, post_slash = find_slash.split("/", 1)
|
|
|
|
if "@" in post_slash or "#" in post_slash:
|
|
|
|
_, ref = re.split(r"[@#]", post_slash, 1)
|
|
|
|
|
|
|
|
# gitstring is everything before that
|
|
|
|
gitstring = gitstring[: -len(ref) - 1] if ref is not None else gitstring
|
|
|
|
|
2023-10-25 18:06:58 +00:00
|
|
|
return DependencySource(
|
|
|
|
git=gitstring,
|
2023-10-26 01:30:02 +00:00
|
|
|
ref=ref,
|
|
|
|
subdirectory=subdirectory,
|
2023-10-28 15:25:31 +00:00
|
|
|
api_path=api_path,
|
|
|
|
event_metadata={"dependency_string": dep},
|
2023-10-25 18:06:58 +00:00
|
|
|
)
|
|
|
|
|
2023-10-28 15:25:31 +00:00
|
|
|
elif dep is not None and dep.startswith("https://"):
|
|
|
|
raise ValueError("Only git dependencies are supported")
|
2023-10-25 18:06:58 +00:00
|
|
|
else:
|
2023-10-28 15:25:31 +00:00
|
|
|
# if repo is none, use default, including subdirectory
|
|
|
|
base_subdir = Path(DEFAULT_GIT_SUBDIRECTORY) if repo is None else Path()
|
|
|
|
subdir = str(base_subdir / dep) if dep is not None else None
|
|
|
|
gitstring = (
|
|
|
|
DEFAULT_GIT_REPO
|
|
|
|
if repo is None
|
|
|
|
else f"https://github.com/{repo.strip('/')}.git"
|
|
|
|
)
|
|
|
|
ref = DEFAULT_GIT_REF if branch is None else branch
|
2023-10-25 18:06:58 +00:00
|
|
|
# it's a default git repo dependency
|
2023-10-26 01:30:02 +00:00
|
|
|
return DependencySource(
|
2023-10-28 15:25:31 +00:00
|
|
|
git=gitstring,
|
|
|
|
ref=ref,
|
|
|
|
subdirectory=subdir,
|
|
|
|
api_path=api_path,
|
|
|
|
event_metadata={
|
|
|
|
"dependency_string": dep,
|
|
|
|
"used_repo_flag": repo is not None,
|
|
|
|
"used_branch_flag": branch is not None,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def _list_arg_to_length(arg: Optional[List[str]], num: int) -> Sequence[Optional[str]]:
|
|
|
|
if not arg:
|
|
|
|
return [None] * num
|
|
|
|
elif len(arg) == 1:
|
|
|
|
return arg * num
|
|
|
|
elif len(arg) == num:
|
|
|
|
return arg
|
|
|
|
else:
|
|
|
|
raise ValueError(f"Argument must be of length 1 or {num}")
|
|
|
|
|
|
|
|
|
|
|
|
def parse_dependencies(
|
|
|
|
dependencies: Optional[List[str]],
|
|
|
|
repo: List[str],
|
|
|
|
branch: List[str],
|
|
|
|
api_path: List[str],
|
|
|
|
) -> List[DependencySource]:
|
|
|
|
num_deps = max(
|
|
|
|
len(dependencies) if dependencies is not None else 0, len(repo), len(branch)
|
|
|
|
)
|
|
|
|
if (
|
|
|
|
(dependencies and len(dependencies) != num_deps)
|
|
|
|
or (api_path and len(api_path) != num_deps)
|
|
|
|
or (repo and len(repo) not in [1, num_deps])
|
|
|
|
or (branch and len(branch) not in [1, num_deps])
|
|
|
|
):
|
|
|
|
raise ValueError(
|
|
|
|
"Number of defined repos/branches/api_paths did not match the "
|
2023-10-30 23:39:39 +00:00
|
|
|
"number of templates."
|
2023-10-28 15:25:31 +00:00
|
|
|
)
|
|
|
|
inner_deps = _list_arg_to_length(dependencies, num_deps)
|
|
|
|
inner_api_paths = _list_arg_to_length(api_path, num_deps)
|
|
|
|
inner_repos = _list_arg_to_length(repo, num_deps)
|
|
|
|
inner_branches = _list_arg_to_length(branch, num_deps)
|
|
|
|
|
|
|
|
return [
|
|
|
|
parse_dependency_string(iter_dep, iter_repo, iter_branch, iter_api_path)
|
|
|
|
for iter_dep, iter_repo, iter_branch, iter_api_path in zip(
|
|
|
|
inner_deps, inner_repos, inner_branches, inner_api_paths
|
2023-10-26 01:30:02 +00:00
|
|
|
)
|
2023-10-28 15:25:31 +00:00
|
|
|
]
|
2023-10-25 18:06:58 +00:00
|
|
|
|
|
|
|
|
2023-10-26 01:30:02 +00:00
|
|
|
def _get_repo_path(gitstring: str, repo_dir: Path) -> Path:
|
2023-10-25 18:06:58 +00:00
|
|
|
# only based on git for now
|
|
|
|
hashed = hashlib.sha256(gitstring.encode("utf-8")).hexdigest()[:8]
|
|
|
|
|
|
|
|
removed_protocol = gitstring.split("://")[-1]
|
|
|
|
removed_basename = re.split(r"[/:]", removed_protocol, 1)[-1]
|
|
|
|
removed_extras = removed_basename.split("#")[0]
|
|
|
|
foldername = re.sub(r"[^a-zA-Z0-9_]", "_", removed_extras)
|
|
|
|
|
|
|
|
directory_name = f"{foldername}_{hashed}"
|
|
|
|
return repo_dir / directory_name
|
|
|
|
|
|
|
|
|
2023-10-26 01:30:02 +00:00
|
|
|
def update_repo(gitstring: str, ref: Optional[str], repo_dir: Path) -> Path:
|
2023-10-25 18:06:58 +00:00
|
|
|
# see if path already saved
|
2023-10-26 01:30:02 +00:00
|
|
|
repo_path = _get_repo_path(gitstring, repo_dir)
|
|
|
|
if repo_path.exists():
|
|
|
|
shutil.rmtree(repo_path)
|
2023-10-25 18:06:58 +00:00
|
|
|
|
2023-10-26 01:30:02 +00:00
|
|
|
# now we have fresh dir
|
|
|
|
Repo.clone_from(gitstring, repo_path, branch=ref, depth=1)
|
|
|
|
return repo_path
|
2023-10-25 18:06:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
def copy_repo(
|
|
|
|
source: Path,
|
|
|
|
destination: Path,
|
|
|
|
) -> None:
|
2023-10-26 01:30:02 +00:00
|
|
|
"""
|
|
|
|
Copies a repo, ignoring git folders.
|
|
|
|
|
|
|
|
Raises FileNotFound error if it can't find source
|
|
|
|
"""
|
|
|
|
|
2023-10-25 18:06:58 +00:00
|
|
|
def ignore_func(_, files):
|
|
|
|
return [f for f in files if f == ".git"]
|
|
|
|
|
|
|
|
shutil.copytree(source, destination, ignore=ignore_func)
|