-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathdiscover.py
More file actions
191 lines (146 loc) · 5.17 KB
/
discover.py
File metadata and controls
191 lines (146 loc) · 5.17 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import importlib
import sys
from dataclasses import dataclass
from logging import getLogger
from pathlib import Path
from typing import List, Tuple, Union
from fastapi_cli.exceptions import FastAPICLIException
logger = getLogger(__name__)
try:
from fastapi import FastAPI
except ImportError: # pragma: no cover
FastAPI = None # type: ignore[misc, assignment]
def get_default_path() -> Path:
potential_paths = (
"main.py",
"app.py",
"api.py",
"app/main.py",
"app/app.py",
"app/api.py",
)
for full_path in potential_paths:
path = Path(full_path)
if path.is_file():
return path
raise FastAPICLIException(
"Could not find a default file to run, please provide an explicit path"
)
@dataclass
class ModuleData:
module_import_str: str
extra_sys_path: Path
module_paths: List[Path]
def get_module_data_from_path(path: Path) -> ModuleData:
use_path = path.resolve()
module_path = use_path
if use_path.is_file() and use_path.stem == "__init__":
module_path = use_path.parent
module_paths = [module_path]
extra_sys_path = module_path.parent
for parent in module_path.parents:
init_path = parent / "__init__.py"
if init_path.is_file():
module_paths.insert(0, parent)
extra_sys_path = parent.parent
else:
break
module_str = ".".join(p.stem for p in module_paths)
return ModuleData(
module_import_str=module_str,
extra_sys_path=extra_sys_path.resolve(),
module_paths=module_paths,
)
def get_app_infos(
*, mod_data: ModuleData, app_name: Union[str, None] = None
) -> Tuple[str, Union[str, None], Union[str, None], Union[str, None]]:
try:
mod = importlib.import_module(mod_data.module_import_str)
except (ImportError, ValueError) as e:
logger.error(f"Import error: {e}")
logger.warning(
"Ensure all the package directories have an [blue]__init__.py[/blue] file"
)
raise
if not FastAPI: # type: ignore[truthy-function]
raise FastAPICLIException(
"Could not import FastAPI, try running 'pip install fastapi'"
) from None
object_names = dir(mod)
object_names_set = set(object_names)
if app_name:
if app_name not in object_names_set:
raise FastAPICLIException(
f"Could not find app name {app_name} in {mod_data.module_import_str}"
)
app = getattr(mod, app_name)
if not isinstance(app, FastAPI):
raise FastAPICLIException(
f"The app name {app_name} in {mod_data.module_import_str} doesn't seem to be a FastAPI app"
)
return app_name, app.openapi_url, app.docs_url, app.redoc_url
for preferred_name in ["app", "api"]:
if preferred_name in object_names_set:
obj = getattr(mod, preferred_name)
if isinstance(obj, FastAPI):
return preferred_name, obj.openapi_url, obj.docs_url, obj.redoc_url
for name in object_names:
obj = getattr(mod, name)
if isinstance(obj, FastAPI):
return name, obj.openapi_url, obj.docs_url, obj.redoc_url
raise FastAPICLIException("Could not find FastAPI app in module, try using --app")
@dataclass
class ImportData:
app_name: str
module_data: ModuleData
import_string: str
openapi_url: Union[str, None] = None
docs_url: Union[str, None] = None
redoc_url: Union[str, None] = None
def get_import_data(
*, path: Union[Path, None] = None, app_name: Union[str, None] = None
) -> ImportData:
if not path:
path = get_default_path()
logger.debug(f"Using path [blue]{path}[/blue]")
logger.debug(f"Resolved absolute path {path.resolve()}")
if not path.exists():
raise FastAPICLIException(f"Path does not exist {path}")
mod_data = get_module_data_from_path(path)
sys.path.insert(0, str(mod_data.extra_sys_path))
use_app_name, openapi_url, docs_url, redoc_url = get_app_infos(
mod_data=mod_data, app_name=app_name
)
import_string = f"{mod_data.module_import_str}:{use_app_name}"
return ImportData(
app_name=use_app_name,
module_data=mod_data,
import_string=import_string,
openapi_url=openapi_url,
docs_url=docs_url,
redoc_url=redoc_url,
)
def get_import_data_from_import_string(import_string: str) -> ImportData:
module_str, _, app_name = import_string.partition(":")
if not module_str or not app_name:
raise FastAPICLIException(
"Import string must be in the format module.submodule:app_name"
)
here = Path(".").resolve()
sys.path.insert(0, str(here))
module_data = ModuleData(
module_import_str=module_str,
extra_sys_path=here,
module_paths=[],
)
_, openapi_url, docs_url, redoc_url = get_app_infos(
mod_data=module_data, app_name=app_name
)
return ImportData(
app_name=app_name,
module_data=module_data,
import_string=import_string,
openapi_url=openapi_url,
docs_url=docs_url,
redoc_url=redoc_url,
)