forked from agrinman/chasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
folder_store.go
90 lines (75 loc) · 2 KB
/
folder_store.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
package main
import (
"fmt"
"io/ioutil"
"os"
"path"
"github.com/fatih/color"
)
// FolderStore is a fake cloud store for testing purposes. Simply write
// shares to the folder
type FolderStore struct {
Path string `json:"path"`
}
// Setup the folder store
func (f FolderStore) Setup() bool {
for _, fs := range preferences.FolderStores {
if fs.Path == f.Path {
color.Red("Folder store at %v already exists.", f.Path)
return false
}
}
os.MkdirAll(f.Path, 0777)
return true
}
// Upload writes a share to to the folder
func (f FolderStore) Upload(share Share) {
sharePath := path.Join(f.Path, string(share.SID))
err := ioutil.WriteFile(sharePath, share.Data, 0770)
if err != nil {
color.Red("Error: %s", err)
return
}
color.Magenta("Share %s saved successfully!", sharePath)
}
// Delete deletes the share by its shareID
func (f FolderStore) Delete(sid ShareID) {
sharePath := f.Path + "/" + string(sid)
if _, err := os.Stat(sharePath); err != nil {
color.Red("Share %s does not exist.", sharePath)
return
}
err := os.Remove(sharePath)
if err != nil {
color.Red("Error: could not delete file. %s", err)
return
}
color.Yellow("Share %s deleted successfully!", sid)
}
// Restore downloads the shares
func (f FolderStore) Restore() string {
// do nothing, folder store exists locally already
// return the existing path
return f.Path
}
// Description prints out human-readable statement
// about the folder store path
func (f FolderStore) Description() string {
label := "Folder store at " + f.Path
files, _ := ioutil.ReadDir(f.Path)
for _, f := range files {
label += fmt.Sprintf("\n\t%s %s", color.YellowString("-"), f.Name())
}
return label
}
func (f FolderStore) ShortDescription() string {
return "Folder store: " + f.Path
}
// Clean deletes all shares from the folder store
func (f FolderStore) Clean() {
files, _ := ioutil.ReadDir(f.Path)
for _, file := range files {
color.Yellow("Removing Folder Store: %v", file.Name())
os.Remove(path.Join(f.Path, file.Name()))
}
}