File tree 3 files changed +35
-0
lines changed
3 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ #!/usr/env/bin python
2
+ import logging
3
+
4
+ from flask import Blueprint
5
+ from flask .json import jsonify
6
+ from flask_httpauth import HTTPBasicAuth
7
+ from keycloak .exceptions import KeycloakAuthenticationError
8
+
9
+ import crcmocks .config as conf
10
+ from crcmocks .keycloak_helper import kc_helper
11
+
12
+ blueprint = Blueprint ("auth" , __name__ )
13
+ log = logging .getLogger (__name__ )
14
+ auth = HTTPBasicAuth ()
15
+
16
+
17
+ @blueprint .route ("/v1/auth" , methods = ["GET" ])
18
+ def mock_basic_auth ():
19
+ if not conf .KEYCLOAK :
20
+ return "keycloak integration disabled" , 404
21
+
22
+ creds = auth .get_auth ()
23
+
24
+ # https://github.com/RedHatInsights/insights-3scale/blob/master/build/docker-assets/src/insights/identity.lua#L93
25
+ try :
26
+ token = kc_helper .openid .token (creds ['username' ], creds ['password' ])
27
+ except KeycloakAuthenticationError :
28
+ return "Unauthorized" , 401
29
+
30
+ userinfo = kc_helper .openid .userinfo (token ['access_token' ])
31
+
32
+ return jsonify ({ 'user' : userinfo })
Original file line number Diff line number Diff line change 8
8
9
9
import crcmocks .config as conf
10
10
import crcmocks .db
11
+ from crcmocks .auth import blueprint as auth_bp
11
12
from crcmocks .bop import blueprint as bop_bp
12
13
from crcmocks .entitlements import blueprint as entitlements_bp
13
14
from crcmocks .initializer import initialize
22
23
23
24
app = Flask (__name__ )
24
25
app .config ["SECRET_KEY" ] = conf .SECRET_KEY
26
+ app .register_blueprint (auth_bp )
25
27
app .register_blueprint (bop_bp , url_prefix = "/api/bop" )
26
28
app .register_blueprint (entitlements_bp , url_prefix = "/api/entitlements" )
27
29
app .register_blueprint (rbac_bp , url_prefix = "/api/rbac" )
Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ flask_wtf
5
5
requests
6
6
tinydb
7
7
ocviapy >= 0.2.2
8
+ Flask-HTTPAuth
You can’t perform that action at this time.
0 commit comments