-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.go
637 lines (510 loc) · 20 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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
package main
import (
"context"
_ "embed"
"encoding/json"
"errors"
"fmt"
"gyozora/data"
"gyozora/data/appcache"
"gyozora/fileUtils"
"gyozora/models"
"gyozora/sysUtils"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"unsafe"
wails_runtime "github.com/wailsapp/wails/v2/pkg/runtime"
)
var CURRENT_PATH = ""
// App struct
type App struct {
ctx context.Context
}
// NewApp creates a new App application struct
func NewApp() *App {
return &App{}
}
// startup is called when the app starts. The context is saved
// so we can call the runtime methods
func (a *App) startup(ctx context.Context) {
a.ctx = ctx
}
func (a *App) GetUserOS() string {
return runtime.GOOS
}
func (a *App) ReadPath(currentpath string, path string) models.ReadPathResponse {
CURRENT_PATH = path
dirFiles := make([]models.SysFile, 0)
dirFolders := make([]models.SysFile, 0)
breadcrumbs := make([]models.SysFile, 0)
files, err := os.ReadDir(path)
if err != nil {
if errors.Is(err, os.ErrNotExist) {
return models.ReadPathResponse{Error: models.SimpleError{Status: true, Reason: "Folder not found."}}
} else if errors.Is(err, os.ErrPermission) {
return models.ReadPathResponse{Error: models.SimpleError{Status: true, Reason: "Access denied."}}
}
return models.ReadPathResponse{Error: models.SimpleError{Status: true, Reason: "Unexpected error."}}
}
// Load path content
for _, file := range files {
generatedSysFile, err := fileUtils.GenerateSysFile(currentpath, filepath.Join(path, file.Name()))
if err == nil {
if file.IsDir() {
dirFolders = append(dirFolders, generatedSysFile)
} else {
dirFiles = append(dirFiles, generatedSysFile)
}
}
}
// Load path as breadcrumbs
for _, folderPath := range GetPathFolders(path) {
generatedBreadcrumb, err := fileUtils.GenerateSysFile(currentpath, folderPath)
if err == nil {
breadcrumbs = append(breadcrumbs, generatedBreadcrumb)
}
}
return models.ReadPathResponse{DirFiles: dirFiles, DirFolders: dirFolders, Breadcrumbs: breadcrumbs, Error: models.SimpleError{Status: false}}
}
func GetPathFolders(fpath string) []string {
var pathes []string
previousPath := ""
curPath := fpath
for curPath != "" && curPath != previousPath {
pathes = append(pathes, curPath)
previousPath = curPath
curPath = filepath.Dir(curPath)
}
return pathes
}
func (a *App) LoadPinnedFolders() []models.SysFile {
pinnedFoldersLBE := make([]models.SysFile, 0)
pinnedFolders := make([]string, 0)
pinnedFoldersStr := ""
data.DataDB.QueryRow("SELECT value FROM config WHERE name='pinnedFolders'").Scan(&pinnedFoldersStr)
_ = json.Unmarshal([]byte(pinnedFoldersStr), &pinnedFolders)
for _, pinnedFolder := range pinnedFolders {
generatedSysFile, err := fileUtils.GenerateSysFile(filepath.Dir(pinnedFolder), pinnedFolder)
if err == nil {
pinnedFoldersLBE = append(pinnedFoldersLBE, generatedSysFile)
}
}
// if runtime.GOOS == "windows" {
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Desktop", Type: "folderDesktop", Path: filepath.Join(sysUtils.UserHomedir(), "Desktop")})
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Downloads", Type: "folderDownloads", Path: filepath.Join(sysUtils.UserHomedir(), "Downloads")})
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Documents", Type: "folderDocuments", Path: filepath.Join(sysUtils.UserHomedir(), "Documents")})
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Pictures", Type: "folderPictures", Path: filepath.Join(sysUtils.UserHomedir(), "Pictures")})
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Music", Type: "folderMusic", Path: filepath.Join(sysUtils.UserHomedir(), "Music")})
// } else if runtime.GOOS == "darwin" {
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Applications", Type: "folderApplications", Path: filepath.Join(sysUtils.UserRoots()[0], "Applications")})
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Desktop", Type: "folderDesktop", Path: filepath.Join(sysUtils.UserHomedir(), "Desktop")})
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Documents", Type: "folderDocuments", Path: filepath.Join(sysUtils.UserHomedir(), "Documents")})
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Downloads", Type: "folderDownloads", Path: filepath.Join(sysUtils.UserHomedir(), "Downloads")})
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Pictures", Type: "folderPictures", Path: filepath.Join(sysUtils.UserHomedir(), "Pictures")})
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Music", Type: "folderMusic", Path: filepath.Join(sysUtils.UserHomedir(), "Music")})
// pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: "Movies", Type: "folderMovies", Path: filepath.Join(sysUtils.UserHomedir(), "Movies")})
// }
return pinnedFoldersLBE
}
func (a *App) LoadYourComputer() []models.LeftBarElement {
userRoots := sysUtils.UserRoots()
pinnedFolders := make([]models.LeftBarElement, 0)
for i := 0; i < len(userRoots); i++ {
pinnedFolders = append(pinnedFolders, models.LeftBarElement{Name: fmt.Sprintf("Disk %d (%s)", i, userRoots[i]), Type: "folderDisk", Path: userRoots[i]})
}
return pinnedFolders
}
func (a *App) GetStartingPath() string {
CURRENT_PATH = sysUtils.UserHomedir()
return filepath.Join(CURRENT_PATH, "Desktop")
}
var ACTIVE_JOBS = -1
func (a *App) RenderPreview(file models.SysFile, unixBeginning int, remaining int, useCache bool) models.SysFile {
if ACTIVE_JOBS != -1 { // There is a currently active JOB
if ACTIVE_JOBS != unixBeginning { // If it's not our job, cancel the other job
ACTIVE_JOBS = unixBeginning
}
}
ACTIVE_JOBS = unixBeginning
if ACTIVE_JOBS != unixBeginning { // We were cancelled
return file
}
if file.IconClass != "fileImage" {
if remaining == 0 {
ACTIVE_JOBS = -1
}
return file
}
imageIsCached := true
if useCache {
imageIsLatest := false
//Check on DB if exists:
b64img, imageIsLatest, err := appcache.GetCachedPreview(file)
if err != nil {
imageIsCached = false
}
if imageIsCached && imageIsLatest {
file.Preview = b64img
return file
}
}
// If we get here, image is not cached or is not cached to the latest version
generatedPreview := fileUtils.GetImagePreview(file.PathFull, file.Extension)
file.Preview = generatedPreview
if ACTIVE_JOBS != unixBeginning {
return file
}
// Create or update preview in cache
if useCache {
appcache.AddOrUpdatePreview(file, generatedPreview)
}
if ACTIVE_JOBS != unixBeginning {
return file
}
// If we were not cancelled
if remaining == 0 {
ACTIVE_JOBS = -1
}
return file
}
// File(s) actions
func (a *App) OpenFile(fpath string) models.ActionResponse {
var cmd *exec.Cmd
switch runtime.GOOS {
case "windows":
cmd = exec.Command("rundll32", "url.dll,FileProtocolHandler", fpath)
case "darwin":
cmd = exec.Command("open", fpath)
case "linux":
cmd = exec.Command("xdg-open", fpath)
default:
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "Unsupported operating system."}}
}
fmt.Printf("Trying to execute the file with '%s'\n", cmd)
err := cmd.Run()
if err != nil {
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "Access denied."}}
}
return models.ActionResponse{Error: models.SimpleError{Status: false}}
}
func (a *App) AddFile(path string, filename string, fileType string) models.ActionResponse {
finalPath := filepath.Join(path, filename)
if err := fileUtils.Exists(finalPath); err == nil {
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "File already exists."}}
}
var file *os.File
var err error
if fileType == "folder" {
err = os.Mkdir(finalPath, 0755)
} else {
file, err = os.Create(finalPath)
}
if err != nil {
valid := sysUtils.IsFilenameValid(filename)
if !valid { // Uses an illegal character for a filename in that OS
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: fmt.Sprintf("A filename can't contain %s.", sysUtils.GetInvalidFilenameCharacters())}}
} else {
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "Unexpected error while creating the new file."}}
}
}
file.Close()
createdFile, err := fileUtils.GenerateSysFile(path, filepath.Join(path, filename))
if err != nil {
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "Error getting the information of the created file."}}
}
return models.ActionResponse{Error: models.SimpleError{Status: false}, File: createdFile}
}
// TODO: Duplicating folders
func (a *App) PasteFolder(srcFolder models.SysFile, tgtPath string, isBase bool) models.PasteFileResponse {
srcPath := srcFolder.PathFull
tgtPathFolder := filepath.Join(tgtPath, srcFolder.Filename)
if !isBase {
relPath := strings.Replace(srcFolder.PathRelativeFull, "..", "", 1)
relPath = strings.Replace(relPath, string(filepath.Separator), "", 1)
tgtPathFolder = filepath.Dir(filepath.Join(tgtPath, relPath, srcFolder.Filename))
}
if err := fileUtils.Exists(srcPath); err != nil {
return models.PasteFileResponse{Error: models.SimpleError{Status: true, Reason: "File not found."}}
}
if err := fileUtils.Exists(tgtPath); err != nil {
return models.PasteFileResponse{Error: models.SimpleError{Status: true, Reason: "Target path not found."}}
}
if err := fileUtils.Exists(tgtPathFolder); err == nil { // Folder exists on paste location
return models.PasteFileResponse{Error: models.SimpleError{Status: true, Reason: "Folder already exists"}} // TODO: Check if same dir, allow - Copy
}
if err := os.Mkdir(tgtPathFolder, 0755); err != nil {
return models.PasteFileResponse{Error: models.SimpleError{Status: true, Reason: err.Error()}}
}
pastedFile, err := fileUtils.GenerateSysFile(filepath.Dir(tgtPathFolder), tgtPathFolder)
if err != nil {
return models.PasteFileResponse{Error: models.SimpleError{Status: true, Reason: "Error getting the information of the pasted folder."}}
}
pastedFile.Preview = srcFolder.Preview
return models.PasteFileResponse{File: pastedFile, Error: models.SimpleError{Status: false}}
}
func (a *App) PasteFile(srcFile models.SysFile, tgtPath string, isBase bool) models.PasteFileResponse {
srcPath := srcFile.PathFull
tgtPathParentFolder := filepath.Join(tgtPath)
if !isBase {
relPath := strings.Replace(srcFile.PathRelativeFull, "..", "", 1)
relPath = strings.Replace(relPath, string(filepath.Separator), "", 1)
tgtPathParentFolder = filepath.Dir(filepath.Join(tgtPath, relPath))
}
if err := fileUtils.Exists(srcPath); err != nil {
return models.PasteFileResponse{Error: models.SimpleError{Status: true, Reason: "File not found."}}
}
if err := fileUtils.Exists(tgtPath); err != nil {
return models.PasteFileResponse{Error: models.SimpleError{Status: true, Reason: "Target path not found."}}
}
//Check if pasting location exist a file with that filename
tgtPathFile := filepath.Join(tgtPathParentFolder, srcFile.Filename)
fileExists := false
if err := fileUtils.Exists(tgtPathFile); err == nil {
fileExists = true
}
if fileExists && tgtPath == srcFile.Path { // If we are in the same path, allow, for file duplicate creation
index := 0
fileExists = true
for fileExists {
if index == 0 {
tgtPathFile = filepath.Join(tgtPathParentFolder, fmt.Sprintf("%s - Copy%s", srcFile.Name, srcFile.Extension))
} else {
tgtPathFile = filepath.Join(tgtPathParentFolder, fmt.Sprintf("%s - Copy (%d)%s", srcFile.Name, index, srcFile.Extension))
}
if err := fileUtils.Exists(tgtPathFile); err == nil {
fileExists = true
index++
} else {
fileExists = false
}
}
} else if fileExists {
return models.PasteFileResponse{Error: models.SimpleError{Status: true, Reason: "File already exists"}}
}
content, err := os.ReadFile(srcPath)
if err != nil {
return models.PasteFileResponse{Error: models.SimpleError{Status: true, Reason: "Could not read file."}}
}
if err := os.WriteFile(tgtPathFile, content, 0755); err != nil {
return models.PasteFileResponse{Error: models.SimpleError{Status: true, Reason: "Error writing the file."}}
}
pastedFile, err := fileUtils.GenerateSysFile(tgtPathParentFolder, tgtPathFile)
if err != nil {
return models.PasteFileResponse{Error: models.SimpleError{Status: true, Reason: "Error getting the information of the pasted file."}}
}
pastedFile.Preview = srcFile.Preview
if pastedFile.Preview != "" {
appcache.AddOrUpdatePreview(pastedFile, pastedFile.Preview)
}
return models.PasteFileResponse{File: pastedFile, Error: models.SimpleError{Status: false}}
}
func (a *App) RenameFile(file models.SysFile, newFilename string) models.ActionResponse {
newPath := filepath.Join(file.Path, newFilename)
if err := fileUtils.Exists(newPath); err == nil {
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "File already exists."}}
}
err := os.Rename(file.PathFull, newPath)
if err != nil {
if errors.Is(err, os.ErrNotExist) {
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "Folder not found."}}
} else if errors.Is(err, os.ErrPermission) {
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "Access denied."}}
}
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "Unexpected error."}}
}
renamedFile, err := fileUtils.GenerateSysFile(file.Path, filepath.Join(file.Path, newFilename)) // Generate a new sys file (to handle renaming to different extension)
if err != nil {
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "Error getting the information of the renamed file."}}
}
if file.Extension == renamedFile.Extension {
renamedFile.Preview = file.Preview
}
appcache.MovePreview(file, renamedFile)
return models.ActionResponse{Error: models.SimpleError{Status: false}, File: renamedFile}
}
func (a *App) DeleteFile(file models.SysFile) models.SimpleError {
if err := os.RemoveAll(file.PathFull); err != nil {
if errors.Is(err, os.ErrPermission) {
return models.SimpleError{Status: true, Reason: "Access denied."}
}
return models.SimpleError{Status: true, Reason: "Unexpected error."}
}
if file.Preview != "" {
appcache.DeletePreview(file)
}
if file.IsFolder {
appcache.DeletePreviewsInside(file)
}
return models.SimpleError{Status: false}
}
func (a *App) PropertiesFile(fpath string) models.ActionResponse {
if err := fileUtils.Exists(fpath); err != nil {
if errors.Is(err, os.ErrNotExist) {
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "File not found."}}
} else if errors.Is(err, os.ErrPermission) {
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "Access denied."}}
}
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "Unexpected error."}}
}
generatedSysFile, err := fileUtils.GenerateSysFile(fpath, fpath)
if err != nil {
return models.ActionResponse{Error: models.SimpleError{Status: true, Reason: "Error getting the information of the pasted file."}}
}
return models.ActionResponse{File: generatedSysFile, Error: models.SimpleError{Status: false}}
}
func (a *App) FileExists(tgtPath string, filename string) bool {
if err := fileUtils.Exists(filepath.Join(tgtPath, filename)); err == nil {
return true
}
return false
}
// Settings:
func (a *App) Go_LoadSettings() map[string]string {
var configs []models.Config
data.DataDB.Select(&configs, "SELECT * FROM config")
settings := make(map[string]string)
for _, config := range configs {
settings[config.Name] = config.Value
}
return settings
}
func (a *App) Go_GetSetting(name string) string {
value := "null"
data.DataDB.QueryRowx("SELECT value FROM config WHERE name=?", name).Scan(&value)
return value
}
func (a *App) Go_SetSetting(name string, value string) models.SimpleError {
_, err := data.DataDB.Query("INSERT OR REPLACE INTO config(name, value) VALUES(?, ?)", name, value)
if err != nil {
return models.SimpleError{Status: true}
}
if name == "theme" {
wails_runtime.WindowSetLightTheme(a.ctx)
}
return models.SimpleError{Status: false}
}
func (a *App) Go_DeleteSetting(name string) models.SimpleError {
_, err := data.DataDB.Query("DELETE FROM config WHERE name=?", name)
if err != nil {
return models.SimpleError{Status: true}
}
if name == "theme" {
wails_runtime.WindowSetDarkTheme(a.ctx)
}
return models.SimpleError{Status: false}
}
func (a *App) Go_CacheSize() int {
cache := make([]models.CachePreview, 0)
data.DataDB.Select(&cache, "SELECT * FROM cache")
sizeB := 0
for _, cacheElem := range cache {
sizeB += len(cacheElem.PathFull)
sizeB += int(unsafe.Sizeof(cacheElem.DateModification))
sizeB += len(cacheElem.Preview)
}
return sizeB
}
func (a *App) Go_CacheClear() models.SimpleError {
_, err := data.DataDB.Query("DELETE FROM cache")
if err != nil {
return models.SimpleError{Status: true}
}
return models.SimpleError{Status: false}
}
func (a *App) Go_LoadDictionary() map[string]map[string]string {
finalDictionary := make(map[string]map[string]string)
finalDictionary["EN"] = DictionaryData("EN")
finalDictionary["ES"] = DictionaryData("ES")
return finalDictionary
}
//go:embed ES.json
var jsonContentES []byte
//go:embed EN.json
var jsonContentEN []byte
func DictionaryData(lang string) map[string]string {
var loadedDictionary map[string]string
if lang == "EN" {
json.Unmarshal([]byte(jsonContentEN), &loadedDictionary)
} else if lang == "ES" {
json.Unmarshal([]byte(jsonContentES), &loadedDictionary)
}
return loadedDictionary
}
func (a *App) Go_TogglePin(folderToPin string) error {
pinnedFolders := make([]string, 0)
newPinnedFolders := make([]string, 0)
pinnedFoldersStr := ""
data.DataDB.QueryRow("SELECT value FROM config WHERE name='pinnedFolders'").Scan(&pinnedFoldersStr)
_ = json.Unmarshal([]byte(pinnedFoldersStr), &pinnedFolders)
if len(pinnedFolders) == 0 {
newPinnedFolders = append(newPinnedFolders, folderToPin)
} else {
isPinned := false
for _, pinnedFolder := range pinnedFolders {
if pinnedFolder != folderToPin {
_, err := fileUtils.GenerateSysFile(filepath.Dir(pinnedFolder), pinnedFolder)
if err == nil { // If folder currently exists, else just delete the non existing pinned folder
newPinnedFolders = append(newPinnedFolders, pinnedFolder)
}
} else {
isPinned = true
}
}
if !isPinned {
newPinnedFolders = append(newPinnedFolders, folderToPin)
}
}
newPinnedFoldersStr, err := json.Marshal(newPinnedFolders)
if err != nil {
fmt.Println("Error while saving the new pinned folders")
return err
}
a.Go_SetSetting("pinnedFolders", string(newPinnedFoldersStr))
return nil
}
func (a *App) Go_IsFolderPinned(folderPath string) bool {
pinnedFolders := make([]string, 0)
pinnedFoldersStr := ""
data.DataDB.QueryRow("SELECT value FROM config WHERE name='pinnedFolders'").Scan(&pinnedFoldersStr)
_ = json.Unmarshal([]byte(pinnedFoldersStr), &pinnedFolders)
for _, pinnedFolder := range pinnedFolders {
if pinnedFolder == folderPath {
return true
}
}
return false
}
func (a *App) Go_MovePinnedOrderTo(folderPath string, indexPosition int) error {
pinnedFolders := make([]string, 0)
newPinnedFolders := make([]string, 0)
pinnedFoldersStr := ""
data.DataDB.QueryRow("SELECT value FROM config WHERE name='pinnedFolders'").Scan(&pinnedFoldersStr)
_ = json.Unmarshal([]byte(pinnedFoldersStr), &pinnedFolders)
pinnedFoldersWithout := make([]string, 0)
for _, pinnedFolder := range pinnedFolders {
if pinnedFolder != folderPath {
pinnedFoldersWithout = append(pinnedFoldersWithout, pinnedFolder)
}
}
added := false
for i, pinnedFolder := range pinnedFoldersWithout {
if i == indexPosition {
added = true
newPinnedFolders = append(newPinnedFolders, folderPath)
}
newPinnedFolders = append(newPinnedFolders, pinnedFolder)
}
if !added {
newPinnedFolders = append(newPinnedFolders, folderPath)
}
newPinnedFoldersStr, err := json.Marshal(newPinnedFolders)
if err != nil {
fmt.Println("Error while saving the new pinned folders")
return err
}
a.Go_SetSetting("pinnedFolders", string(newPinnedFoldersStr))
return nil
}