Skip to content

Commit d05437c

Browse files
committed
Mock Basic Authentication
1 parent 04e51a2 commit d05437c

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

crcmocks/auth.py

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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 })

crcmocks/main.py

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import crcmocks.config as conf
1010
import crcmocks.db
11+
from crcmocks.auth import blueprint as auth_bp
1112
from crcmocks.bop import blueprint as bop_bp
1213
from crcmocks.entitlements import blueprint as entitlements_bp
1314
from crcmocks.initializer import initialize
@@ -22,6 +23,7 @@
2223

2324
app = Flask(__name__)
2425
app.config["SECRET_KEY"] = conf.SECRET_KEY
26+
app.register_blueprint(auth_bp)
2527
app.register_blueprint(bop_bp, url_prefix="/api/bop")
2628
app.register_blueprint(entitlements_bp, url_prefix="/api/entitlements")
2729
app.register_blueprint(rbac_bp, url_prefix="/api/rbac")

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ flask_wtf
55
requests
66
tinydb
77
ocviapy>=0.2.2
8+
Flask-HTTPAuth

0 commit comments

Comments
 (0)