-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
76 lines (50 loc) · 2.21 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
"""
Modulo Flask para tratar e processar os webhooks
"""
# pylint: disable=missing-module-docstring
# pylint: disable=missing-class-docstring
# pylint: disable=missing-function-docstring
from flask import Flask, request, render_template, jsonify
from main import check_team_wip, sheet_notification_update, check_progress_status
app = Flask(__name__)
# Mensagens sobre estouro do WIP no Slack
@app.route('/check_progress_status', methods=['POST'])
def progress_status_check():
data = request.get_json()
if not data or 'team_id' not in data:
return jsonify({"error": "Dados JSON inválidos ou 'team_id' não encontrado"}), 400
if not data or 'epic_id' not in data:
return jsonify({"error": "Dados JSON inválidos ou 'epic_id' não encontrado"}), 400
if not data or 'label' not in data:
return jsonify({"error": "Dados JSON inválidos ou 'label' não encontrado"}), 400
team_id = data["team_id"]
epic_id = data['epic_id']
label = data['label']
check_progress_status(team_id, epic_id, label)
return jsonify({"message": "Webhook processado"}), 200
# Mensagens sobre estouro do WIP no Slack
@app.route('/wipcheck', methods=['POST'])
def wip_check():
data = request.get_json()
if not data or 'team_id' not in data:
return jsonify({"error": "Dados JSON inválidos ou 'team_id' não encontrado"}), 400
team_id = data['team_id']
check_team_wip(team_id)
return jsonify({"message": "Webhook processado"}), 200
# Mensagens sobre atualização de google Sheets no Slack
@app.route('/sheet-update', methods=['POST'])
def sheet_update():
data = request.get_json()
if not data or 'team_id' not in data or 'sheet_name' not in data or 'num_rows_updated' not in data:
return jsonify({"error": "Dados JSON inválidos ou não encontrados"}), 400
team_id = data['team_id']
sheet_name = data['sheet_name']
num_rows_updated = data['num_rows_updated']
sheet_notification_update(team_id, sheet_name, num_rows_updated)
return jsonify({"message": "Webhook processado"}), 200
# Homepage aplicação
@app.route('/', methods=['GET'])
def homepage():
return render_template("index.html")
if __name__ == "__main__":
app.run(debug=True)