aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v3/common.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-19 12:50:17 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-19 12:50:17 +0200
commit1b8b4e7786d5fd29ee528407590c88dffdd15714 (patch)
treef0220866cc8fcbc283082bef3bc63dea0000e775 /src/web/views/api/v3/common.py
parentTest preprocessors with Flask-Restless. (diff)
downloadnewspipe-1b8b4e7786d5fd29ee528407590c88dffdd15714.tar.gz
newspipe-1b8b4e7786d5fd29ee528407590c88dffdd15714.tar.bz2
newspipe-1b8b4e7786d5fd29ee528407590c88dffdd15714.zip
Check is the user is authenticated before checking if the user is authorized to access to the object.
Diffstat (limited to 'src/web/views/api/v3/common.py')
-rw-r--r--src/web/views/api/v3/common.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/web/views/api/v3/common.py b/src/web/views/api/v3/common.py
index f5bd2dea..8831b8ba 100644
--- a/src/web/views/api/v3/common.py
+++ b/src/web/views/api/v3/common.py
@@ -1,10 +1,14 @@
from flask.ext.login import current_user
+from flask.ext.restless import ProcessingException
from web.controllers import ArticleController
def is_authorized_to_modify(user, obj):
return user.id == obj.user_id
+def auth_func(*args, **kw):
+ if not current_user.is_authenticated:
+ raise ProcessingException(description='Not authenticated!', code=401)
def check_auth(instance_id=None, **kw):
# Check if the user is authorized to modify the specified
bgstack15