Skip to content

Commit 576baf2

Browse files
committed
[api_app] Add support for calling API function using user&pass in addition of authenticated session
1 parent 03f3361 commit 576baf2

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

module/web/api_app.py

+18-8
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,31 @@ def call_api(func, args=""):
3131
response.headers.replace("Content-type", "application/json")
3232
response.headers.append("Cache-Control", "no-cache, must-revalidate")
3333

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'])
3747

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"))
4050

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"))
4353

4454
args = args.split("/")[1:]
4555
kwargs = {}
4656

4757
for x, y in chain(request.GET.iteritems(), request.POST.iteritems()):
48-
if x == "session": continue
58+
if x in ("u", "p", "session"): continue
4959
kwargs[x] = unquote(y)
5060

5161
try:

0 commit comments

Comments
 (0)