All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			
		
			
				
	
	
		
			31 lines
		
	
	
		
			655 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			655 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python3
 | 
						|
 | 
						|
import musicbrainzngs
 | 
						|
 | 
						|
"""
 | 
						|
Flask error handler functions
 | 
						|
"""
 | 
						|
 | 
						|
__author__ = '@tormakris'
 | 
						|
__copyright__ = "Copyright 2020, onSpot Team"
 | 
						|
__module_name__ = "errorhandlers"
 | 
						|
__version__text__ = "1"
 | 
						|
 | 
						|
 | 
						|
def get_standard_error_handler(code: int):
 | 
						|
    def error_handler(err):
 | 
						|
        musicbrainzngs.auth(None, None)
 | 
						|
        return {"msg": str(err)}, code
 | 
						|
 | 
						|
    return error_handler
 | 
						|
 | 
						|
 | 
						|
# function to register all handlers
 | 
						|
 | 
						|
 | 
						|
def register_all_error_handlers(app):
 | 
						|
    error_codes_to_override = [404, 403, 401, 405, 400, 409, 422]
 | 
						|
 | 
						|
    for code in error_codes_to_override:
 | 
						|
        app.register_error_handler(code, get_standard_error_handler(code))
 |