17
17
from ._config import Config
18
18
19
19
20
+ class DocumentUploadParameters (BaseModel ):
21
+ method : str
22
+ url : str
23
+ data : dict
24
+
25
+
20
26
class Document (RequirementsMixin , abc .ABC ):
21
27
"""Abstract base class for all documents."""
22
28
@@ -59,7 +65,7 @@ def get_handler(name: str) -> DocumentHandler:
59
65
@abc .abstractmethod
60
66
async def get_upload_info (
61
67
cls , * , config : Config , user : str , id : uuid .UUID , name : str
62
- ) -> tuple [str , dict [str , Any ], dict [ str , Any ] ]:
68
+ ) -> tuple [dict [str , Any ], DocumentUploadParameters ]:
63
69
pass
64
70
65
71
@abc .abstractmethod
@@ -138,7 +144,7 @@ def read(self) -> bytes:
138
144
@classmethod
139
145
async def get_upload_info (
140
146
cls , * , config : Config , user : str , id : uuid .UUID , name : str
141
- ) -> tuple [str , dict [str , Any ], dict [ str , Any ] ]:
147
+ ) -> tuple [dict [str , Any ], DocumentUploadParameters ]:
142
148
url = f"{ config .api .url } /document"
143
149
data = {
144
150
"token" : jwt .encode (
@@ -152,7 +158,7 @@ async def get_upload_info(
152
158
)
153
159
}
154
160
metadata = {"path" : str (config .local_cache_root / "documents" / str (id ))}
155
- return url , data , metadata
161
+ return metadata , DocumentUploadParameters ( method = "PUT" , url = url , data = data )
156
162
157
163
@classmethod
158
164
def decode_upload_token (cls , token : str ) -> tuple [str , uuid .UUID ]:
0 commit comments