Ai
1 Star 0 Fork 1

mysnapcore/mysnapd

forked from tupelo-shen/mysnapd 
Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
api_model.go 5.20 KB
Copy Edit Raw Blame History
tupelo-shen authored 2022-11-08 22:56 +08:00 . fix: daemon commit
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2021 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"
"errors"
"net/http"
"gitee.com/mysnapcore/mysnapd/asserts"
"gitee.com/mysnapcore/mysnapd/client"
"gitee.com/mysnapcore/mysnapd/client/clientutil"
"gitee.com/mysnapcore/mysnapd/overlord/auth"
"gitee.com/mysnapcore/mysnapd/overlord/devicestate"
"gitee.com/mysnapcore/mysnapd/overlord/state"
)
var (
serialModelCmd = &Command{
Path: "/v2/model/serial",
GET: getSerial,
POST: postSerial,
ReadAccess: openAccess{},
WriteAccess: rootAccess{},
}
modelCmd = &Command{
Path: "/v2/model",
POST: postModel,
GET: getModel,
ReadAccess: openAccess{},
WriteAccess: rootAccess{},
}
)
var devicestateRemodel = devicestate.Remodel
type postModelData struct {
NewModel string `json:"new-model"`
}
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, 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 errors.Is(err, state.ErrNoState) {
return &apiError{
Status: 404,
Message: "no model assertion yet",
Kind: client.ErrorKindAssertionNotFound,
Value: "model",
}
}
if err != nil {
return InternalError("accessing model failed: %v", err)
}
if opts.jsonResult {
modelJSON := clientutil.ModelAssertJSON{}
modelJSON.Headers = model.Headers()
if !opts.headersOnly {
modelJSON.Body = string(model.Body())
}
return SyncResponse(modelJSON)
}
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 errors.Is(err, state.ErrNoState) {
return &apiError{
Status: 404,
Message: "no serial assertion yet",
Kind: client.ErrorKindAssertionNotFound,
Value: "serial",
}
}
if err != nil {
return InternalError("accessing serial failed: %v", err)
}
if opts.jsonResult {
serialJSON := clientutil.ModelAssertJSON{}
serialJSON.Headers = serial.Headers()
if !opts.headersOnly {
serialJSON.Body = string(serial.Body())
}
return SyncResponse(serialJSON)
}
return AssertResponse([]asserts.Assertion{serial}, false)
}
type postSerialData struct {
Action string `json:"action"`
NoRegistrationUntilReboot bool `json:"no-registration-until-reboot"`
}
var devicestateDeviceManagerUnregister = (*devicestate.DeviceManager).Unregister
func postSerial(c *Command, r *http.Request, _ *auth.UserState) Response {
var postData postSerialData
decoder := json.NewDecoder(r.Body)
if err := decoder.Decode(&postData); err != nil {
return BadRequest("cannot decode serial action data from request body: %v", err)
}
if decoder.More() {
return BadRequest("spurious content after serial action")
}
switch postData.Action {
case "forget":
case "":
return BadRequest("missing serial action")
default:
return BadRequest("unsupported serial action %q", postData.Action)
}
st := c.d.overlord.State()
st.Lock()
defer st.Unlock()
devmgr := c.d.overlord.DeviceManager()
unregOpts := &devicestate.UnregisterOptions{
NoRegistrationUntilReboot: postData.NoRegistrationUntilReboot,
}
err := devicestateDeviceManagerUnregister(devmgr, unregOpts)
if err != nil {
return InternalError("forgetting serial failed: %v", err)
}
return SyncResponse(nil)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mysnapcore/mysnapd.git
git@gitee.com:mysnapcore/mysnapd.git
mysnapcore
mysnapd
mysnapd
v0.1.0

Search