poppy/poppy/transport/validators/schemas/service.py

239 lines
10 KiB
Python

# -*- coding: utf-8 -*-
# Copyright (c) 2014 Rackspace, Inc.
#
# 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.
import re
from poppy.transport.validators import schema_base
class ServiceSchema(schema_base.SchemaBase):
'''JSON Schmema validation for /service.'''
schema = {
'service': {
'POST': {
'type': 'object',
'properties': {
'name': {
'type': 'string',
'required': True,
},
'domains': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'domain': {
'type': 'string',
'pattern': re.compile(
'^(([^:/?#]+):)?'
'(//([^/?#]*))?'
'([^?#]*)(\?([^#]*))?'
'(#(.*))?$',
re.UNICODE
)
}}},
'required': True,
'minItems': 1},
'origins': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'origin': {
'type': 'string',
'pattern': re.compile(
'^(([^:/?#]+):)?'
'(//([^/?#]*))?'
'([^?#]*)(\?([^#]*))?'
'(#(.*))?$',
re.UNICODE
),
'required': True},
'port': {
'type': 'integer',
'enum': [
80,
443]},
'ssl': {
'type': 'boolean'}},
},
'required': True,
'minItems': 1},
'caching': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'name': {
'type': 'string',
'required': True},
'ttl': {
'type': 'integer',
'required': True},
'rules': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'name': {
'type': 'string'},
'request_url': {
'type': 'string'}}},
}},
},
},
'restrictions': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'name': {
'type': 'string',
'required': True},
'rules': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'name': {
'type': 'string'},
'request_url': {
'type': 'string'},
'http_host': {
'type': 'string'},
'client_ip': {
'type': 'string'},
'http_method': {
'type': 'string',
'enum': [
'GET',
'PUT',
'POST',
'PATCH']}}},
}},
},
},
'flavorRef': {
'type': 'string',
'required': True,
}
}},
'PATCH': {
'type': 'object',
'properties': {
'domains': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'domain': {
'type': 'string',
'pattern': re.compile(
'^(([^:/?#]+):)?'
'(//([^/?#]*))?'
'([^?#]*)(\?([^#]*))?'
'(#(.*))?$',
re.UNICODE
)
}}},
},
'origins': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'origin': {
'type': 'string',
'pattern': re.compile(
'^(([^:/?#]+):)?'
'(//([^/?#]*))?'
'([^?#]*)(\?([^#]*))?'
'(#(.*))?$',
re.UNICODE
),
'required': True},
'port': {
'type': 'integer',
'enum': [
80,
443]},
'ssl': {
'type': 'boolean'}},
},
},
'caching': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'name': {
'type': 'string',
'required': True},
'ttl': {
'type': 'integer',
'required': True},
'rules': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'name': {
'type': 'string'},
'request_url': {
'type': 'string'}}},
}},
},
},
'restrictions': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'name': {
'type': 'string',
'required': True},
'rules': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'name': {
'type': 'string'},
'request_url': {
'type': 'string'},
'http_host': {
'type': 'string'},
'client_ip': {
'type': 'string'},
'http_method': {
'type': 'string',
'enum': [
'GET',
'PUT',
'POST',
'PATCH']}}},
}},
},
},
'flavorRef': {
'type': 'string',
}
}},
},
}