-
Notifications
You must be signed in to change notification settings - Fork 114
/
app.py
79 lines (57 loc) · 2.46 KB
/
app.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
from flask import Flask, render_template, request, jsonify
import redis
import string
import random
import os
from prometheus_client import Counter, start_http_server, generate_latest
app = Flask(__name__)
redis_host = os.environ.get('REDIS_HOST', 'redis-service')
redis_port = 6379
redis_password = ""
r = redis.StrictRedis(host=redis_host, port=redis_port, password=redis_password, decode_responses=True)
senha_gerada_counter = Counter('senha_gerada', 'Contador de senhas geradas')
def criar_senha(tamanho, incluir_numeros, incluir_caracteres_especiais):
caracteres = string.ascii_letters
if incluir_numeros:
caracteres += string.digits
if incluir_caracteres_especiais:
caracteres += string.punctuation
senha = ''.join(random.choices(caracteres, k=tamanho))
return senha
@app.route('/', methods=['GET', 'POST'])
def index():
if request.method == 'POST':
tamanho = int(request.form.get('tamanho', 8))
incluir_numeros = request.form.get('incluir_numeros') == 'on'
incluir_caracteres_especiais = request.form.get('incluir_caracteres_especiais') == 'on'
senha = criar_senha(tamanho, incluir_numeros, incluir_caracteres_especiais)
r.lpush("senhas", senha)
senha_gerada_counter.inc()
senhas = r.lrange("senhas", 0, 9)
if senhas:
senhas_geradas = [{"id": index + 1, "senha": senha} for index, senha in enumerate(senhas)]
return render_template('index.html', senhas_geradas=senhas_geradas, senha=senhas_geradas[0]['senha'] or '' )
return render_template('index.html')
@app.route('/api/gerar-senha', methods=['POST'])
def gerar_senha_api():
dados = request.get_json()
tamanho = int(dados.get('tamanho', 8))
incluir_numeros = dados.get('incluir_numeros', False)
incluir_caracteres_especiais = dados.get('incluir_caracteres_especiais', False)
senha = criar_senha(tamanho, incluir_numeros, incluir_caracteres_especiais)
r.lpush("senhas", senha)
senha_gerada_counter.inc()
return jsonify({"senha": senha})
@app.route('/api/senhas', methods=['GET'])
def listar_senhas():
senhas = r.lrange("senhas", 0, 9)
resposta = [{"id": index + 1, "senha": senha} for index, senha in enumerate(senhas)]
return jsonify(resposta)
@app.route('/metrics')
def metrics():
return generate_latest()
if __name__ == '__main__':
import logging
logging.basicConfig(filename='error.log', level=logging.DEBUG)
start_http_server(8088)
app.run(debug=False)