@@ -31,21 +31,31 @@ def call_api(func, args=""):
31
31
response .headers .replace ("Content-type" , "application/json" )
32
32
response .headers .append ("Cache-Control" , "no-cache, must-revalidate" )
33
33
34
- s = request .environ .get ('beaker.session' )
35
- if 'session' in request .POST :
36
- s = s .get_by_id (request .POST ['session' ])
34
+ if 'u' in request .POST and 'p' in request .POST :
35
+ info = PYLOAD .checkAuth (request .POST ['u' ], request .POST ['p' ])
36
+ if info :
37
+ if not PYLOAD .isAuthorized (func , {"role" : info ["role" ], "permission" : info ["permission" ]}):
38
+ return HTTPError (401 , json .dumps ("Unauthorized" ))
39
+
40
+ else :
41
+ return HTTPError (403 , json .dumps ("Forbidden" ))
42
+
43
+ else :
44
+ s = request .environ .get ('beaker.session' )
45
+ if 'session' in request .POST :
46
+ s = s .get_by_id (request .POST ['session' ])
37
47
38
- if not s or not s .get ("authenticated" , False ):
39
- return HTTPError (403 , json .dumps ("Forbidden" ))
48
+ if not s or not s .get ("authenticated" , False ):
49
+ return HTTPError (403 , json .dumps ("Forbidden" ))
40
50
41
- if not PYLOAD .isAuthorized (func , {"role" : s ["role" ], "permission" : s ["perms" ]}):
42
- return HTTPError (401 , json .dumps ("Unauthorized" ))
51
+ if not PYLOAD .isAuthorized (func , {"role" : s ["role" ], "permission" : s ["perms" ]}):
52
+ return HTTPError (401 , json .dumps ("Unauthorized" ))
43
53
44
54
args = args .split ("/" )[1 :]
45
55
kwargs = {}
46
56
47
57
for x , y in chain (request .GET .iteritems (), request .POST .iteritems ()):
48
- if x == " session" : continue
58
+ if x in ( "u" , "p" , " session") : continue
49
59
kwargs [x ] = unquote (y )
50
60
51
61
try :
0 commit comments