| 
									
										
										
										
											2022-07-28 14:46:25 +02:00
										 |  |  | #  Copyright 2021 Collate | 
					
						
							|  |  |  | #  Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  | #  you may not use this file except in compliance with the License. | 
					
						
							|  |  |  | #  You may obtain a copy of the License at | 
					
						
							|  |  |  | #  http://www.apache.org/licenses/LICENSE-2.0 | 
					
						
							|  |  |  | #  Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  | #  distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  | #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  | #  See the License for the specific language governing permissions and | 
					
						
							|  |  |  | #  limitations under the License. | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | Register error handlers | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from openmetadata_managed_apis.api.app import blueprint | 
					
						
							|  |  |  | from openmetadata_managed_apis.api.response import ApiResponse | 
					
						
							|  |  |  | from openmetadata_managed_apis.api.utils import MissingArgException | 
					
						
							| 
									
										
										
										
											2022-08-26 07:29:38 +02:00
										 |  |  | from openmetadata_managed_apis.utils.logger import api_logger | 
					
						
							| 
									
										
										
										
											2022-07-28 14:46:25 +02:00
										 |  |  | from werkzeug.exceptions import HTTPException | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-26 07:29:38 +02:00
										 |  |  | logger = api_logger() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-28 14:46:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | @blueprint.app_errorhandler(Exception) | 
					
						
							| 
									
										
										
										
											2022-08-26 07:29:38 +02:00
										 |  |  | def handle_any_error(exc): | 
					
						
							|  |  |  |     logger.exception("Wild exception: {exc}") | 
					
						
							|  |  |  |     if isinstance(exc, HTTPException): | 
					
						
							|  |  |  |         return ApiResponse.error(exc.code, repr(exc)) | 
					
						
							|  |  |  |     return ApiResponse.server_error(repr(exc)) | 
					
						
							| 
									
										
										
										
											2022-07-28 14:46:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @blueprint.app_errorhandler(MissingArgException) | 
					
						
							| 
									
										
										
										
											2022-08-26 07:29:38 +02:00
										 |  |  | def handle_missing_arg(exc): | 
					
						
							|  |  |  |     logger.exception(f"Missing Argument Exception: {exc}") | 
					
						
							|  |  |  |     return ApiResponse.bad_request(repr(exc)) |