-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfiles_from_github.py
65 lines (47 loc) · 2.04 KB
/
files_from_github.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from functools import partial
from json import loads
from typing import Iterator, List
from github import Github, GithubException
from github.ContentFile import ContentFile
from github.Repository import Repository
from option import Option, Result
from streamlit import secrets
from streamlit.runtime.secrets import Secrets
from toolz.functoolz import pipe
from generics import call_on_input, try_decorator
def github_hooks(secret: Secrets = secrets) -> Github:
return pipe(secret['github_token'], loads, lambda tokens: tokens['secondary'], Github)
@try_decorator
def get_repository(
repository_link: str, hooks: Github = github_hooks()
) -> Result[Repository, GithubException]:
return pipe(repository_link.removeprefix('https://github.com/'), hooks.get_repo)
def unpack_repository(
repository: Option[Result[Repository, GithubException]]
) -> Option[Repository]:
return repository.map(lambda result: result.unwrap())
def repository(repository_link: str) -> Option[Repository]:
return pipe(
repository_link, partial(call_on_input, function=get_repository), unpack_repository
)
def contents(
repository: Option[Repository], directory: str = ''
) -> Option[List[ContentFile] | ContentFile]:
return repository.map(lambda repository: repository.get_contents(directory))
# TODO: Reduce nesting and size of this function
def files(repository: Option[Repository]) -> Iterator[ContentFile | None]:
base_contents = contents(repository)
if base_contents.is_none:
return None
base_contents = base_contents.unwrap()
while base_contents:
content = base_contents.pop()
if content.type == 'dir':
base_contents.extend(contents(repository, content.path).unwrap())
else:
yield content
def get_files(repository_link: str) -> Iterator[ContentFile | None]:
return pipe(repository_link, repository, files)
def file_list(repository_link: str) -> List[ContentFile]:
"""Returns an empty list if the repository link is empty"""
return pipe(repository_link, get_files, list)