-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
560 lines (473 loc) · 20 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
import os
import time
import markdown
from flask import Flask, redirect, request, render_template_string, request, jsonify, Response, render_template
from flask_session import Session
from flask_mobility import Mobility
from datetime import timedelta, datetime
from flask_qrcode import QRcode
import redis
import logging
import json
import environment
from components import message
from flask_restx import Resource, Api, fields
import uuid
import oidc4vc
from profile import profile
import db_api
import requests
from device_detector import SoftwareDetector
import hashlib
import base64
# Basic protocole
from routes import saas4ssi
# OIDC4VC
from routes import oidc4vp_api, oidc4vp_console
from routes import oidc4vci_api, oidc4vci_console
from routes import wallet
# for testing purpose
from routes import test_issuer_oidc4vc
from routes import test_verifier_oidc4vc
#from routes import web_wallet_test
from routes import web_display_VP
from routes import statuslist
#from routes import ciba
#from routes import jpma2jpma
API_LIFE = 5000
#ACCESS_TOKEN_LIFE = 1000
GRANT_LIFE = 5000
ACCEPTANCE_TOKEN_LIFE = 28 * 24 * 60 * 60
logging.basicConfig(level=logging.INFO)
# Environment variables set in gunicornconf.py and transfered to environment.py
mychain = os.getenv('MYCHAIN')
myenv = os.getenv('MYENV')
if not myenv:
myenv='local'
mode = environment.currentMode(mychain, myenv)
# Redis init red = redis.StrictRedis()
red = redis.Redis(host='localhost', port=6379, db=0)
# Framework Flask and Session setup
#app = Flask(__name__)
app = Flask(__name__,
static_url_path='/static')
app.jinja_env.globals['Version'] = "0.5.2"
app.jinja_env.globals['Created'] = time.ctime(os.path.getctime('main.py'))
app.config['SESSION_PERMANENT'] = True
app.config['SESSION_COOKIE_NAME'] = 'altme_talao'
app.config['SESSION_TYPE'] = 'redis' # Redis server side session
app.config['PERMANENT_SESSION_LIFETIME'] = timedelta(minutes=30) # cookie lifetime
app.config['SESSION_FILE_THRESHOLD'] = 100
app.config['SECRET_KEY'] = "sandbox" + mode.password
app.config["ALLOWED_IMAGE_EXTENSIONS"] = ["jpeg", "jpg", "png", "gif"]
# OIDC4VC issuer and verfier
oidc4vp_console.init_app(app, red, mode)
oidc4vp_api.init_app(app, red, mode)
oidc4vci_console.init_app(app, red, mode)
oidc4vci_api.init_app(app, red, mode)
#OIDC4VC web wallet
wallet.init_app(app, red, mode)
# MAIN functions
saas4ssi.init_app(app, red, mode)
# TEST
web_display_VP.init_app(app, red, mode)
#web_wallet_test.init_app(app, red, mode)
test_issuer_oidc4vc.init_app(app, red, mode)
test_verifier_oidc4vc.init_app(app, red, mode)
#ciba.init_app(app, red, mode)
#jpma2jpma.init_app(app, red, mode)
statuslist.init_app(app, red, mode)
sess = Session()
sess.init_app(app)
qrcode = QRcode(app)
Mobility(app)
@app.errorhandler(403)
def page_abort(e):
logging.warning('abort 403')
return redirect(mode.server + 'login/')
@app.errorhandler(500)
def error_500(e):
message.message("Error 500 on sandbox", 'thierry.thevenet@talao.io', str(e), mode)
return redirect(mode.server + '/sandbox')
def front_publish(stream_id, error=None, error_description=None):
# send event to front channel to go forward callback and send credential to wallet
data = {"stream_id": stream_id}
if error:
data["error"] = error
if error_description:
data["error_description"] = error_description
red.publish("issuer_oidc", json.dumps(data))
def api_manage_error(error, error_description, stream_id=None, status=400):
"""
Return error code to wallet and front channel
https://openid.net/specs/openid-4-verifiable-credential-issuance-1_0.html#name-credential-error-response
"""
# console
logging.warning("manage error = %s", error_description)
payload = {
"error": error,
"error_description": error_description,
}
headers = {
"Cache-Control": "no-store",
"Content-Type": "application/json"
}
return {
"response": json.dumps(payload),
"status": status,
"headers": headers
}
def build_credential_offered(offer):
credential_offered = dict()
if isinstance(offer, str):
offer = [offer]
for vc in offer:
try:
with open('./verifiable_credentials/' + vc + '.jsonld', 'r') as f:
credential = json.loads(f.read())
except Exception:
return
credential['id'] = "urn:uuid:" + str(uuid.uuid4())
credential['issuanceDate'] = datetime.now().replace(microsecond=0).isoformat() + "Z"
credential['issued'] = datetime.now().replace(microsecond=0).isoformat() + "Z"
credential['validFrom'] = (datetime.now().replace(microsecond=0) + timedelta(days= 365)).isoformat() + "Z"
credential['expirationDate'] = (datetime.now().replace(microsecond=0) + timedelta(days= 365)).isoformat() + "Z"
credential_offered[vc] = credential
return credential_offered
@app.route('/md_file', methods=['GET'])
@app.route('/sandbox/md_file', methods=['GET'])
def md_file():
# https://dev.to/mrprofessor/rendering-markdown-from-flask-1l41
if request.args['file'] == 'privacy':
content = open('privacy_en.md', 'r').read()
elif request.args['file'] == 'terms_and_conditions':
content = open('mobile_cgu_en.md', 'r').read()
else:
return redirect(mode.server + 'login/')
return render_template_string( markdown.markdown(content, extensions=["fenced_code"]))
# Customer API for issuer - swagger support
authorizations = {
'apikey': {
'type': 'apiKey',
'in': 'header',
'name': 'X-API-KEY'
}
}
api = Api(
app,
doc='/api/swagger',
authorizations=authorizations,
contact='contact@talao.io',
description="API description for the Altme OIDC4VCI issuer.\n",
titles="Altme issuer API"
)
ns = api.namespace('sandbox', description='To get the QR code value or the uri to redirect user browser to the QR code page created by the platform')
callback = mode.server + 'sandbox/issuer/callback'
offer = ["VerifiableId"]
vc = build_credential_offered(offer)
payload = api.model(
'Payload input',
{
'issuer_id': fields.String(example="ooroomolyd", required=True),
'vc': fields.Raw(example=vc),
'deferred_vc': fields.String(),
'issuer_state': fields.String(example='test', required=True),
'credential_type': fields.List(fields.String, example=offer, required=True),
'pre-authorized_code': fields.Boolean(example=True, required=True),
'user_pin_required': fields.Boolean(example=False),
'user_pin': fields.String(),
"input_mode": fields.String(),
'callback': fields.String(example=callback, required=True),
},
description="API payload",
)
response = api.model(
'Response',
{
'redirect_uri': fields.String(description='API response', required=True),
'qrcode_value': fields.String(description='API response', required=True)
}
)
@ns.route("/oidc4vc/issuer/api", endpoint='issuer')
class Issuer(Resource):
@api.response(200, 'Success')
@api.doc(responses={401: 'unauthorized'})
@api.doc(responses={400: 'invalid request'})
@api.doc(security='apikey')
@api.expect(payload, validate=False)
@api.doc(model=response)
@api.doc(body=payload)
def post(self):
"""
This API returns the QRcode value and the page URL to redirect the user browser to a QR code to get her verifiable credential.
headers = {
'Content-Type': 'application/json',
'X-API-KEY': '<issuer_secret>'
}
Swagger example:
issuer_id = ooroomolyd
issuer_secret = f5fa78af-3aa9-11ee-a601-b33f6ebca22b
payload = {
"issuer_id": REQUIRED, see platform
"vc": CONDITIONAL -> { "EmployeeCredendial": {@context: .....}, ....}, json object, VC as a json-ld not signed
"deferred_vc": CONDITIONAL, default is None REQUIRED if vc is nt sent
"issuer_state": REQUIRED, string,
"credential_type": REQUIRED -> array of the credentials offered
"pre-authorized_code": TRUE (authorized code flow not supported by swagger UI)
"user_pin_required": OPTIONAL bool, default is false
"user_pin": CONDITIONAL, string, REQUIRED if user_pin_required is True
"callback": REQUIRED, string, this the user redirect route at the end of the flow
}
"""
# check API format
try:
client_secret = request.headers["X-API-KEY"]
except Exception:
return Response(**api_manage_error("unauthorized", "Unauthorized token", status=401))
try:
issuer_id = request.json["issuer_id"]
except Exception:
return Response(**api_manage_error("unauthorized", "Unauthorized token", status=401))
try:
issuer_data = json.loads(db_api.read_oidc4vc_issuer(issuer_id))
except Exception:
return Response(**api_manage_error("unauthorized", "Unauthorized client_id", status=401))
try:
issuer_state = request.json["issuer_state"]
except Exception:
return Response(**api_manage_error("invalid_request", "issuer_state missing"))
try:
credential_type = request.json["credential_type"]
except Exception:
return Response(**api_manage_error("invalid_request", "credential_type missing"))
try:
pre_authorized_code = request.json["pre-authorized_code"]
except Exception:
return Response(**api_manage_error("invalid_request", "pre-authorized_code is missing"))
# check if client_id exists
if client_secret != issuer_data["client_secret"]:
logging.warning("Client secret is incorrect")
return Response(**api_manage_error("unauthorized", "Client secret is incorrect", status=401))
# Check vc and vc_deferred
vc = request.json.get("vc")
if vc and not request.json.get("callback"):
return Response(**api_manage_error("invalid_request", "callback missing"))
# Check deferred vc
if issuer_data.get("deferred_flow"):
deferred_vc = request.json.get("deferred_vc")
if vc and deferred_vc:
return Response(**api_manage_error("invalid_request", "deferred_vc and vc not allowed"))
else:
deferred_vc = None
# Check if user pin exists
if request.json.get("user_pin_required") and not request.json.get("user_pin"):
return Response(**api_manage_error("invalid_request", "User pin is not set"))
logging.info('user PIN stored = %s', request.json.get("user_pin"))
# check if user pin is string
if request.json.get("user_pin_required") and request.json.get("user_pin") and not isinstance(request.json.get("user_pin"), str):
return Response(**api_manage_error("invalid_request", "User pin must be string"))
# check if credential offered is supported
issuer_profile = profile[issuer_data["profile"]]
credential_type = (
credential_type if isinstance(credential_type, list) else [credential_type]
)
for _vc in credential_type:
if _vc not in issuer_profile["credentials_types_supported"]:
logging.error("Credential not supported -> %s", _vc)
return Response(**api_manage_error("unauthorized", "Credential not supported " + _vc, status=401))
nonce = str(uuid.uuid1())
# generate pre-authorized_code as jwt or string
if pre_authorized_code:
if profile[issuer_data["profile"]].get("pre-authorized_code_as_jwt"):
pre_authorized_code = oidc4vc.build_pre_authorized_code(
issuer_data["jwk"],
"https://self-issued.me/v2",
mode.server + "sandbox/ebsi/issuer/" + issuer_id,
issuer_data["verification_method"],
nonce,
)
else:
pre_authorized_code = str(uuid.uuid1())
stream_id = str(uuid.uuid1())
session_data = {
"vc": vc,
"nonce": nonce,
"stream_id": stream_id,
"issuer_id": issuer_id,
"issuer_state": request.json.get("issuer_state"),
"webhook": request.json.get("webhook"),
"credential_type": credential_type,
"pre-authorized_code": pre_authorized_code,
"user_pin_required": request.json.get("user_pin_required"),
"user_pin": request.json.get("user_pin"),
"input_mode": request.json.get("input_mode"),
"callback": request.json.get("callback"),
"login": request.json.get("login"),
}
# For deferred API call only VC is stored in redis with issuer_state as key
if deferred_vc and red.get(issuer_state): # red.get exists if the call without VC has been done previously
session_data.update(
{
"deferred_vc": deferred_vc,
"deferred_vc_iat": round(datetime.timestamp(datetime.now())),
"deferred_vc_exp": round(datetime.timestamp(datetime.now()))
+ ACCEPTANCE_TOKEN_LIFE,
}
)
red.setex(issuer_state, API_LIFE, json.dumps(session_data))
logging.info("Deferred VC has been issued with issuer_state = %s", issuer_state)
else:
# for authorization code flow
red.setex(issuer_state, API_LIFE, json.dumps(session_data))
# for pre authorized code
if pre_authorized_code:
red.setex(pre_authorized_code, GRANT_LIFE, json.dumps(session_data))
# for front page management
red.setex(stream_id, API_LIFE, json.dumps(session_data))
# Get the QR code value from oidc4vci_api.py
try:
r = requests.get(mode.server + "sandbox/ebsi/issuer/qrcode/" + issuer_id + "/" + stream_id)
qrcode_value = r.json()["qrcode_value"]
except Exception:
logging.error("QR code value error ")
qrcode_value = ""
# response to issuer
response = {
"redirect_uri": mode.server + "sandbox/ebsi/issuer/" + issuer_id + "/" + stream_id,
"qrcode_value": qrcode_value
}
logging.info(
"initiate qrcode = %s",
mode.server + "sandbox/ebsi/issuer/" + issuer_id + "/" + stream_id,
)
return jsonify(response)
"""
@app.route('/app/download' , methods=['GET'])
def app_download():
return render_template('app_download/talao_app_download.html')
"""
def hash(text):
m = hashlib.sha256()
m.update(text.encode())
return base64.urlsafe_b64encode(m.digest()).decode().replace("=", "")
# download link with configuration
@app.route('/app/download' , methods=['GET'])
def app_download() :
configuration = {
"login": request.args.get('login'),
"password": request.args.get('password'),
"wallet-provider": request.args.get('wallet-provider')
}
host = request.headers['X-Real-Ip'] #+ ' ' + request.headers['User-Agent']
host_hash = hash(host)
logging.info('configuration : %s stored for wallet : %s',configuration, host)
red.setex(host_hash, 300, json.dumps(configuration))
return render_template('app_download/talao_app_download.html')
# callback link for browser problems
@app.route('/app/download/oidc4vc' , methods=['GET'])
@app.route('/app/download/authorize' , methods=['GET'])
@app.route('/app/download/callback' , methods=['GET'])
def app_callback():
return render_template('app_download/talao_app_download_callback.html')
@app.route('/install', methods=['GET'])
def link():
configuration = {
"login": request.args.get('login'),
"password": request.args.get('password'),
"wallet-provider": request.args.get('wallet-provider')
}
try:
host = request.headers['X-Real-Ip'] #+ ' ' + request.headers['User-Agent']
except Exception:
message = "Not an https call"
return render_template('app_download/install_link_error.html', message=message)
host_hash = hash(host)
logging.info('configuration : %s stored for wallet : %s',configuration, host)
red.setex(host_hash, 300, json.dumps(configuration))
try:
if request.MOBILE:
ua = request.headers.get('User-Agent')
device = SoftwareDetector(ua).parse()
logging.info(device.os_name())
if device.os_name() == "Android":
return redirect('https://play.google.com/store/apps/details?id=co.talao.wallet')
else:
return redirect('https://apps.apple.com/fr/app/talao-wallet/id1582183266?platform=iphone')
message = "This installation link must be used through your smartphone"
return render_template('app_download/install_link_error.html', message=message)
except Exception:
message = "Install link error"
return render_template('app_download/install_link_error.html', message=message)
# configuration for linkk to downloads with configuration
@app.route('/configuration' , methods=['GET'])
def app_download_configuration():
host = request.headers['X-Real-Ip'] # + ' ' + request.headers['User-Agent']
host_hash = hash(host)
logging.info('wallet call to get configuration = %s', host)
try:
configuration = json.loads(red.get(host_hash).decode())
red.delete(host_hash)
logging.info("Configuration sent to this wallet")
except:
logging.warning("No configuration available for this wallet")
configuration = None
return jsonify(configuration)
# Google universal link for Talao wallet
@app.route('/.well-known/assetlinks.json' , methods=['GET'])
def assetlinks():
document = json.load(open('assetlinks.json', 'r'))
return jsonify(document)
# Apple universal link for Talao wallet
@app.route('/.well-known/apple-app-site-association' , methods=['GET'])
def apple_app_site_association():
document = json.load(open('apple-app-site-association', 'r'))
return jsonify(document)
# .well-known DID API
@app.route('/.well-known/did-configuration.json', methods=['GET'])
def well_known_did_configuration():
document = json.load(open('well_known_did_configuration.jsonld', 'r'))
headers = {
"Content-Type": "application/did+ld+json",
"Cache-Control": "no-cache"
}
return Response(json.dumps(document), headers=headers)
@app.route('/device_detector' , methods=['GET'])
def device_detector():
ua = request.headers.get('User-Agent')
device = SoftwareDetector(ua).parse()
logging.info(device.os_name())
if device.os_name() == "Android":
return redirect("https://play.google.com/store/apps/details?id=co.talao.wallet")
else:
return redirect("https://apps.apple.com/fr/app/talao-wallet/id1582183266?platform=iphone")
# .well-known DID API
@app.route('/.well-known/did.json', methods=['GET'])
@app.route('/did.json', methods=['GET'])
def well_known_did():
"""
did:web:talao.co
"""
DID_Document = json.load(open('DID_Document.json', 'r'))
headers = {
"Content-Type": "application/did+ld+json",
"Cache-Control": "no-cache"
}
return Response(json.dumps(DID_Document), headers=headers)
# .well-known for walllet as issuer
@app.route('/wallet_issuer/.well-known/openid-configuration', methods=['GET'])
@app.route('/wallet-issuer/.well-known/openid-configuration', methods=['GET'])
def wallet_issuer_well_known_did():
wallet_issuer = json.load(open('wallet_metadata_for_verifiers.json', 'r'))
headers = {
"Content-Type": "application/json",
"Cache-Control": "no-cache"
}
return Response(json.dumps(wallet_issuer), headers=headers)
# MAIN entry point for test
if __name__ == '__main__':
# info release
logging.info('flask test serveur run with debug mode')
app.run(host=mode.flaskserver,
port=mode.port,
debug=mode.test,
threaded=True)