-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgist_node.go
86 lines (75 loc) · 1.75 KB
/
gist_node.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
package gist9p
import (
"errors"
"github.com/docker/go-p9p"
"github.com/google/go-github/github"
"log"
)
type GistNode struct {
BaseNode
user *UserNode
gist *github.Gist
client *github.Client
haveContent bool
}
func NewGistNode(user *UserNode, gist *github.Gist) *GistNode {
var gistNode GistNode
gistNode.user = user
gistNode.client = user.client
gistNode.gist = gist
gistNode.BaseNode = NewDir(path(&gistNode))
gistNode.haveContent = false
return &gistNode
}
func (node *GistNode) fillContent() error {
if !node.haveContent {
var err error
node.gist, _, err = node.client.Gists.Get(*node.gist.ID)
if err == nil {
node.haveContent = true
}
return err
} else {
return nil
}
}
func (node *GistNode) Sync() error {
gist, resp, err := node.client.Gists.Edit(*node.gist.ID, node.gist)
log.Println("sync PATCH resp code: ", resp.Status)
if err != nil {
return err
}
node.gist = gist
return nil
}
func (node *GistNode) Parent() Node {
return node.user
}
func (node *GistNode) Child(name string) (Node, error) {
gfname := github.GistFilename(name)
_, ok := node.gist.Files[gfname]
if !ok {
return nil, errors.New("gist file not found")
}
return NewFileNode(node, gfname), nil
}
func (node *GistNode) Children() ([]Node, error) {
var children []Node
for _, file := range node.gist.Files {
fileNode := NewFileNode(node, github.GistFilename(*file.Filename))
children = append(children, Node(fileNode))
}
return children, nil
}
func (node *GistNode) PathComponent() string {
return *node.gist.ID
}
func (node *GistNode) Stat() (p9p.Dir, error) {
var dir = p9p.Dir{
Mode: 0755 | p9p.DMDIR,
AccessTime: *node.gist.UpdatedAt,
ModTime: *node.gist.UpdatedAt,
Length: 0,
}
return dir, nil
}