Update 'face_recognition/app/app.py'
This commit is contained in:
parent
df2565233d
commit
369d5b5947
@ -15,6 +15,28 @@ def access_minio():
|
|||||||
print(bucket.name, bucket.creation_date, flush=True)
|
print(bucket.name, bucket.creation_date, flush=True)
|
||||||
return('Connection Succesfull')
|
return('Connection Succesfull')
|
||||||
|
|
||||||
|
@app.route('/new_user_id')
|
||||||
|
def new_user_id():
|
||||||
|
id = None
|
||||||
|
for limited_try in range(0,5):
|
||||||
|
id = str(uuid.uuid4())
|
||||||
|
if check_id(id) == False:
|
||||||
|
break
|
||||||
|
#funktionalität implementieres s3 Platzhalterdatei anlegen für user,
|
||||||
|
return(id)
|
||||||
|
|
||||||
|
def check_id(id):
|
||||||
|
#return True -> id bereits verwendet
|
||||||
|
#return False -> id noch nicht verwendet
|
||||||
|
users = minioClient.list_objects('users')
|
||||||
|
known = False
|
||||||
|
for user in users:
|
||||||
|
if id == user.object_name.encode('utf-8'):
|
||||||
|
known = True
|
||||||
|
else:
|
||||||
|
pass
|
||||||
|
return known
|
||||||
|
|
||||||
def setup():
|
def setup():
|
||||||
minioClient = Minio('minio:9000', access_key=os.environ['s3-name'], secret_key=os.environ['s3-password'], secure=False)
|
minioClient = Minio('minio:9000', access_key=os.environ['s3-name'], secret_key=os.environ['s3-password'], secure=False)
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user