Secure read access to /users endpoint.

- auth field is never returned
- unauthenticated access is rejected
- non-admin users can only access themselves
This commit is contained in:
2016-04-26 10:45:54 +02:00
parent 410cd1fd4c
commit 5c04cdbd6e
4 changed files with 135 additions and 3 deletions

View File

@@ -3,6 +3,12 @@ import json
import logging
import urllib
from flask import g
from eve.auth import TokenAuth
from werkzeug.exceptions import Forbidden
from application.utils.authorization import user_has_role
log = logging.getLogger(__name__)
@@ -36,6 +42,42 @@ def after_replacing_user(item, original):
item.get('username'), item.get('_id'), ex)
def before_getting_users(request, lookup):
"""Modifies the lookup dict to limit returned user info."""
# No access when not logged in.
current_user = g.get('current_user')
if current_user is None:
raise Forbidden()
# Admins can do anything and get everything, except the 'auth' block.
if user_has_role(u'admin'):
return
# Only allow access to the current user.
if '_id' in lookup:
if str(lookup['_id']) != str(current_user['user_id']):
raise Forbidden()
return
# Add a filter to only return the current user.
lookup['_id'] = current_user['user_id']
def after_fetching_user(user):
# Deny access to auth block; authentication stuff is managed by
# custom end-points.
user.pop('auth', None)
def after_fetching_user_resource(response):
for user in response['_items']:
after_fetching_user(user)
def setup_app(app):
app.on_pre_GET_users += before_getting_users
app.on_post_GET_users += post_GET_user
app.on_replace_users += after_replacing_user
app.on_fetched_item_users += after_fetching_user
app.on_fetched_resource_users += after_fetching_user_resource

View File

@@ -707,8 +707,11 @@ users = {
'resource_methods': ['GET', 'POST'],
'public_methods': ['GET', 'POST'],
# 'public_item_methods': ['GET'],
'public_methods': [],
# By default don't include the 'auth' field. It can still be obtained
# using projections, though, so we block that in hooks.
'datasource': {'projection': {u'auth': 0}},
'schema': users_schema
}