def import_(self) -> Response: """Import chart(s) with associated datasets and databases --- post: requestBody: required: true content: multipart/form-data: schema: type: object properties: formData: type: string format: binary passwords: type: string overwrite: type: bool responses: 200: description: Chart import result content: application/json: schema: type: object properties: message: type: string 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 422: $ref: '#/components/responses/422' 500: $ref: '#/components/responses/500' """ upload = request.files.get("formData") if not upload: return self.response_400() with ZipFile(upload) as bundle: contents = get_contents_from_bundle(bundle) passwords = (json.loads(request.form["passwords"]) if "passwords" in request.form else None) overwrite = request.form.get("overwrite") == "true" command = ImportChartsCommand(contents, passwords=passwords, overwrite=overwrite) try: command.run() return self.response(200, message="OK") except CommandInvalidError as exc: logger.warning("Import chart failed") return self.response_422(message=exc.normalized_messages()) except Exception as exc: # pylint: disable=broad-except logger.exception("Import chart failed") return self.response_500(message=str(exc))
def import_(self) -> Response: """Import chart(s) with associated datasets and databases --- post: requestBody: required: true content: multipart/form-data: schema: type: object properties: formData: description: upload file (ZIP) type: string format: binary passwords: description: JSON map of passwords for each file type: string overwrite: description: overwrite existing databases? type: boolean responses: 200: description: Chart import result content: application/json: schema: type: object properties: message: type: string 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 422: $ref: '#/components/responses/422' 500: $ref: '#/components/responses/500' """ upload = request.files.get("formData") if not upload: return self.response_400() with ZipFile(upload) as bundle: contents = get_contents_from_bundle(bundle) if not contents: raise NoValidFilesFoundError() passwords = (json.loads(request.form["passwords"]) if "passwords" in request.form else None) overwrite = request.form.get("overwrite") == "true" command = ImportChartsCommand(contents, passwords=passwords, overwrite=overwrite) command.run() return self.response(200, message="OK")
def import_(self) -> Response: """Import chart(s) with associated datasets and databases --- post: requestBody: content: application/zip: schema: type: string format: binary responses: 200: description: Chart import result content: application/json: schema: type: object properties: message: type: string 400: $ref: '#/components/responses/400' 401: $ref: '#/components/responses/401' 422: $ref: '#/components/responses/422' 500: $ref: '#/components/responses/500' """ upload = request.files.get("formData") if not upload: return self.response_400() with ZipFile(upload) as bundle: contents = { remove_root(file_name): bundle.read(file_name).decode() for file_name in bundle.namelist() } passwords = (json.loads(request.form["passwords"]) if "passwords" in request.form else None) command = ImportChartsCommand(contents, passwords=passwords) try: command.run() return self.response(200, message="OK") except CommandInvalidError as exc: logger.warning("Import chart failed") return self.response_422(message=exc.normalized_messages()) except Exception as exc: # pylint: disable=broad-except logger.exception("Import chart failed") return self.response_500(message=str(exc))