Modifications mineures
This commit is contained in:
parent
6320b99070
commit
60c79a05a9
1 changed files with 38 additions and 40 deletions
6
app.py
6
app.py
|
@ -12,8 +12,10 @@ app.config['TEMPLATES_AUTO_RELOAD'] = True
|
|||
|
||||
class Status(Enum):
|
||||
ERREUR_LIEN = "Le lien doit être en http ou https et valide !"
|
||||
ERREUR_INCONNUE = "Une erreur inconnue a été rencontrée !"
|
||||
BON = "Lien ajouté !"
|
||||
|
||||
class Manip():
|
||||
def ecritureFichierHtml(nouvLien, cheminFichier):
|
||||
with open(cheminFichier, 'r+') as file:
|
||||
soup = BeautifulSoup(file, 'html.parser')
|
||||
|
@ -54,7 +56,6 @@ def bizutage_redirect():
|
|||
|
||||
@app.route("/bizutage", methods=["POST"])
|
||||
def bizutage():
|
||||
if request.method == "POST":
|
||||
lien = request.values['lien']
|
||||
if not valideUrl(lien):
|
||||
return render_template(
|
||||
|
@ -74,9 +75,6 @@ def bizutage():
|
|||
|
||||
ecritureFichierHtml(nouvLienHtml, "static/index.html")
|
||||
ecritureFichierHtml(nouvLienHtml, "lite/index.html")
|
||||
|
||||
else:
|
||||
print("error")
|
||||
return render_template("ajout.html", reussi=Status.BON.value)
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in a new issue