forked from DEROFDN/Engram
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathres.go
More file actions
156 lines (135 loc) · 3.94 KB
/
res.go
File metadata and controls
156 lines (135 loc) · 3.94 KB
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
// 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 (
"io"
"os"
"path/filepath"
"runtime"
"strings"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/canvas"
x "fyne.io/x/fyne/widget"
"github.com/civilware/tela/logger"
)
type Res struct {
bg *canvas.Image
bg2 *canvas.Image
icon *canvas.Image
load *canvas.Image
loading *x.AnimatedGif
header *canvas.Image
dero *canvas.Image
gram *canvas.Image
block *canvas.Image
red_alert *canvas.Image
green_alert *canvas.Image
mainBg *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 := ""
switch session.Network {
case NETWORK_MAINNET:
_, err = os.Stat(filepath.Join(AppPath(), "mainnet"))
if err != nil {
return
} else {
path = filepath.Join(AppPath(), "mainnet") + string(filepath.Separator)
}
case NETWORK_SIMULATOR:
_, err = os.Stat(filepath.Join(AppPath(), "testnet_simulator"))
if err != nil {
return
} else {
path = filepath.Join(AppPath(), "testnet_simulator") + string(filepath.Separator)
}
default:
_, 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 {
logger.Errorf("[Engram] findAccount: %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(), "testnet_simulator"), os.ModePerm)
if err != nil {
return
}
err = os.MkdirAll(filepath.Join(AppPath(), "datashards"), os.ModePerm)
if err != nil {
return
}
return
}
// Write the content to uri
func writeToURI(content []byte, uri fyne.URIWriteCloser) (n int, err error) {
defer uri.Close()
return uri.Write(content)
}
// Read the content from uri
func readFromURI(uri fyne.URIReadCloser) ([]byte, error) {
defer uri.Close()
return io.ReadAll(uri)
}