This repository was archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathide.go
93 lines (83 loc) · 2.1 KB
/
ide.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
package main
import (
"fmt"
"os/user"
"path/filepath"
"regexp"
"strings"
)
// IdeDeploy deploys and mounts a folder
func IdeDeploy(dir string, info string) error {
fmt.Println("Deploying IDE...")
if dir != "" {
err := preflightInHomePath(dir)
if err != nil {
return err
}
}
return ideDockerRun(dir, info)
}
// IdeDestroy destroys ide
func IdeDestroy() error {
fmt.Printf("Destroying IDE: %s", Sys("@docker kill iosdk-theia"))
return nil
}
// ideDockerRun starts the ide
// it also mounts the project folder if the directory is not empty
func ideDockerRun(dir string, info string) (err error) {
image := IdeImage + ":" + Version
if err = dockerPull(image); err != nil {
return err
}
mount := ""
if dir != "" {
dir, err = filepath.Abs(dir)
LogIf(err)
if err == nil {
dir = fixPathDockerToolbox(dir, info)
mount = fmt.Sprintf("-v %s:/home/project", dir)
}
}
openwhiskIP := dockerIP("iosdk-openwhisk")
if openwhiskIP == nil {
return fmt.Errorf("cannot find openwhisk")
}
uid := ""
if RuntimeOS == "linux" {
usr, err := user.Current()
LogIf(err)
if err == nil {
uid = fmt.Sprintf("-u %s", usr.Uid)
}
}
var search = regexp.MustCompile(`Operating System: Boot2Docker`)
if search.FindString(info) != "" {
uid = "-u root"
}
command := fmt.Sprintf(`docker run -d -p 3000:3000
--rm --name iosdk-theia -e HOME=/home/project
%s %s --add-host=openwhisk:%s %s`, mount, uid, *openwhiskIP, image)
Sys(command)
return nil
}
// OpenWhiskDockerWait wait for openwhisk to be
func OpenWhiskDockerWait() error {
fmt.Println(Sys("docker exec iosdk-whisk waitready"))
return nil
}
// on windows if you are using Docker Toolbox you need to change the path format
// it expects an absolute path starting with `<drive>:` in windows
func fixPathDockerToolbox(dir string, info string) string {
if RuntimeOS != "windows" {
return dir
}
var search = regexp.MustCompile(`Operating System: Boot2Docker`)
if search.FindString(info) == "" {
return dir
}
dir = strings.ReplaceAll(dir, "\\", "/")
if dir[1] == ':' {
dir = "//" + strings.ToLower(string(dir[0])) + dir[2:]
}
return dir
}