Compare commits

..

No commits in common. "5e07b3b7ddd2697872f68093ce033f920cf86d40" and "ecb06e812dc21070b675e92c81730aa31cb49a8b" have entirely different histories.

2 changed files with 3 additions and 19 deletions

View file

@ -5,7 +5,6 @@ import flask_sqlalchemy
import flask_praetorian import flask_praetorian
import flask_cors import flask_cors
import sys import sys
from password_util import get_random_password
db = flask_sqlalchemy.SQLAlchemy() db = flask_sqlalchemy.SQLAlchemy()
guard = flask_praetorian.Praetorian() guard = flask_praetorian.Praetorian()
@ -132,12 +131,6 @@ def protected():
""" """
return {'message': f'protected endpoint (allowed user {flask_praetorian.current_user().username})'} return {'message': f'protected endpoint (allowed user {flask_praetorian.current_user().username})'}
@app.route('/api/protected/rcv_pw', methods=['GET'])
# @flask_praetorian.auth_required
def get_password():
pw = get_random_password()
print(pw)
return pw
@app.route('/api/register', methods=['POST']) @app.route('/api/register', methods=['POST'])
def register(): def register():

View file

@ -9,8 +9,7 @@ def get_random_value(list_length):
random_select = randint(0, list_length) random_select = randint(0, list_length)
return random_select return random_select
def get_password():
def get_random_password():
first_part = [ first_part = [
"Der Vogel", "Der Vogel",
@ -18,19 +17,12 @@ def get_random_password():
"Die Biene", "Die Biene",
"Ein Mensch", "Ein Mensch",
"Jemand", "Jemand",
"Der Hund",
"Der Kater",
] ]
second_part = [ second_part = [
"frisst", "frisst",
"küsst", "küsst",
"begrüsst", "begrüsst",
"besucht",
"beeinflusst",
"isst",
"findet",
"vergisst",
] ]
third_part = [ third_part = [
@ -46,9 +38,8 @@ def get_random_password():
forth_part = [ forth_part = [
"auf der Terasse.", "auf der Terasse.",
"auf der Wiese.", "auf der Wiese.",
"im Garten.", "im Garten.",
"in der Kühltruhe.", "in der Kühltruhe.",
"auf dem Balkon.",
] ]
password = "" password = ""
@ -57,4 +48,4 @@ def get_random_password():
password += " " + str(third_part[get_random_value(len(third_part)-1)]) password += " " + str(third_part[get_random_value(len(third_part)-1)])
password += " " + str(forth_part[get_random_value(len(forth_part)-1)]) password += " " + str(forth_part[get_random_value(len(forth_part)-1)])
return password return password