
Added a file exclusion to tox.ini, and also excluded rule for unused named variables. excluded more things that are system or tox related. Change-Id: I022b72cbe048e3fe1f70e6017038248e6a2e9538
91 lines
2.8 KiB
Python
91 lines
2.8 KiB
Python
# Copyright 2017 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# 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 falcon
|
|
import logging
|
|
|
|
|
|
class AuthMiddleware(object):
|
|
|
|
# Authentication
|
|
def process_request(self, req, resp):
|
|
ctx = req.context
|
|
token = req.get_header('X-Auth-Token')
|
|
|
|
user = self.validate_token(token)
|
|
|
|
if user is not None:
|
|
ctx.set_user(user)
|
|
user_roles = self.role_list(user)
|
|
ctx.add_roles(user_roles)
|
|
else:
|
|
ctx.add_role('anyone')
|
|
|
|
# Authorization
|
|
def process_resource(self, req, resp, resource, params):
|
|
ctx = req.context
|
|
|
|
if not resource.authorize_roles(ctx.roles):
|
|
raise falcon.HTTPUnauthorized(
|
|
'Authentication required',
|
|
('This resource requires an authorized role.'))
|
|
|
|
# Return the username associated with an authenticated token or None
|
|
def validate_token(self, token):
|
|
if token == '10':
|
|
return 'shipyard'
|
|
elif token == 'admin':
|
|
return 'admin'
|
|
else:
|
|
return None
|
|
|
|
# Return the list of roles assigned to the username
|
|
# Roles need to be an enum
|
|
def role_list(self, username):
|
|
if username == 'shipyard':
|
|
return ['user']
|
|
elif username == 'admin':
|
|
return ['user', 'admin']
|
|
|
|
|
|
class ContextMiddleware(object):
|
|
def process_request(self, req, resp):
|
|
ctx = req.context
|
|
|
|
requested_logging = req.get_header('X-Log-Level')
|
|
|
|
if requested_logging == 'DEBUG' and 'admin' in ctx.roles:
|
|
ctx.set_log_level('debug')
|
|
elif requested_logging == 'INFO':
|
|
ctx.set_log_level('info')
|
|
|
|
ext_marker = req.get_header('X-Context-Marker')
|
|
ctx.set_external_marker(ext_marker if ext_marker is not None else '')
|
|
|
|
|
|
class LoggingMiddleware(object):
|
|
def __init__(self):
|
|
self.logger = logging.getLogger('shipyard.control')
|
|
|
|
def process_response(self, req, resp, resource, req_succeeded):
|
|
ctx = req.context
|
|
|
|
extra = {
|
|
'user': ctx.user,
|
|
'req_id': ctx.request_id,
|
|
'external_ctx': ctx.external_marker,
|
|
}
|
|
|
|
resp.append_header('X-Shipyard-Req', ctx.request_id)
|
|
self.logger.info("%s - %s" % (req.uri, resp.status), extra=extra)
|