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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2019 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 (
"encoding/json"
"net/http"
"github.com/snapcore/snapd/asserts"
"github.com/snapcore/snapd/client"
"github.com/snapcore/snapd/overlord/auth"
"github.com/snapcore/snapd/overlord/devicestate"
"github.com/snapcore/snapd/overlord/state"
)
var (
serialModelCmd = &Command{
Path: "/v2/model/serial",
GET: getSerial,
UserOK: true,
}
modelCmd = &Command{
Path: "/v2/model",
POST: postModel,
GET: getModel,
UserOK: true,
}
)
type assertType int
const (
serialType assertType = iota
modelType
)
var devicestateRemodel = devicestate.Remodel
type postModelData struct {
NewModel string `json:"new-model"`
}
type modelAssertJSON struct {
Headers map[string]interface{} `json:"headers,omitempty"`
Body string `json:"body,omitempty"`
}
func postModel(c *Command, r *http.Request, _ *auth.UserState) Response {
defer r.Body.Close()
var data postModelData
decoder := json.NewDecoder(r.Body)
if err := decoder.Decode(&data); err != nil {
return BadRequest("cannot decode request body into remodel operation: %v", err)
}
rawNewModel, err := asserts.Decode([]byte(data.NewModel))
if err != nil {
return BadRequest("cannot decode new model assertion: %v", err)
}
newModel, ok := rawNewModel.(*asserts.Model)
if !ok {
return BadRequest("new model is not a model assertion: %v", newModel.Type())
}
st := c.d.overlord.State()
st.Lock()
defer st.Unlock()
chg, err := devicestateRemodel(st, newModel)
if err != nil {
return BadRequest("cannot remodel device: %v", err)
}
ensureStateSoon(st)
return AsyncResponse(nil, &Meta{Change: chg.ID()})
}
// getModel gets the current model assertion using the DeviceManager
func getModel(c *Command, r *http.Request, _ *auth.UserState) Response {
opts, err := parseHeadersFormatOptionsFromURL(r.URL.Query())
if err != nil {
return BadRequest(err.Error())
}
st := c.d.overlord.State()
st.Lock()
defer st.Unlock()
devmgr := c.d.overlord.DeviceManager()
model, err := devmgr.Model()
if err == state.ErrNoState {
res := &errorResult{
Message: "no model assertion yet",
Kind: client.ErrorKindAssertionNotFound,
Value: "model",
}
return &resp{
Type: ResponseTypeError,
Result: res,
Status: 404,
}
}
if err != nil {
return InternalError("accessing model failed: %v", err)
}
if opts.jsonResult {
modelJSON := modelAssertJSON{}
modelJSON.Headers = model.Headers()
if !opts.headersOnly {
modelJSON.Body = string(model.Body())
}
return SyncResponse(modelJSON, nil)
}
return AssertResponse([]asserts.Assertion{model}, false)
}
// getSerial gets the current serial assertion using the DeviceManager
func getSerial(c *Command, r *http.Request, _ *auth.UserState) Response {
opts, err := parseHeadersFormatOptionsFromURL(r.URL.Query())
if err != nil {
return BadRequest(err.Error())
}
st := c.d.overlord.State()
st.Lock()
defer st.Unlock()
devmgr := c.d.overlord.DeviceManager()
serial, err := devmgr.Serial()
if err == state.ErrNoState {
res := &errorResult{
Message: "no serial assertion yet",
Kind: client.ErrorKindAssertionNotFound,
Value: "serial",
}
return &resp{
Type: ResponseTypeError,
Result: res,
Status: 404,
}
}
if err != nil {
return InternalError("accessing serial failed: %v", err)
}
if opts.jsonResult {
serialJSON := modelAssertJSON{}
serialJSON.Headers = serial.Headers()
if !opts.headersOnly {
serialJSON.Body = string(serial.Body())
}
return SyncResponse(serialJSON, nil)
}
return AssertResponse([]asserts.Assertion{serial}, false)
}
|