-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathserver.go
369 lines (326 loc) · 8.58 KB
/
server.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
package main
import (
"context"
"encoding/json"
"fmt"
"net/http"
"os"
"path/filepath"
"strconv"
"strings"
"time"
"github.com/gin-gonic/gin"
rt "github.com/wailsapp/wails/v2/pkg/runtime"
)
type WdMsg struct {
Wd string `json:"wd" binding:"required"`
}
type ChangeWdMsg struct {
Wd string `json:"wd" binding:"required"`
}
type NoteMsg struct {
Message string `json:"note" binding:"required"`
}
type NoteChangeMsg struct {
Note string `json:"note" binding:"required"`
Noteid string `json:"noteid" binding:"required"`
Aw string `json:"aw" binding:"required"`
}
type ScriptMsg struct {
Script string `json:"script" binding:"required"`
Text string `json:"text"`
Env string `json:"env"`
EnvVar []string `json:"envVar"`
CommandLine string `json:"commandLine"`
ReturnMsg string `json:"returnMsg"`
}
type TemplateMsg struct {
Template string `json:"template" binding:"required"`
Text string `json:"text"`
ReturnMsg string `json:"returnMsg"`
}
type EmailMsg struct {
Account string `json:"account"`
To string `json:"to" binding:"required"`
From string `json:"from" binding:"required"`
Subject string `json:"subject" binding:"required"`
Body string `json:"body" binding:"required"`
Attachment string `json:"attachment"`
ReturnMsg string `json:"returnMsg"`
}
type CommandMsg struct {
Action string `json:"action"`
ReturnMsg string `json:"returnMsg"`
}
type EmptyMsg struct {
ReturnMsg string `json:"returnMsg"`
}
func backend(app *App, ctx context.Context) {
//
// This will have the web server backend for EmailIt
//
r := gin.Default()
// r.Use(gin.Recovery())
//
// Define the routes needed.
//
r.GET("/api/note/:noteid/:type", func(c *gin.Context) {
noteid := c.Param("noteid")
nid, _ := strconv.Atoi(noteid)
hmdir := app.GetHomeDir()
notesfilepath := filepath.Join(hmdir, ".config", "EmailIt", "notes.json")
notesRaw, err := os.ReadFile(notesfilepath)
if err != nil || nid < 0 || nid > 9 {
c.JSON(http.StatusBadRequest, gin.H{
"note": "no note",
})
} else {
var notes []string
err := json.Unmarshal(notesRaw, ¬es)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
}
c.JSON(http.StatusOK, gin.H{
"note": notes[nid],
})
}
})
r.PUT("/api/wd", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"msg": "okay",
})
var json WdMsg
if err := c.ShouldBindJSON(&json); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
//
// Send it to the frontend.
//
rt.EventsEmit(ctx, "changewd", ChangeWdMsg{
Wd: json.Wd,
})
})
r.PUT("/api/note/:noteid/:type", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"msg": "okay",
})
var json NoteMsg
if err := c.ShouldBindJSON(&json); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
noteid := c.Param("noteid")
awtype := c.Param("type")
nid, err := strconv.Atoi(noteid)
//
// Send it to the frontend.
//
if err != nil || (nid > 0 && nid < 9) {
rt.EventsEmit(ctx, "notechange", NoteChangeMsg{
Note: json.Message,
Noteid: noteid,
Aw: awtype,
})
}
})
r.GET("/api/script/env/list", func(c *gin.Context) {
json := EmptyMsg{}
//
// Create return message name for this query.
//
umicro := time.Now().UnixMicro()
json.ReturnMsg = fmt.Sprintf("%s%d", "EnvList", umicro)
ch := make(chan int)
rt.EventsEmit(ctx, "envList", json)
rt.EventsOnce(ctx, json.ReturnMsg, func(optionalData ...interface{}) {
c.JSON(http.StatusOK, optionalData[0])
nwdata := 1
ch <- nwdata
})
<-ch
close(ch)
})
r.GET("/api/scripts/list", func(c *gin.Context) {
json := EmptyMsg{}
//
// Create return message name for this query.
//
umicro := time.Now().UnixMicro()
json.ReturnMsg = fmt.Sprintf("%s%d", "ScriptList", umicro)
ch := make(chan int)
rt.EventsEmit(ctx, "scriptList", json)
rt.EventsOnce(ctx, json.ReturnMsg, func(optionalData ...interface{}) {
c.JSON(http.StatusOK, optionalData[0])
nwdata := 1
ch <- nwdata
})
<-ch
close(ch)
})
r.PUT("/api/script/run", func(c *gin.Context) {
var json ScriptMsg
if err := c.ShouldBindJSON(&json); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
//
// Create return message name for this query.
//
umicro := time.Now().UnixMicro()
json.ReturnMsg = fmt.Sprintf("%s%d", json.Script, umicro)
ch := make(chan int)
rt.EventsEmit(ctx, "scriptRun", json)
rt.EventsOnce(ctx, json.ReturnMsg, func(optionalData ...interface{}) {
c.JSON(http.StatusOK, optionalData[0])
nwdata := 1
ch <- nwdata
})
<-ch
close(ch)
})
r.GET("/api/template/list", func(c *gin.Context) {
//
// Create return message name for this query.
//
json := EmptyMsg{}
umicro := time.Now().UnixMicro()
json.ReturnMsg = fmt.Sprintf("%s%d", "templatelist", umicro)
ch := make(chan int)
rt.EventsEmit(ctx, "templateList", json)
rt.EventsOnce(ctx, json.ReturnMsg, func(optionalData ...interface{}) {
c.JSON(http.StatusOK, optionalData[0])
nwdata := 1
ch <- nwdata
})
<-ch
close(ch)
})
r.PUT("/api/template/run", func(c *gin.Context) {
var json TemplateMsg
if err := c.ShouldBindJSON(&json); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
//
// Create return message name for this query.
//
umicro := time.Now().UnixMicro()
json.ReturnMsg = strings.ReplaceAll(fmt.Sprintf("%s%d", json.Template, umicro), " ", "-")
ch := make(chan int)
rt.EventsEmit(ctx, "templateRun", json)
rt.EventsOnce(ctx, json.ReturnMsg, func(optionalData ...interface{}) {
c.JSON(http.StatusOK, optionalData[0])
nwdata := 1
ch <- nwdata
})
<-ch
close(ch)
})
r.GET("/api/emailit/mailto", func(c *gin.Context) {
to := c.DefaultQuery("to", "")
subject := c.DefaultQuery("subject", "")
body := c.DefaultQuery("body", "")
email := EmailMsg{
Account: "Default",
To: to,
From: "",
Subject: subject,
Body: body,
ReturnMsg: "",
}
//
// Create return message name for this query.
//
umicro := time.Now().UnixMicro()
email.ReturnMsg = strings.ReplaceAll(fmt.Sprintf("%s%d", to, umicro), " ", "-")
ch := make(chan int)
rt.EventsEmit(ctx, "EditEmail", email)
rt.EventsOnce(ctx, email.ReturnMsg, func(optionalData ...interface{}) {
c.JSON(http.StatusOK, optionalData[0])
nwdata := 1
ch <- nwdata
})
<-ch
close(ch)
})
r.PUT("/api/emailit/send", func(c *gin.Context) {
var json EmailMsg
if err := c.ShouldBindJSON(&json); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
//
// Create return message name for this query.
//
umicro := time.Now().UnixMicro()
json.ReturnMsg = fmt.Sprintf("%s%d", "emailitSend", umicro)
ch := make(chan int)
rt.EventsEmit(ctx, "emailSend", json)
rt.EventsOnce(ctx, json.ReturnMsg, func(optionalData ...interface{}) {
c.JSON(http.StatusOK, optionalData[0])
nwdata := 1
ch <- nwdata
})
<-ch
close(ch)
})
r.GET("/api/emailit/open", func(c *gin.Context) {
//
// Tell the main program to show the EmailIt program.
//
json := CommandMsg{Action: "EmailIt"}
ch := make(chan int)
umicro := time.Now().UnixMicro()
json.ReturnMsg = fmt.Sprintf("%s%d", "commandSend", umicro)
rt.EventsEmit(ctx, "EmailIt", json)
rt.EventsOnce(ctx, json.ReturnMsg, func(optionalData ...interface{}) {
c.JSON(http.StatusOK, optionalData[0])
nwdata := 1
ch <- nwdata
})
<-ch
close(ch)
})
r.GET("/api/notes/open", func(c *gin.Context) {
//
// Tell the main program to show the EmailIt program.
//
json := CommandMsg{Action: "Notes"}
ch := make(chan int)
umicro := time.Now().UnixMicro()
json.ReturnMsg = fmt.Sprintf("%s%d", "commandSend", umicro)
rt.EventsEmit(ctx, "Notes", json)
rt.EventsOnce(ctx, json.ReturnMsg, func(optionalData ...interface{}) {
c.JSON(http.StatusOK, optionalData[0])
nwdata := 1
ch <- nwdata
})
<-ch
close(ch)
})
r.GET("/api/scriptline/open", func(c *gin.Context) {
//
// Tell the main program to show the EmailIt program.
//
json := CommandMsg{Action: "ScriptLine"}
ch := make(chan int)
umicro := time.Now().UnixMicro()
json.ReturnMsg = fmt.Sprintf("%s%d", "commandSend", umicro)
rt.EventsEmit(ctx, "ScriptLine", json)
rt.EventsOnce(ctx, json.ReturnMsg, func(optionalData ...interface{}) {
c.JSON(http.StatusOK, optionalData[0])
nwdata := 1
ch <- nwdata
})
<-ch
close(ch)
})
//
// Run the server.
//
err := r.Run(":9978")
if err != nil {
fmt.Print("\n Server error:\n", err.Error())
}
}