-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.go
202 lines (174 loc) · 4.31 KB
/
db.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
package main
import (
"context"
"encoding/json"
"fmt"
"io"
"os"
"path/filepath"
"sort"
"sync"
"time"
"github.com/pkg/errors"
"github.com/zchee/go-xdgbasedir"
)
var (
once sync.Once
repo *Repository
)
var (
defaultDBPath = filepath.Join(xdgbasedir.ConfigHome(), "star", "db.json")
dbPath string
dbInitialized bool
)
func InitDB(dbPathArg string) {
once.Do(func() {
dbInitialized = true
switch {
case dbPathArg != "":
dbPath = dbPathArg
case os.Getenv("STAR_JSON_DB_PATH") != "":
dbPath = os.Getenv("STAR_JSON_DB_PATH")
default:
dbPath = defaultDBPath
}
if _, err := os.Stat(filepath.Dir(dbPath)); os.IsNotExist(err) {
if err := os.MkdirAll(filepath.Dir(defaultDBPath), 0755); err != nil {
panic(err)
}
}
if verbose {
fmt.Fprintf(os.Stderr, "db path: %s\n", dbPath)
}
var err error
repo, err = NewRepository()
if err != nil {
panic(err)
}
})
}
type DB struct {
Bookmarks []*Bookmark `json:"bookmarks"`
}
type Bookmark struct {
Name string `json:"name"`
URL string `json:"url"`
CreatedAt time.Time `json:"created_at"`
}
type Repository struct {
Bookmark BookmarkRepository
}
type BookmarkRepository interface {
Add(context.Context, *Bookmark) error
List(context.Context) ([]*Bookmark, error)
Get(context.Context, string) (*Bookmark, error)
Update(context.Context, *Bookmark) error
Delete(context.Context, *Bookmark) error
}
type jsonBookmarkRepository struct {
bookmarks sync.Map
}
func newJSONBookmarkRepository(db *DB) *jsonBookmarkRepository {
var m sync.Map
for _, b := range db.Bookmarks {
_, ok := m.LoadOrStore(b.Name, b)
if ok {
panic(fmt.Sprintf("duplicated key found in the JSON DB: %s", b.Name))
}
}
return &jsonBookmarkRepository{
bookmarks: m,
}
}
func (j *jsonBookmarkRepository) Add(ctx context.Context, b *Bookmark) error {
_, ok := j.bookmarks.LoadOrStore(b.Name, b)
if ok {
return errors.New("Already exist bookmark name")
}
return j.save(ctx)
}
func (j *jsonBookmarkRepository) List(_ context.Context) ([]*Bookmark, error) {
return j.slice(), nil
}
func (j *jsonBookmarkRepository) Get(ctx context.Context, name string) (*Bookmark, error) {
v, ok := j.bookmarks.Load(name)
if !ok {
return nil, errors.Errorf("no such bookmark: %s", name)
}
return v.(*Bookmark), nil
}
func (j *jsonBookmarkRepository) Update(ctx context.Context, b *Bookmark) error {
_, ok := j.bookmarks.LoadOrStore(b.Name, b)
if !ok {
return errors.New("failed to find the bookmark specified by passed key")
}
b.CreatedAt = time.Now()
j.bookmarks.Store(b.Name, b)
return j.save(ctx)
}
func (j *jsonBookmarkRepository) save(_ context.Context) error {
// TODO: backup
f, err := os.Create(dbPath)
if err != nil {
return errors.Wrapf(err, "failed to re-open JSON database (%s)", dbPath)
}
defer f.Close()
enc := json.NewEncoder(f)
enc.SetIndent("", " ")
if err := enc.Encode(&DB{Bookmarks: j.slice()}); err != nil {
return errors.Wrap(err, "failed to encode JSON database")
}
return nil
}
func (j *jsonBookmarkRepository) Delete(ctx context.Context, b *Bookmark) error {
_, ok := j.bookmarks.Load(b.Name)
if !ok {
return errors.New("failed to find the bookmark specified by passed key")
}
j.bookmarks.Delete(b.Name)
return j.save(ctx)
}
func (j *jsonBookmarkRepository) slice() []*Bookmark {
var b []*Bookmark
j.bookmarks.Range(func(k, v interface{}) bool {
b = append(b, v.(*Bookmark))
return true
})
sort.Slice(b, func(i, j int) bool {
return b[i].Name < b[j].Name
})
return b
}
func NewRepository() (*Repository, error) {
if !dbInitialized {
panic("need to call InitDB before call NewRepository")
}
return newJSONRepository()
}
func newJSONRepository() (*Repository, error) {
_, err := os.Stat(dbPath)
if os.IsNotExist(err) {
return &Repository{
Bookmark: &jsonBookmarkRepository{bookmarks: sync.Map{}},
}, nil
}
if err != nil {
return nil, err
}
f, err := os.Open(dbPath)
if err != nil {
return nil, errors.Wrap(err, "failed to load JSON database")
}
defer f.Close()
var db DB
if err := json.NewDecoder(f).Decode(&db); err == io.EOF {
return &Repository{
Bookmark: &jsonBookmarkRepository{bookmarks: sync.Map{}},
}, nil
} else if err != nil {
return nil, errors.Wrap(err, "failed to decode JSON database")
}
return &Repository{
Bookmark: newJSONBookmarkRepository(&db),
}, nil
}