-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
341 lines (295 loc) · 9.43 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
import os
import requests
import logging
import time
from dotenv import load_dotenv
from requests.api import get
from slack_bolt import App
from slack_bolt.adapter.socket_mode import SocketModeHandler
load_dotenv()
# logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)
# Initializes your app with your bot token and signing secret
app = App(token=os.environ["SLACK_BOT_TOKEN"])
moonraker_url = os.environ["MOONRAKER_URL"]
webcam_image_url = os.environ["WEBCAM_IMAGE_URL"]
def download_image():
response = requests.get(webcam_image_url)
filename = "printer_image.jpg"
file = open(filename, "wb")
file.write(response.content)
file.close()
return filename
def get_moonraker_status():
response = requests.get(f"{moonraker_url}/printer/objects/query?gcode_move&toolhead&extruder=target,temperature&display_status&mcu&heaters&system_stats&fan&extruder&heater_bed&print_stats")
json_data = response.json()["result"]["status"]
json_data["metadata"] = get_gcode_metadata(json_data['print_stats']['filename'])
#logger.error(json_data)
return json_data
def get_gcode_metadata(gcode_filename):
response = requests.get(f"{moonraker_url}/server/database/item?namespace=gcode_metadata")
json_data = response.json()["result"]["value"][gcode_filename]
# logger.error(json_data)
return json_data
# @app.command("/klipper")
# def repeat_text(ack, say, command):
# # Acknowledge command request
# ack()
# say(f"{command['text']}")
@app.message("status")
def show_printer_status(client, message, say):
client.reactions_add(
name="traffic_light",
channel=message["channel"],
timestamp=message["ts"]
)
fn = download_image()
file_name = f"./{fn}"
response = client.files_upload(
initial_comment="File upload complete :up: gathering other data :clock2: ",
channels=message["channel"],
file=file_name,
)
ts = response['file']['shares']['public'][message['channel']][0]['ts']
pd = get_moonraker_status()
print_time = time.strftime('%-H:%M', time.gmtime(pd["print_stats"]["print_duration"]))
actual_time = time.strftime('%-H:%M', time.gmtime(pd["print_stats"]["total_duration"]))
total_time = time.strftime('%-H:%M', time.gmtime(pd["metadata"]["estimated_time"]))
remaining_time = time.strftime('%-H:%M', time.gmtime(pd["metadata"]["estimated_time"] - pd["print_stats"]["print_duration"]))
percent_complete = int(100 * pd['display_status']['progress'])
block_message = [{
"type": "header",
"text": {
"type": "plain_text",
"text": f"{pd['print_stats']['filename']} - {pd['print_stats']['state']} - {percent_complete}% - {remaining_time} remaining",
"emoji": True
}
},
{
"type": "context",
"elements": [
{
"type": "plain_text",
"text": f"Voron 2.4 - Print Time: {print_time} - Total Time: {actual_time}",
"emoji": True
}
]
},
{
"type": "context",
"elements": [
{
"type": "image",
"image_url": "https://avatars.githubusercontent.com/u/44981431?s=200&v=4",
"alt_text": "Voron"
},
{
"type": "mrkdwn",
"text": f"*Printbot* has an update for you <@{message['user']}>!"
}
]
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": f":bed::thermometer: {round(pd['heater_bed']['temperature'])}° ({int(100 * pd['heater_bed']['power'])}%)\n\
:syringe::thermometer: {round(pd['extruder']['temperature'])}° ({int(100 * pd['extruder']['power'])}%)\n\
:round_pushpin: x:{round(pd['toolhead']['position'][0])} y:{round(pd['toolhead']['position'][1])} z:{round(pd['toolhead']['position'][2],2)}mm\n\
:cyclone: {int(100*pd['fan']['speed'])}%\n\
:clock3: {print_time} / {total_time}\n\
:thread: {round(pd['print_stats']['filament_used']/1000)}m / {round(pd['metadata']['filament_total']/1000)}m "
}
}
]
action_message = [
{
"type": "actions",
"elements": [
{
"type": "button",
"action_id": "printer_action_pause",
"text": {
"type": "plain_text",
"emoji": True,
"text": ":double_vertical_bar: Pause"
},
"style": "primary",
},
{
"type": "button",
"action_id": "printer_action_resume",
"text": {
"type": "plain_text",
"emoji": True,
"text": ":black_right_pointing_triangle_with_double_vertical_bar: Resume"
},
"style": "primary",
},
{
"type": "button",
"action_id": "printer_action_cancel",
"text": {
"type": "plain_text",
"emoji": True,
"text": ":x: Cancel"
},
"confirm": {
"title": {
"type": "plain_text",
"text": "Are you sure?"
},
"text": {
"type": "mrkdwn",
"text": "This will *cancel the print*!"
},
"confirm": {
"type": "plain_text",
"text": "CANCEL PRINT"
},
"deny": {
"type": "plain_text",
"text": "Stop, I've changed my mind!"
},
},
},
{
"type": "button",
"action_id": "printer_action_stop",
"text": {
"type": "plain_text",
"emoji": True,
"text": ":octagonal_sign: Emergency STOP"
},
"confirm": {
"title": {
"type": "plain_text",
"text": "Are you sure?"
},
"text": {
"type": "mrkdwn",
"text": "This will *halt the printer*!"
},
"confirm": {
"type": "plain_text",
"text": "EMERGENCY STOP PRINT"
},
"deny": {
"type": "plain_text",
"text": "Stop, I've changed my mind!"
},
},
"style": "danger",
"value": "cancel_print"
}
]
}
]
client.chat_postMessage(
channel=message["channel"],
# thread_ts=message_ts,
text="Printer actions",
blocks=action_message
# You could also use a blocks[] array to send richer content
)
response = client.chat_update(
channel=message["channel"],
text=f"Hey there <@{message['user']}>!",
ts=ts,
blocks=block_message
)
client.reactions_add(
name="white_check_mark",
channel=message["channel"],
timestamp=message["ts"]
)
client.reactions_remove(
name="traffic_light",
channel=message["channel"],
timestamp=message["ts"]
)
@app.action("printer_action_pause")
def approve_request(ack, say):
# Acknowledge action request
ack()
requests.post(f"{moonraker_url}/printer/print/pause")
say(":printer: :double_vertical_bar: Print Paused")
@app.action("printer_action_resume")
def approve_request(ack, say):
# Acknowledge action request
ack()
requests.post(f"{moonraker_url}/printer/print/resume")
say(":printer: :black_right_pointing_triangle_with_double_vertical_bar: Print Resumed")
@app.action("printer_action_cancel")
def approve_request(ack, say):
# Acknowledge action request
ack()
requests.post(f"{moonraker_url}/printer/print/cancel")
say(":printer: :x: Print Cancelled")
@app.action("printer_action_stop")
def approve_request(ack, say):
# Acknowledge action request
ack()
requests.post(f"{moonraker_url}/printer/emergency_stop")
say(":printer: :octagonal_sign: Print Stopped")
@app.event("message")
def handle_message_events(body, logger):
logger.info(body)
@app.message(":wave:")
def say_hello(message, say):
user = message['user']
say(f"Hi there, <@{user}>!")
@app.event("app_home_opened")
def update_home_tab(client, event, logger):
try:
# views.publish is the method that your app uses to push a view to the Home tab
client.views_publish(
# the user that opened your app's app home
user_id=event["user"],
# the view object that appears in the app home
view={
"type": "home",
"callback_id": "home_view",
# body of the view
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Welcome to your _App's Home_* :tada:"
}
},
{
"type": "divider"
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "This button won't do much for now but you can set up a listener for it using the `actions()` method and passing its unique `action_id`. See an example in the `examples` folder within your Bolt app."
}
},
{
"type": "actions",
"elements": [
{
"type": "button",
"text": {
"type": "plain_text",
"text": "Click me!"
}
}
]
}
]
}
)
except Exception as e:
logger.error(f"Error publishing home tab: {e}")
@app.action("print_control")
def approve_request(ack, say):
# Acknowledge action request
ack()
say("Request approved 👍")
if __name__ == "__main__":
SocketModeHandler(app, os.environ["SLACK_APP_TOKEN"]).start()