barbican/barbican/common/accept.py
Ade Lee fda4948efb Fix broken gate due to breaking dependency changes
PyKMIP changes:

The CredentialType is no longer imported into the credentials
module.  Fixed the reference.  Skipping the accept header tests
till the webob fix is available.

WebOb 1.8.1 changes:

This patch updates the Accept header logic that was broken
by the update in the WebOb dependency.

In the interest of time I had to comment out four functional tests
that will require further work in the content negotiation logic so
we can get the gate working again.

Also shame on the WebOb folks for not bumping the major version
on this breaking change.

Change-Id: Ie4d0df0cca2c79686830931e96b11bbc97a41c5b
Story: 2002122
2018-06-01 17:33:51 -05:00

32 lines
1.2 KiB
Python

# Copyright 2018 OpenStack Foundation
#
# 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.
from webob import acceptparse
if hasattr(acceptparse, 'create_accept_header'):
# WebOb >= 1.8.0
NoHeaderType = getattr(acceptparse, 'AcceptNoHeader')
ValidHeaderType = getattr(acceptparse, 'AcceptValidHeader')
create_accept_header = getattr(acceptparse, 'create_accept_header')
else:
# WebOb < 1.8.0
NoHeaderType = getattr(acceptparse, 'MIMENilAccept')
ValidHeaderType = getattr(acceptparse, 'MIMEAccept')
def create_accept_header(header_value):
if not header_value:
return NoHeaderType()
else:
return ValidHeaderType(header_value)