-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprinter.go
446 lines (353 loc) · 9.24 KB
/
printer.go
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
package main
import (
"bytes"
"errors"
"fmt"
"io/ioutil"
"mime/multipart"
"net/http"
"net/http/httputil"
"os"
"os/exec"
"strings"
)
// States for a printer
const (
PIdle = "Idle"
PRendering = "Rendering"
PSlicing = "Slicing"
PUploading = "Uploading"
PPrinting = "Printing"
PDone = "Done"
PErrored = "Errored!"
)
// PrinterColumns are the Columns that should be shown in the interface for printers
var PrinterColumns = []Column{
{
Name: "id",
Label: "ID",
Type: "integer",
Editable: false,
},
{
Name: "name",
Label: "Name",
Type: "string",
Editable: true,
},
{
Name: "status",
Label: "Status",
Type: "string",
Editable: false,
},
{
Name: "active",
Label: "Active",
Type: "boolean",
Editable: true,
},
{
Name: "selectable",
Label: "Selectable",
Type: "boolean",
Editable: true,
},
{
Name: "nametag-id",
Label: "Nametag ID",
Type: "integer",
Editable: false,
},
{
Name: "color",
Label: "Color",
Type: "string",
Editable: true,
},
{
Name: "ip",
Label: "IP",
Type: "string",
Editable: true,
},
{
Name: "api-key",
Label: "API Key",
Type: "string",
Editable: true,
},
{
Name: "slicer-config",
Label: "Slicer Config",
Type: "string",
Editable: true,
},
}
// Printer for printing nametags
type Printer struct {
ID int `json:"id"` // Unique ID of the printer
Name string `json:"name"` // Readable name for the printer
Status string `json:"status"` // Status of the printer
Active bool `json:"active"` // Active or not
Selectable bool `json:"selectable"` // Selectable or not
NametagID int `json:"nametag-id"` // Nametag ID that is currently printing
Color string `json:"color"` // The color that the printer prints
IP string `json:"ip"` // IP for the printer
APIKey string `json:"api-key"` // API Key to use for the printer
SlicerConf string `json:"slicer-config"` // Slicer config path
}
func (printer *Printer) generateID() int {
for id := 10; ; id++ {
//Manager.Printf("Trying ID: %d", id)
unique := true
for i := range printers {
if id == printers[i].ID {
unique = false
break
}
}
if unique {
printer.ID = id
break
}
}
printer.Status = PIdle
//Manager.Println(printer.ID)
return printer.ID
}
func (printer *Printer) renderNametag(id int) (err error) {
_, nametag := findNametag(id)
Manager.Printf("Rendering Nametag %d for Printer %d", nametag.ID, printer.ID)
args := []string{
fmt.Sprintf("-o%s%d.stl", Root+MainConfig.StlDir, nametag.ID),
fmt.Sprintf("-D name=\"%s\"", nametag.Name),
fmt.Sprintf("-D chars=%d "+"", len(nametag.Name)),
fmt.Sprintf("%sname.scad", Root+MainConfig.OpenScadScript),
}
CurrentCommand = MainConfig.OpenScadPath + " " + strings.Join(args, " ")
out, err := exec.Command(MainConfig.OpenScadPath, args...).CombinedOutput()
//_, err = exec.Command(head, parts...).CombinedOutput()
Debug.Printf("Standard Out and Error:\n%s", out)
if err != nil {
return err
//Error.Printf("%s", err)
}
CurrentCommand = ""
return nil
}
func (printer *Printer) sliceNametag(id int) error {
_, nametag := findNametag(id)
if nametag == nil {
return errors.New("Could not find nametag")
}
Manager.Printf("Slicing Nametag %d for Printer %d", nametag.ID, printer.ID)
//nametag.Status = NSlicing
//printer.Status = PSlicing
slicerArgs := fmt.Sprintf(" -o %s%s%d.gcode --load %s%s%s %s%s%d.stl", Root, MainConfig.GcodeDir, nametag.ID, Root, MainConfig.SlicerConfigDir, printer.SlicerConf, Root, MainConfig.StlDir, nametag.ID)
cmd := MainConfig.SlicerPath + slicerArgs
CurrentCommand = cmd
//Manager.Println("Running:")
//Manager.Println(cmd)
parts := strings.Fields(cmd)
head := parts[0]
parts = parts[1:len(parts)]
out, err := exec.Command(head, parts...).CombinedOutput()
//_, err := exec.Command(head, parts...).CombinedOutput()
Debug.Printf("Standard Out and Error:\n%s", out)
if err != nil {
return err
}
CurrentCommand = ""
return nil
}
func (printer *Printer) uploadNametag(id int) error {
_, nametag := findNametag(id)
if nametag == nil {
return errors.New("Could not find nametag")
}
Manager.Printf("Uploading Nametag %d to Printer %d", nametag.ID, printer.ID)
//nametag.Status = NUploading
//printer.Status = PUploading
CurrentCommand = "Uploading " + nametag.Name + " to " + printer.Name
uri := fmt.Sprintf("http://%s/api/files/local", printer.IP)
// Open Gcode file
file, err := os.Open(fmt.Sprintf("%s%d.gcode", Root+MainConfig.GcodeDir, nametag.ID))
if err != nil {
return err
}
// Get file contents
fileContents, err := ioutil.ReadAll(file)
if err != nil {
return err
}
// Get file stats
fi, err := file.Stat()
if err != nil {
return err
}
file.Close()
// Read file
body := new(bytes.Buffer)
// Read file into writer for sending
writer := multipart.NewWriter(body)
part, err := writer.CreateFormFile("file", fi.Name())
if err != nil {
return err
}
// Write file
part.Write(fileContents)
// Create print header
//_ = writer.WriteField("print", "true")
err = writer.Close()
if err != nil {
return err
}
Debug.Println("Creating request")
// Create POST request
request, err := http.NewRequest("POST", uri, body)
if err != nil {
return err
}
Debug.Println("Adding headers")
// Add headers to POST request
request.Header.Add("X-Api-Key", printer.APIKey)
request.Header.Set("Content-Type", writer.FormDataContentType())
_, err = httputil.DumpRequest(request, true)
if err != nil {
return err
}
Debug.Println("Doing request")
// Do request
client := &http.Client{}
resp, err := client.Do(request)
if err != nil {
//Warning.Println(err)
printer.Active = false
return err
}
defer resp.Body.Close()
Debug.Println("Reading response")
// Read response
body = &bytes.Buffer{}
_, err = body.ReadFrom(resp.Body)
if err != nil {
return err
}
Manager.Println(resp.Status)
Manager.Println(body)
if resp.StatusCode != 201 {
return errors.New("Wrong status code: " + resp.Status)
}
CurrentCommand = ""
return nil
}
func (printer *Printer) selectNametag(id int) error {
_, nametag := findNametag(id)
if nametag == nil {
return errors.New("Could not find nametag")
}
Manager.Printf("Selecting Nametag %d on Printer %d", nametag.ID, printer.ID)
//nametag.Status = NUploading
//printer.Status = PUploading
CurrentCommand = "Selecting " + nametag.Name + " no " + printer.Name
uri := fmt.Sprintf("http://%s/api/files/local/%d.gcode", printer.IP, id)
var json = []byte(`{"command":"select"}`)
// Create POST request
request, err := http.NewRequest("POST", uri, bytes.NewBuffer(json))
if err != nil {
return err
}
// Add headers to POST request
request.Header.Add("X-Api-Key", printer.APIKey)
request.Header.Set("Content-Type", "application/json")
_, err = httputil.DumpRequest(request, true)
if err != nil {
return err
}
// Do request
client := &http.Client{}
resp, err := client.Do(request)
if err != nil {
//Warning.Println(err)
printer.Active = false
return err
}
defer resp.Body.Close()
Manager.Println(resp.Status)
if resp.StatusCode != 204 {
return errors.New("Wrong status code: " + resp.Status)
}
CurrentCommand = ""
return nil
}
func (printer *Printer) print() error {
Manager.Printf("Printing on Printer %d", printer.ID)
//nametag.Status = NUploading
//printer.Status = PUploading
CurrentCommand = "Printing on" + printer.Name
uri := fmt.Sprintf("http://%s/api/job", printer.IP)
var json = []byte(`{"command":"start"}`)
// Create POST request
request, err := http.NewRequest("POST", uri, bytes.NewBuffer(json))
if err != nil {
return err
}
// Add headers to POST request
request.Header.Add("X-Api-Key", printer.APIKey)
request.Header.Set("Content-Type", "application/json")
_, err = httputil.DumpRequest(request, true)
if err != nil {
return err
}
// Do request
client := &http.Client{}
resp, err := client.Do(request)
if err != nil {
//Warning.Println(err)
printer.Active = false
return err
}
defer resp.Body.Close()
Manager.Println(resp.StatusCode)
if resp.StatusCode != 204 {
return errors.New("Wrong status code: " + resp.Status)
}
CurrentCommand = ""
return nil
}
func (printer *Printer) cancel() error {
Manager.Printf("Canceling on Printer %d", printer.ID)
//nametag.Status = NUploading
//printer.Status = PUploading
CurrentCommand = "Canceling on" + printer.Name
uri := fmt.Sprintf("http://%s/api/job", printer.IP)
var json = []byte(`{"command":"cancel"}`)
// Create POST request
request, err := http.NewRequest("POST", uri, bytes.NewBuffer(json))
if err != nil {
return err
}
// Add headers to POST request
request.Header.Add("X-Api-Key", printer.APIKey)
request.Header.Set("Content-Type", "application/json")
_, err = httputil.DumpRequest(request, true)
if err != nil {
return err
}
// Do request
client := &http.Client{}
resp, err := client.Do(request)
if err != nil {
//Warning.Println(err)
printer.Active = false
return err
}
defer resp.Body.Close()
Manager.Println(resp.StatusCode)
if resp.StatusCode != 204 {
return errors.New("Wrong status code: " + resp.Status)
}
CurrentCommand = ""
return nil
}