mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 15:53:33 +00:00 
			
		
		
		
	Fix schema issue with cors
This commit is contained in:
		| @@ -268,6 +268,7 @@ module.exports = function (token_string) { | ||||
| 								let permissionSchema = { | ||||
| 									$async:               true, | ||||
| 									$id:                  'permissions', | ||||
| 									type:                 'object', | ||||
| 									additionalProperties: false, | ||||
| 									properties:           {} | ||||
| 								}; | ||||
| @@ -277,7 +278,6 @@ module.exports = function (token_string) { | ||||
| 								const ajv = new Ajv({ | ||||
| 									verbose:      true, | ||||
| 									allErrors:    true, | ||||
| 									missingRefs:  'fail', | ||||
| 									breakOnError: true, | ||||
| 									coerceTypes:  true, | ||||
| 									schemas:      [ | ||||
|   | ||||
| @@ -1,25 +1,5 @@ | ||||
| const validator = require('../validator'); | ||||
|  | ||||
| module.exports = function (req, res, next) { | ||||
|  | ||||
| 	if (req.headers.origin) { | ||||
|  | ||||
| 		const originSchema = { | ||||
| 			oneOf: [ | ||||
| 				{ | ||||
| 					type:    'string', | ||||
| 					pattern: '^[a-z\\-]+:\\/\\/(?:[\\w\\-\\.]+(:[0-9]+)?/?)?$' | ||||
| 				}, | ||||
| 				{ | ||||
| 					type:    'string', | ||||
| 					pattern: '^[a-z\\-]+:\\/\\/(?:\\[([a-z0-9]{0,4}\\:?)+\\])?/?(:[0-9]+)?$' | ||||
| 				} | ||||
| 			] | ||||
| 		}; | ||||
|  | ||||
| 		// very relaxed validation.... | ||||
| 		validator(originSchema, req.headers.origin) | ||||
| 			.then(function () { | ||||
| 		res.set({ | ||||
| 			'Access-Control-Allow-Origin':      req.headers.origin, | ||||
| 			'Access-Control-Allow-Credentials': true, | ||||
| @@ -29,12 +9,8 @@ module.exports = function (req, res, next) { | ||||
| 			'Access-Control-Expose-Headers':    'X-Dataset-Total, X-Dataset-Offset, X-Dataset-Limit' | ||||
| 		}); | ||||
| 		next(); | ||||
| 			}) | ||||
| 			.catch(next); | ||||
|  | ||||
| 	} else { | ||||
| 		// No origin | ||||
| 		next(); | ||||
| 	} | ||||
|  | ||||
| }; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user