-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgistfs.go
280 lines (223 loc) · 6.4 KB
/
gistfs.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
package gistfs
import (
"bytes"
"context"
"errors"
"fmt"
"io"
"io/fs"
"sync"
"time"
"github.com/google/go-github/v33/github"
)
// Ensure io/fs interfaces are implemented
var (
_ fs.ReadDirFS = (*FS)(nil)
_ fs.ReadFileFS = (*FS)(nil)
_ fs.FileInfo = (*file)(nil)
_ fs.DirEntry = (*file)(nil)
_ fs.ReadDirFile = (*file)(nil)
)
// ErrNotLoaded is an error that signals that the filesystem is being used
// while not previously loaded.
var ErrNotLoaded = fmt.Errorf("gist not loaded: %w", fs.ErrInvalid)
// FS represents a filesystem based on a Github Gist.
type FS struct {
id string
client *github.Client
gist *github.Gist
mu sync.RWMutex
}
// New returns a FS based on a given Gist ID, without the username portion.
// Example "https://gist.github.com/jhchabran/ded2f6727d98e6b0095e62a7813aa7cf"
// id = "ded2f6727d98e6b0095e62a7813aa7cf"
func New(id string) *FS {
return &FS{
client: github.NewClient(nil),
id: id,
}
}
// NewWithClient returns a FS based on a given Gist ID and a given Github Client.
// Providing an authenticated client or a client with a custom http.Client are
// possible use cases.
func NewWithClient(client *github.Client, id string) *FS {
return &FS{
client: client,
id: id,
}
}
// GetID returns the Github Gist ID that the filesystem was created with
func (fsys *FS) GetID() string {
return fsys.id
}
// Load fetches the gist content from github, making the file system ready
// for use. If the underlying Github API call fails, it will return its error.
func (fsys *FS) Load(ctx context.Context) error {
fsys.mu.Lock()
defer fsys.mu.Unlock()
gist, _, err := fsys.client.Gists.Get(ctx, fsys.id)
if err != nil {
return err
}
fsys.gist = gist
return nil
}
// file represents a file stored in a Gist and implements fs.File methods.
// It is built out of a github.GistFile.
type file struct {
gistFile *github.GistFile
modtime time.Time
reader io.Reader
mu sync.Mutex
}
// Open opens the named file for reading and return it as an fs.File.
func (fsys *FS) Open(name string) (fs.File, error) {
fsys.mu.RLock()
defer fsys.mu.RUnlock()
if fsys.gist == nil {
return nil, ErrNotLoaded
}
if name == "./" || name == "." {
return fsys.openRoot(), nil
}
f, ok := fsys.gist.Files[github.GistFilename(name)]
if !ok {
return nil, &fs.PathError{Op: "read", Path: name, Err: fs.ErrNotExist}
}
return fsys.wrapFile(&f), nil
}
// wrapFile wraps a github.GistFile into a file, which implements
// the fs.File interface.
func (fsys *FS) wrapFile(f *github.GistFile) *file {
return &file{
gistFile: f,
reader: bytes.NewReader([]byte(f.GetContent())),
modtime: fsys.gist.GetUpdatedAt(),
}
}
// ReadFile reads and returns the content of the named file.
func (fsys *FS) ReadFile(name string) ([]byte, error) {
fsys.mu.RLock()
defer fsys.mu.RUnlock()
if fsys.gist == nil {
return nil, ErrNotLoaded
}
gistFile, ok := fsys.gist.Files[github.GistFilename(name)]
if !ok {
return nil, &fs.PathError{Op: "read", Path: name, Err: fs.ErrNotExist}
}
return []byte(gistFile.GetContent()), nil
}
// ReadDir reads and returns the entire named directory, which contains
// all files that are stored in the Gist supporting the filesystem.
//
// Becaus a Github Gist can't have folders, the only directory that exists
// is the root directory, named "." or "./".
func (fsys *FS) ReadDir(name string) ([]fs.DirEntry, error) {
fsys.mu.RLock()
defer fsys.mu.RUnlock()
if fsys.gist == nil {
return nil, ErrNotLoaded
}
if name != "." && name != "./" {
return nil, &fs.PathError{Op: "read", Path: name, Err: fs.ErrNotExist}
}
return fsys.openRoot().(*rootDir).ReadDir(-1)
}
func (f *file) isClosed() bool {
return f.reader == nil
}
func (f *file) Read(b []byte) (int, error) {
f.mu.Lock()
defer f.mu.Unlock()
if f.isClosed() {
return 0, fs.ErrClosed
}
return f.reader.Read(b)
}
func (f *file) Close() error {
f.mu.Lock()
defer f.mu.Unlock()
f.gistFile = nil
f.reader = nil
return nil
}
// Stat provides stat about the file. The modtime notably, is set to
// when the underlying Gist was last updated.
func (f *file) Stat() (fs.FileInfo, error) {
f.mu.Lock()
defer f.mu.Unlock()
if f.isClosed() {
return nil, fs.ErrClosed
}
return f, nil
}
func (f *file) Name() string { return f.gistFile.GetFilename() }
func (f *file) Size() int64 { return int64(f.gistFile.GetSize()) }
// Mode always return 0444.
func (f *file) Mode() fs.FileMode { return 0444 }
// ModTime always return the time of the underlying gist last update.
func (f *file) ModTime() time.Time { return f.modtime }
func (f *file) IsDir() bool { return false }
func (f *file) Sys() interface{} { return f.gistFile }
func (f *file) Type() fs.FileMode { return f.Mode().Type() }
func (f *file) Info() (fs.FileInfo, error) { return f, nil }
func (f *file) ReadDir(count int) ([]fs.DirEntry, error) {
return nil, &fs.PathError{
Op: "read",
Path: f.Name(),
Err: errors.New("is not a directory"),
}
}
type rootDir struct {
files []*file
offset int
modtime time.Time
mu sync.Mutex
}
func (fsys *FS) openRoot() fs.File {
files := make([]*file, 0, len(fsys.gist.Files))
for _, f := range fsys.gist.Files {
files = append(files, fsys.wrapFile(&f))
}
return &rootDir{
files: files,
modtime: fsys.gist.GetUpdatedAt(),
}
}
func (d *rootDir) Close() error { return nil }
func (d *rootDir) Stat() (fs.FileInfo, error) { return d, nil }
func (d *rootDir) Name() string { return "./" }
func (d *rootDir) Size() int64 { return 0 }
func (d *rootDir) Mode() fs.FileMode { return fs.ModeDir | 0444 }
// ModTime always return the time of the underlying gist last update.
func (d *rootDir) ModTime() time.Time { return d.modtime }
func (d *rootDir) IsDir() bool { return true }
func (d *rootDir) Type() fs.FileMode { return d.Mode().Type() }
func (d *rootDir) Sys() interface{} { return nil }
func (d *rootDir) Read(b []byte) (int, error) {
return 0, &fs.PathError{
Op: "read",
Path: d.Name(),
Err: errors.New("is a directory"),
}
}
func (d *rootDir) ReadDir(count int) ([]fs.DirEntry, error) {
d.mu.Lock()
defer d.mu.Unlock()
n := len(d.files) - d.offset
if count > 0 && n > count {
n = count
}
if n == 0 {
if count <= 0 {
return nil, nil
}
}
files := make([]fs.DirEntry, n)
for i := range files {
files[i] = d.files[d.offset+i]
}
d.offset += n
return files, nil
}