-
Notifications
You must be signed in to change notification settings - Fork 0
/
fakedirs.go
115 lines (105 loc) · 2.48 KB
/
fakedirs.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
package main
import (
"fmt"
"io/ioutil"
"os"
"strings"
"github.com/honeystats/ssh/files"
"github.com/sirupsen/logrus"
)
var FILESYSTEM files.FilesystemConfig
var CURRENT_DIR = "/"
func init() {
filesConfig, configSet := os.LookupEnv("FILES_CONFIG")
if !configSet {
panic("FILES_CONFIG is not set.")
}
bytes, err := ioutil.ReadFile(filesConfig)
if err != nil {
logrus.WithFields(logrus.Fields{
"filesConfig": filesConfig,
"err": err,
}).Fatal("Error reading FILES_CONFIG")
}
FILESYSTEM = files.StrToFilesystem(bytes)
}
func lsOne(root *files.FilesystemDir, cwd *files.FilesystemDir, path string) (error, string) {
err, f := cwd.GetFileOrDir(root, path)
if err != nil {
return err, ""
}
return nil, f.Describe() + "\n"
}
func ls(root *files.FilesystemDir, cwd *files.FilesystemDir, path string) (error, string) {
trimmedPath := strings.Trim(path, " ")
if trimmedPath == "" {
return lsOne(root, cwd, "")
}
parts := strings.Split(trimmedPath, " ")
errs := []string{}
reses := []string{}
for _, part := range parts {
if part == "" {
continue
}
err, res := lsOne(root, cwd, part)
if err != nil {
errs = append(errs, err.Error())
} else {
reses = append(reses, res)
}
}
resText := ""
for _, err := range errs {
resText += fmt.Sprintf("ls: %s\n", err)
}
for _, res := range reses {
resText += res
}
return nil, resText
}
func cd(root *files.FilesystemDir, cwd *files.FilesystemDir, path string) (error, *files.FilesystemDir) {
trimmedPath := strings.Trim(path, " ")
searchPath := trimmedPath
if trimmedPath == "" {
searchPath = "/"
}
err, dir := cwd.GetFileOrDir(root, searchPath)
if err != nil {
return err, nil
}
cdErr, cdRes := dir.TryCD()
return cdErr, cdRes
}
func catOne(root *files.FilesystemDir, cwd *files.FilesystemDir, path string) (error, string) {
err, f := cwd.GetFileOrDir(root, path)
if err != nil {
return err, ""
}
return f.TryCat()
}
func cat(root *files.FilesystemDir, cwd *files.FilesystemDir, path string) (error, string) {
trimmedPath := strings.Trim(path, " ")
parts := strings.Split(trimmedPath, " ")
errs := []string{}
reses := []string{}
for _, part := range parts {
if part == "" {
continue
}
err, res := catOne(root, cwd, part)
if err != nil {
errs = append(errs, err.Error())
} else {
reses = append(reses, res)
}
}
resText := ""
for _, err := range errs {
resText += fmt.Sprintf("cat: %s\n", err)
}
for _, res := range reses {
resText += res
}
return nil, resText
}