-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.go
472 lines (418 loc) · 9.38 KB
/
app.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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
package main
import (
"context"
"crypto/tls"
"errors"
"fmt"
"io"
"io/fs"
"os"
"os/exec"
"path/filepath"
goruntime "runtime"
"strconv"
"strings"
"github.com/go-git/go-git/v5"
clip "github.com/atotto/clipboard"
github "github.com/google/go-github/v49/github"
cp "github.com/otiai10/copy"
wailsruntime "github.com/wailsapp/wails/v2/pkg/runtime"
mail "gopkg.in/mail.v2"
)
// App application struct and other structs
type App struct {
ctx context.Context
err string
proc *os.Process
}
type FileParts struct {
Dir string
Name string
Extension string
}
type FileInfo struct {
Dir string
Name string
Extension string
IsDir bool
Size int64
Modtime string
}
type Environment struct {
Name string `json:"name" binding:"required"`
EnvVar []string `json:"envVar" binding:"required"`
}
type GitHubRepos struct {
Name string `json:"name"`
URL string `json:"url"`
Stars int `json:"stars"`
Owner string `json:"owner"`
ID int64 `json:"id"`
Description string `json:"description"`
}
// NewApp creates a new App application struct
func NewApp() *App {
return &App{}
}
// startup is called at application startup
func (b *App) startup(ctx context.Context) {
//
// Save the context for other functions.
//
b.ctx = ctx
//
// We need to start the backend and setup the signaling.
//
go backend(b, ctx)
}
// domReady is called after the front-end dom has been loaded
func (b *App) domReady(ctx context.Context) {
}
// shutdown is called at application termination
func (b *App) shutdown(ctx context.Context) {
}
func (b *App) SystemOpenFile(prog string) {
if b.FileExists(prog) {
var ArgsArray [2]string
var sar []string
ArgsArray[1] = prog
b.RunCommandLine("/usr/bin/open", ArgsArray[:], sar, "")
}
}
func (b *App) GetExecutable() string {
b.err = ""
ex, err := os.Executable()
if err != nil {
b.err = err.Error()
}
return ex
}
func (b *App) Getwd() string {
b.err = ""
wd, err := os.Getwd()
if err != nil {
b.err = err.Error()
}
return wd
}
func (b *App) ReadFile(path string) string {
b.err = ""
contents, err := os.ReadFile(path)
if err != nil {
b.err = err.Error()
}
return string(contents[:])
}
func (b *App) GetHomeDir() string {
b.err = ""
hdir, err := os.UserHomeDir()
if err != nil {
b.err = err.Error()
}
return hdir
}
func (b *App) WriteFile(path string, data string) {
b.err = ""
err := os.WriteFile(path, []byte(data), 0o666)
if err != nil {
b.err = err.Error()
}
}
func (b *App) FileExists(path string) bool {
b.err = ""
_, err := os.Stat(path)
return !errors.Is(err, os.ErrNotExist)
}
func (b *App) DirExists(path string) bool {
b.err = ""
dstat, err := os.Stat(path)
if err != nil {
b.err = err.Error()
return false
}
return dstat.IsDir()
}
func (b *App) SplitFile(path string) FileParts {
b.err = ""
var parts FileParts
parts.Dir, parts.Name = filepath.Split(path)
parts.Extension = filepath.Ext(path)
return parts
}
func (b *App) ReadDir(path string) []FileInfo {
b.err = ""
var result []FileInfo
result = make([]FileInfo, 0, 0)
files, err := os.ReadDir(path)
if err != nil {
b.err = err.Error()
} else {
for _, file := range files {
var fileInfo FileInfo
fileInfo.Name = file.Name()
fileInfo.IsDir = file.IsDir()
fileInfo.Dir = path
fileInfo.Extension = filepath.Ext(file.Name())
result = append(result, fileInfo)
}
}
return result
}
func (b *App) MakeDir(path string) {
b.err = ""
err := os.MkdirAll(path, 0o755)
if err != nil {
b.err = err.Error()
}
}
func (b *App) MakeFile(path string) {
b.err = ""
b.WriteFile(path, "")
}
func (b *App) MoveEntries(from string, to string) {
b.err = ""
err := os.Rename(from, to)
if err != nil {
b.err = err.Error()
}
}
func (b *App) RenameEntry(from string, to string) {
b.err = ""
err := os.Rename(from, to)
if err != nil {
b.err = err.Error()
}
}
func (b *App) GetError() string {
return b.err
}
func (b *App) CopyEntries(from string, to string) {
b.err = ""
info, err := os.Stat(from)
if os.IsNotExist(err) {
b.err = err.Error()
return
}
if info.IsDir() {
//
// It's a directory! Do a deap copy.
//
err := cp.Copy(from, to)
if err != nil {
b.err = err.Error()
return
}
} else {
//
// It's a file. Just copy it.
//
source, err := os.Open(from)
if err != nil {
b.err = err.Error()
return
}
defer source.Close()
destination, err := os.Create(to)
if err != nil {
b.err = err.Error()
return
}
defer destination.Close()
_, err = io.Copy(destination, source)
if err != nil {
b.err = err.Error()
}
}
}
func (b *App) DeleteEntries(path string) {
b.err = ""
err := os.RemoveAll(path)
if err != nil {
b.err = err.Error()
}
}
func (b *App) CreateTempFile(contents string) string {
//
// Create the temperary file.
//
b.err = ""
f, err := os.CreateTemp("", "extscript*")
if err != nil {
b.err = err.Error()
}
fname := f.Name()
//
// Write the contents.
//
if _, err := f.Write([]byte(contents)); err != nil {
b.err = err.Error()
}
//
// Close the file.
//
if err := f.Close(); err != nil {
b.err = err.Error()
}
//
// Return the results.
//
return (fname)
}
func (b *App) Chmod(file string, nmode fs.FileMode) {
b.err = ""
err := os.Chmod(file, nmode)
if err != nil {
b.err = err.Error()
}
}
func (b *App) RunCommandLine(cmd string, args []string, env []string, dir string) string {
b.err = ""
cmdline := exec.Command(cmd)
cmdline.Args = args
cmdline.Env = env
cmdline.Dir = dir
result, err := cmdline.CombinedOutput()
fmt.Println("\n RunCommandLine: ", cmd, "\n", string(result))
if err != nil {
fmt.Print("\nRunCommandLine had an error: ", err.Error(), "\n")
}
return string(result[:])
}
func (b *App) GetClip() string {
b.err = ""
result, err := clip.ReadAll()
if err != nil {
b.err = err.Error()
}
return result
}
func (b *App) SetClip(msg string) {
b.err = ""
err := clip.WriteAll(msg)
if err != nil {
b.err = err.Error()
}
}
func (b *App) GetEnvironment() []string {
return os.Environ()
}
func (b *App) GetEnv(name string) string {
return os.Getenv(name)
}
func (b *App) AppendPath(dir string, name string) string {
return filepath.Join(dir, name)
}
func (b *App) Quit() {
wailsruntime.Quit(b.ctx)
}
func (b *App) GetFiles() []string {
files, _ := wailsruntime.OpenMultipleFilesDialog(b.ctx, wailsruntime.OpenDialogOptions{
Title: "What files to you want to attach?",
})
return files
}
func (b *App) GetOSName() string {
os := goruntime.GOOS
result := ""
switch os {
case "windows":
result = "windows"
break
case "darwin":
result = "macos"
case "linux":
result = "linux"
default:
result = fmt.Sprintf("%s", os)
}
return result
}
func (b *App) GetCopyClip(name string) string {
return "Not Implemented Yet"
}
func (b *App) GetFeedback(question string, defans string) string {
return "Not Implemented Yet"
}
func (b *App) GetGitHubThemes() []GitHubRepos {
b.err = ""
var result []GitHubRepos
client := github.NewClient(nil)
topics, _, err := client.Search.Repositories(context.Background(), "in:topic emailit in:topic theme", nil)
if err == nil {
total := *topics.Total
result = make([]GitHubRepos, total, total)
for i := 0; i < total; i++ {
result[i].ID = *topics.Repositories[i].ID
result[i].Name = *topics.Repositories[i].Name
result[i].Owner = *topics.Repositories[i].Owner.Login
result[i].URL = *topics.Repositories[i].CloneURL
result[i].Stars = *topics.Repositories[i].StargazersCount
result[i].Description = *topics.Repositories[i].Description
}
}
return result
}
func (b *App) GetGitHubScripts() []GitHubRepos {
b.err = ""
var result []GitHubRepos
client := github.NewClient(nil)
topics, _, err := client.Search.Repositories(context.Background(), "in:topic emailit in:topic extension in:topic script", nil)
if err == nil {
total := *topics.Total
result = make([]GitHubRepos, total, total)
for i := 0; i < total; i++ {
result[i].ID = *topics.Repositories[i].ID
result[i].Name = *topics.Repositories[i].Name
result[i].Owner = *topics.Repositories[i].Owner.Login
result[i].URL = *topics.Repositories[i].CloneURL
result[i].Stars = *topics.Repositories[i].StargazersCount
result[i].Description = *topics.Repositories[i].Description
}
}
return result
}
func (b *App) SendEmail(username string, from string, password string, host string, port string, toList string, msg string, msgText string, subject string, attachment string) string {
//
// Create the message.
//
b.err = ""
fmt.Println(username, "|", from, "|", toList, "|", msg, "|", msgText)
m := mail.NewMessage()
m.SetHeader("From", from)
m.SetHeader("To", toList)
m.SetHeader("Subject", subject)
m.SetBody("text/plain", msgText)
m.AddAlternative("text/html", msg)
//
// Add attachment if any. The attachment string can have multiple one seperated by a coma.
//
if attachment != "" {
parts := strings.Split(attachment, ", ")
for i := 0; i < len(parts); i++ {
m.Attach(parts[i])
}
}
//
// Get the server information.
//
iport, _ := strconv.Atoi(port)
d := mail.NewDialer(host, iport, username, password)
d.TLSConfig = &tls.Config{InsecureSkipVerify: true}
//
// Send the email.
//
if err := d.DialAndSend(m); err != nil {
b.err = err.Error()
return b.err
}
return "Success"
}
func (b *App) CloneGitHub(url string, dir string) {
b.err = ""
_, err := git.PlainClone(dir, false, &git.CloneOptions{
URL: url,
})
if err != nil {
b.err = err.Error()
}
}