deb-murano/murano/context.py

36 lines
1.2 KiB
Python
Raw Normal View History

2013-04-05 13:14:35 +00:00
# Copyright (c) 2013 Mirantis, Inc.
2013-03-04 11:03:21 +00:00
#
# 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 murano.common import policy
from oslo_context import context
2013-03-04 11:03:21 +00:00
class RequestContext(context.RequestContext):
"""Class that stores context info about an API request.
Stores creditentials of the user, that is accessing API
as well as additional request information.
2013-03-04 11:03:21 +00:00
"""
def __init__(self, session=None,
roles=None, is_admin=None,
**kwargs):
super(RequestContext, self).__init__(**kwargs)
2013-03-10 10:00:57 +00:00
self.session = session
self.roles = roles or []
2013-03-04 11:03:21 +00:00
self.is_admin = is_admin
if self.is_admin is None:
self.is_admin = policy.check_is_admin(self)