-
Notifications
You must be signed in to change notification settings - Fork 4
/
dockercopilot.api
164 lines (139 loc) · 3 KB
/
dockercopilot.api
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
syntax = "v1"
type DoLoginReq {
SecretKey string `form:"secret_key,optional"`
}
type LoginReq {
SecretKey string `form:"secretKey,optional"`
}
type VerifyJwtReq {
Jwt string `form:"jwt,optional"`
}
type GetProgressReq {
TaskId string `path:"taskid"`
}
type StartContainerReq {
Name string `json:"name"`
}
type StopContainerReq {
Name string `json:"name"`
}
type RenameContainerReq {
OldName string `json:"oldName"`
NewName string `json:"newName"`
}
type CreateContainerReq {
OldName string `json:"old_name"`
NewName string `json:"new_name"`
ImageNameAndTag string `json:"image_name_and_tag"`
}
type RemoveContainerReq {
Name string `json:"name"`
}
type getNewImageReq {
ImageNameAndTag string `json:"image_name_and_tag"`
}
type MsgResp {
Status string `json:"status"`
Msg string `json:"msg"`
}
type Resp {
Code int `json:"code"`
Msg string `json:"msg"`
Data interface{} `json:"data"`
}
type IdReq {
Id string `path:"id"`
}
type ContainerRestoreReq {
Filename string `path:"filename"`
}
type ContainerRenameReq {
IdReq
NewName string `form:"newName"`
}
type RemoveImageReq {
IdReq
Force bool `form:"force,default=false"`
}
type ContainerUpdateReq {
IdReq
DelOldContainer bool `form:"delOldContainer,default=true"`
ImageNameAndTag string `form:"imageNameAndTag"`
ContainerName string `form:"containerName"`
}
type VersionMsgResp {
Version string `json:"version"`
BuildDate string `json:"build_date"`
}
type VersionReq {
Type string `form:"type"`
}
service dockerCopilot {
@handler webindex
get / () returns ()
}
@server(
prefix: /api
group: auth
)
service dockerCopilot {
@handler Login
post /auth (LoginReq) returns (Resp);
}
@server(
prefix: /api
group: progress
)
service dockerCopilot {
@handler GetProgress
get /progress/:taskid (GetProgressReq) returns (Resp);
}
@server(
prefix: /api
group: container
jwt: Auth
)
service dockerCopilot {
@handler containersList
get /containers returns (Resp)
@handler start
post /container/:id/start (IdReq) returns (Resp)
@handler stop
post /container/:id/stop (IdReq) returns (Resp)
@handler restart
post /container/:id/restart (IdReq) returns (Resp)
@handler rename
post /container/:id/rename (ContainerRenameReq) returns (Resp)
@handler update
post /container/:id/update (ContainerUpdateReq) returns (Resp)
@handler backup
get /container/backup returns (Resp)
@handler listBackups
get /container/listBackups returns (Resp)
@handler restore
post /container/backups/:filename/restore (ContainerRestoreReq) returns (Resp)
@handler delRestore
delete /container/backups/:filename (ContainerRestoreReq) returns (Resp)
}
@server(
prefix: /api
group: image
jwt: Auth
)
service dockerCopilot {
@handler imagesList
get /images returns (Resp)
@handler remove
delete /image/:id (RemoveImageReq) returns (Resp)
}
@server(
prefix: /api
group: version
jwt: Auth
)
service dockerCopilot {
@handler version
get /version (VersionReq) returns (Resp);
@handler updateProgram
put /program () returns (Resp);
}