-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.go
97 lines (81 loc) · 1.76 KB
/
workspace.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
package main
import (
"encoding/json"
"io/fs"
"io/ioutil"
"os"
"path"
"strings"
"github.com/go-errors/errors"
)
type meta struct {
ID *string `json:"id"`
}
type workspace struct {
Data map[string]json.RawMessage `json:"data"`
Meta meta `json:"metadata"`
}
// Workspace holds information about the workspace and all of the json data
type Workspace struct {
Data workspace
Path string
FileInfo fs.FileInfo
}
type pathData struct {
Path string `json:"path"`
}
// type notebookData struct {
// Data pathData `json:"data"`
// }
func readWorkspaceFile(file string) (ws workspace, err error) {
jsonFile, err := os.Open(file)
if err != nil {
err = errors.Wrap(err, 0)
return
}
defer jsonFile.Close()
bytes, err := ioutil.ReadAll(jsonFile)
if err != nil {
err = errors.Wrap(err, 0)
return
}
json.Unmarshal(bytes, &ws)
return
}
func getWorkspaces(workspaceDir string) (workspaces []Workspace, err error) {
files, err := ioutil.ReadDir(workspaceDir)
if err != nil {
err = errors.Wrap(err, 0)
return
}
var ws workspace
for _, file := range files {
if !file.IsDir() && strings.HasSuffix(file.Name(), ".jupyterlab-workspace") {
filePath := path.Join(workspaceDir, file.Name())
ws, err = readWorkspaceFile(filePath)
if err != nil {
err = errors.Wrap(err, 0)
return
}
workspaces = append(workspaces, Workspace{
Data: ws,
Path: filePath,
FileInfo: file,
})
}
}
return
}
func getWorkspaceInfo(data map[string]json.RawMessage) (numOpen int, workingDir string) {
for key, value := range data {
if strings.HasPrefix(key, "notebook:") {
numOpen++
}
if key == "file-browser-filebrowser:cwd" {
p := &pathData{}
json.Unmarshal(value, p)
workingDir = p.Path
}
}
return
}