-
Notifications
You must be signed in to change notification settings - Fork 54
/
api.go
131 lines (122 loc) · 3.41 KB
/
api.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
// Copyright (c) 2014-2020 Canonical Ltd
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 3 as
// published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package daemon
import (
"net/http"
"github.com/gorilla/mux"
"github.com/canonical/pebble/internals/overlord"
"github.com/canonical/pebble/internals/overlord/restart"
"github.com/canonical/pebble/internals/overlord/state"
)
var API = []*Command{{
Path: "/v1/system-info",
ReadAccess: OpenAccess{},
GET: v1SystemInfo,
}, {
Path: "/v1/health",
ReadAccess: OpenAccess{},
GET: v1Health,
}, {
Path: "/v1/changes",
ReadAccess: UserAccess{},
GET: v1GetChanges,
}, {
Path: "/v1/changes/{id}",
ReadAccess: UserAccess{},
WriteAccess: AdminAccess{},
GET: v1GetChange,
POST: v1PostChange,
}, {
Path: "/v1/changes/{id}/wait",
ReadAccess: UserAccess{},
GET: v1GetChangeWait,
}, {
Path: "/v1/services",
ReadAccess: UserAccess{},
WriteAccess: AdminAccess{},
GET: v1GetServices,
POST: v1PostServices,
}, {
Path: "/v1/services/{name}",
ReadAccess: UserAccess{},
WriteAccess: AdminAccess{},
GET: v1GetService,
POST: v1PostService,
}, {
Path: "/v1/plan",
ReadAccess: UserAccess{},
GET: v1GetPlan,
}, {
Path: "/v1/layers",
WriteAccess: AdminAccess{},
POST: v1PostLayers,
}, {
Path: "/v1/files",
ReadAccess: AdminAccess{}, // some files are sensitive, so require admin
WriteAccess: AdminAccess{},
GET: v1GetFiles,
POST: v1PostFiles,
}, {
Path: "/v1/logs",
ReadAccess: UserAccess{},
GET: v1GetLogs,
}, {
Path: "/v1/exec",
WriteAccess: AdminAccess{},
POST: v1PostExec,
}, {
Path: "/v1/tasks/{task-id}/websocket/{websocket-id}",
ReadAccess: AdminAccess{}, // used by exec, so require admin
GET: v1GetTaskWebsocket,
}, {
Path: "/v1/signals",
WriteAccess: AdminAccess{},
POST: v1PostSignals,
}, {
Path: "/v1/checks",
ReadAccess: UserAccess{},
GET: v1GetChecks,
}, {
Path: "/v1/notices",
ReadAccess: UserAccess{},
WriteAccess: UserAccess{}, // any user is allowed to add a notice with their own uid
GET: v1GetNotices,
POST: v1PostNotices,
}, {
Path: "/v1/notices/{id}",
ReadAccess: UserAccess{},
GET: v1GetNotice,
}, {
Path: "/v1/identities",
ReadAccess: UserAccess{},
WriteAccess: AdminAccess{},
GET: v1GetIdentities,
POST: v1PostIdentities,
}}
var (
stateEnsureBefore = (*state.State).EnsureBefore
overlordServiceManager = (*overlord.Overlord).ServiceManager
overlordPlanManager = (*overlord.Overlord).PlanManager
muxVars = mux.Vars
)
func v1SystemInfo(c *Command, r *http.Request, _ *UserState) Response {
state := c.d.overlord.State()
state.Lock()
defer state.Unlock()
result := map[string]interface{}{
"version": c.d.Version,
"boot-id": restart.BootID(state),
}
return SyncResponse(result)
}