summaryrefslogtreecommitdiffstats
path: root/keystone/middleware
diff options
context:
space:
mode:
authortermie <github@anarkystic.com>2012-01-11 12:57:20 -0800
committertermie <github@anarkystic.com>2012-01-11 13:00:54 -0800
commitc25155acf9a40caea38d62fddd5dd9d18b56106a (patch)
tree965279df321f812e2d943d97bdfd4a12fd38a99b /keystone/middleware
parent4ae246d68837a8df6c299fe69141c38496a8217a (diff)
downloadkeystone-c25155acf9a40caea38d62fddd5dd9d18b56106a.tar.gz
keystone-c25155acf9a40caea38d62fddd5dd9d18b56106a.tar.xz
keystone-c25155acf9a40caea38d62fddd5dd9d18b56106a.zip
check for membership
Diffstat (limited to 'keystone/middleware')
-rw-r--r--keystone/middleware/nova_keystone_context.py69
1 files changed, 69 insertions, 0 deletions
diff --git a/keystone/middleware/nova_keystone_context.py b/keystone/middleware/nova_keystone_context.py
new file mode 100644
index 00000000..5c41bc87
--- /dev/null
+++ b/keystone/middleware/nova_keystone_context.py
@@ -0,0 +1,69 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright (c) 2011 OpenStack, LLC
+#
+# 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.
+"""
+Nova Auth Middleware.
+
+"""
+
+import webob.dec
+import webob.exc
+
+from nova import context
+from nova import flags
+from nova import wsgi
+
+
+FLAGS = flags.FLAGS
+flags.DECLARE('use_forwarded_for', 'nova.api.auth')
+
+
+class NovaKeystoneContext(wsgi.Middleware):
+ """Make a request context from keystone headers"""
+
+ @webob.dec.wsgify(RequestClass=wsgi.Request)
+ def __call__(self, req):
+ try:
+ user_id = req.headers['X_USER']
+ except KeyError:
+ return webob.exc.HTTPUnauthorized()
+ # get the roles
+ roles = [r.strip() for r in req.headers.get('X_ROLE', '').split(',')]
+
+ if 'X_TENANT_ID' in req.headers:
+ # This is the new header since Keystone went to ID/Name
+ project_id = req.headers['X_TENANT_ID']
+ else:
+ # This is for legacy compatibility
+ project_id = req.headers['X_TENANT']
+
+ # Get the auth token
+ auth_token = req.headers.get('X_AUTH_TOKEN',
+ req.headers.get('X_STORAGE_TOKEN'))
+
+ # Build a context, including the auth_token...
+ remote_address = getattr(req, 'remote_address', '127.0.0.1')
+ remote_address = req.remote_addr
+ if FLAGS.use_forwarded_for:
+ remote_address = req.headers.get('X-Forwarded-For', remote_address)
+ ctx = context.RequestContext(user_id,
+ project_id,
+ roles=roles,
+ auth_token=auth_token,
+ strategy='keystone',
+ remote_address=remote_address)
+
+ req.environ['nova.context'] = ctx
+ return self.application