comment set rols for users
This commit is contained in:
parent
5c02b424c1
commit
95700e7ba4
|
@ -8,12 +8,13 @@ def register_user(email, password, rols="Operator"):
|
||||||
# rols = 'Issuer, Operator, Witness, Verifier'
|
# rols = 'Issuer, Operator, Witness, Verifier'
|
||||||
user = User.query.filter_by(email=email).one()
|
user = User.query.filter_by(email=email).one()
|
||||||
|
|
||||||
token_dlt = user.set_new_dlt_keys(password)
|
# token_dlt = user.set_new_dlt_keys(password)
|
||||||
result = user.allow_permitions(api_token=token_dlt, rols=rols)
|
# result = user.allow_permitions(api_token=token_dlt, rols=rols)
|
||||||
rols = user.get_rols(token_dlt=token_dlt)
|
# rols = user.get_rols(token_dlt=token_dlt)
|
||||||
rols = [k for k, v in rols]
|
# rols = [k for k, v in rols]
|
||||||
user.rols_dlt = json.dumps(rols)
|
# user.rols_dlt = json.dumps(rols)
|
||||||
|
|
||||||
db.session.commit()
|
# db.session.commit()
|
||||||
|
|
||||||
return result, rols
|
# return result, rols
|
||||||
|
return
|
||||||
|
|
|
@ -5,5 +5,5 @@ from ereuse_devicehub.resources.user.models import User
|
||||||
def set_dlt_user(email, password):
|
def set_dlt_user(email, password):
|
||||||
u = User.query.filter_by(email=email).one()
|
u = User.query.filter_by(email=email).one()
|
||||||
api_token = u.set_new_dlt_keys(password)
|
api_token = u.set_new_dlt_keys(password)
|
||||||
u.allow_permitions(api_token)
|
# u.allow_permitions(api_token)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
|
|
|
@ -140,22 +140,25 @@ class User(UserMixin, Thing):
|
||||||
self.api_keys_dlt = encrypt(password, data)
|
self.api_keys_dlt = encrypt(password, data)
|
||||||
|
|
||||||
def allow_permitions(self, api_token=None, rols="Operator"):
|
def allow_permitions(self, api_token=None, rols="Operator"):
|
||||||
if 'dpp' not in app.blueprints.keys():
|
# Is discontinued over IOTA branch
|
||||||
return
|
return
|
||||||
|
|
||||||
if not api_token:
|
# if 'dpp' not in app.blueprints.keys():
|
||||||
api_token = session.get('token_dlt', '.')
|
# return
|
||||||
target_user = api_token.split(".")[0]
|
|
||||||
keyUser1 = app.config.get('API_DLT_TOKEN')
|
|
||||||
api_dlt = app.config.get('API_DLT')
|
|
||||||
if not keyUser1 or not api_dlt:
|
|
||||||
return
|
|
||||||
|
|
||||||
apiUser1 = API(api_dlt, keyUser1, "ethereum")
|
# if not api_token:
|
||||||
|
# api_token = session.get('token_dlt', '.')
|
||||||
|
# target_user = api_token.split(".")[0]
|
||||||
|
# keyUser1 = app.config.get('API_DLT_TOKEN')
|
||||||
|
# api_dlt = app.config.get('API_DLT')
|
||||||
|
# if not keyUser1 or not api_dlt:
|
||||||
|
# return
|
||||||
|
|
||||||
for rol in rols.split(","):
|
# apiUser1 = API(api_dlt, keyUser1, "ethereum")
|
||||||
result = apiUser1.issue_credential(rol.strip(), target_user)
|
|
||||||
return result
|
# for rol in rols.split(","):
|
||||||
|
# result = apiUser1.issue_credential(rol.strip(), target_user)
|
||||||
|
# return result
|
||||||
|
|
||||||
def get_rols_dlt(self):
|
def get_rols_dlt(self):
|
||||||
return json.loads(self.rols_dlt)
|
return json.loads(self.rols_dlt)
|
||||||
|
|
Reference in New Issue