-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.go
134 lines (130 loc) · 2.81 KB
/
util.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
// Copyright (C) 2021 - 2023 iDigitalFlame
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//
package akcss
import (
"io/fs"
"os"
"path/filepath"
"runtime"
"strings"
"github.com/iDigitalFlame/akcss/userid"
)
func valid(s string) bool {
if len(s) == 0 {
return false
}
for i := range s {
if s[i] < 45 || s[i] >= 127 {
return false
}
switch s[i] {
case '/', '@', '`', '[', ']', '\\', '^', ':', ';', '<', '=', '>', '?', '{', '}', '|', '~', '.':
return false
}
}
return true
}
func isUnix(s string) bool {
if len(s) < 6 {
return false
}
switch {
case s[0] != 'u' && s[0] != 'U':
fallthrough
case s[1] != 'n' && s[1] != 'N':
fallthrough
case s[2] != 'i' && s[2] != 'I':
fallthrough
case s[3] != 'x' && s[3] != 'X':
fallthrough
case s[4] != ':':
return false
}
return true
}
func exp(s string, l int) string {
if len(s) >= l {
return s
}
b := make([]byte, l)
copy(b, s)
for i := len(s); i < l; i++ {
b[i] = 32
}
return string(b)
}
func confirm(s string, d bool) bool {
os.Stdout.WriteString(s + " ")
var (
b = make([]byte, 128)
r, err = os.Stdin.Read(b)
)
if err != nil || r <= 1 {
return d
}
switch strings.ToLower(string(b[:r-1])) {
case "confirm", "true", "yes", "t", "y", "1":
return true
}
return d
}
func (m *manager) perms(p string, d fs.DirEntry, _ error) error {
if runtime.GOOS == "windows" {
return nil
}
n, err := userid.Nobody()
if err != nil {
return err
}
if !d.IsDir() {
if strings.EqualFold(d.Name(), "crl.pem") {
if err := os.Chown(p, 0, n); err != nil {
return err
}
return os.Chmod(p, 0644)
}
switch strings.ToLower(filepath.Ext(p)) {
case ".crt":
if err := os.Chown(p, 0, n); err != nil {
return err
}
return os.Chmod(p, 0440)
case ".pem":
fallthrough
case ".conf":
if err := os.Chown(p, 0, 0); err != nil {
return err
}
return os.Chmod(p, 0400)
}
return nil
}
switch {
case strings.EqualFold(d.Name(), "certs"):
fallthrough
case strings.HasPrefix(m.Config.Dirs.CA, p):
if err := os.Chown(p, 0, n); err != nil {
return err
}
return os.Chmod(p, 0755)
case strings.HasPrefix(m.Config.Dirs.Config, p):
if err := os.Chown(p, 0, 0); err != nil {
return err
}
return os.Chmod(p, 0700)
}
return nil
}