-
Notifications
You must be signed in to change notification settings - Fork 262
/
Copy pathdialogs_app.py
118 lines (101 loc) · 3.18 KB
/
dialogs_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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import logging
logging.basicConfig(level=logging.DEBUG)
from slack_bolt import App, Ack
app = App()
@app.middleware # or app.use(log_request)
def log_request(logger, body, next):
logger.debug(body)
return next()
@app.command("/hello-bolt-python")
def test_command(body, client, ack, logger):
logger.info(body)
ack("I got it!")
res = client.dialog_open(
trigger_id=body["trigger_id"],
dialog={
"callback_id": "dialog-callback-id",
"title": "Request a Ride",
"submit_label": "Request",
"notify_on_cancel": True,
"state": "Limo",
"elements": [
{"type": "text", "label": "Pickup Location", "name": "loc_origin"},
{
"type": "text",
"label": "Dropoff Location",
"name": "loc_destination",
},
{
"label": "Type",
"name": "types",
"type": "select",
"data_source": "external",
},
],
},
)
logger.info(res)
@app.action("dialog-callback-id")
def dialog_submission_or_cancellation(ack: Ack, body: dict):
if body["type"] == "dialog_cancellation":
# This can be sent only when notify_on_cancel is True
ack()
return
errors = []
submission = body["submission"]
if len(submission["loc_origin"]) <= 3:
errors = [
{
"name": "loc_origin",
"error": "Pickup Location must be longer than 3 characters",
}
]
if len(errors) > 0:
# or ack({"errors": errors})
ack(errors=errors)
else:
ack()
# @app.action({"type": "dialog_submission", "callback_id": "dialog-callback-id"})
# def dialog_submission_or_cancellation(ack: Ack, body: dict):
# errors = []
# submission = body["submission"]
# if len(submission["loc_origin"]) <= 3:
# errors = [
# {
# "name": "loc_origin",
# "error": "Pickup Location must be longer than 3 characters"
# }
# ]
# if len(errors) > 0:
# # or ack({"errors": errors})
# ack(errors=errors)
# else:
# ack()
#
# @app.action({"type": "dialog_cancellation", "callback_id": "dialog-callback-id"})
# def dialog_cancellation(ack):
# ack()
# @app.options({"type": "dialog_suggestion", "callback_id": "dialog-callback-id"})
@app.options("dialog-callback-id")
def dialog_suggestion(ack):
ack(
{
"options": [
{
"label": "[UXD-342] The button color should be artichoke green, not jalapeño",
"value": "UXD-342",
},
{"label": "[FE-459] Remove the marquee tag", "value": "FE-459"},
{
"label": "[FE-238] Too many shades of gray in master CSS",
"value": "FE-238",
},
]
}
)
if __name__ == "__main__":
app.start(3000)
# pip install slack_bolt
# export SLACK_SIGNING_SECRET=***
# export SLACK_BOT_TOKEN=xoxb-***
# python dialogs_app.py