-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathres.go
127 lines (110 loc) · 3.22 KB
/
res.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
// Copyright 2023-2024 DERO Foundation. All rights reserved.
// Use of this source code in any form is governed by RESEARCH license.
// license can be found in the LICENSE file.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package main
import (
"fmt"
"os"
"path/filepath"
"runtime"
"strings"
"fyne.io/fyne/v2/canvas"
x "fyne.io/x/fyne/widget"
)
type Res struct {
bg *canvas.Image
bg2 *canvas.Image
icon *canvas.Image
icon_sm *canvas.Image
load *canvas.Image
loading *x.AnimatedGif
header *canvas.Image
spacer *canvas.Image
dero *canvas.Image
gram *canvas.Image
block *canvas.Image
red_alert *canvas.Image
green_alert *canvas.Image
}
// Get app path
func AppPath() (result string) {
result, _ = os.Getwd()
if runtime.GOOS == "android" {
result = a.Storage().RootURI().Path()
} else if runtime.GOOS == "ios" {
result = a.Storage().RootURI().Path()
}
return
}
func GetAccounts() (result []string, err error) {
path := ""
if !session.Testnet {
_, err = os.Stat(filepath.Join(AppPath(), "mainnet"))
if err != nil {
return
} else {
path = filepath.Join(AppPath(), "mainnet") + string(filepath.Separator)
}
} else {
_, err = os.Stat(filepath.Join(AppPath(), "testnet"))
if err != nil {
return
} else {
path = filepath.Join(AppPath(), "testnet") + string(filepath.Separator)
}
}
matches, _ := filepath.Glob(path + "*.db")
result = []string{}
for _, match := range matches {
check, _ := os.Stat(match)
if !check.IsDir() {
if strings.Contains(match, ".db") {
split := strings.Split(match, string(filepath.Separator))
pos := len(split) - 1
match = split[pos]
result = append(result, match)
}
}
}
if len(result) == 0 {
// TODO: May do something here like start the user at Create/Restore Account window.
}
return
}
func findAccount() (result bool) {
matches, err := filepath.Glob(session.Path)
if err != nil {
fmt.Printf("%s\n", err)
}
if len(matches) > 0 {
result = true
} else {
result = false
}
return
}
func checkDir() (err error) {
err = os.MkdirAll(filepath.Join(AppPath(), "mainnet"), os.ModePerm)
if err != nil {
return
}
err = os.MkdirAll(filepath.Join(AppPath(), "testnet"), os.ModePerm)
if err != nil {
return
}
err = os.MkdirAll(filepath.Join(AppPath(), "datashards"), os.ModePerm)
if err != nil {
return
}
return
}