Fetch the repository succeeded.
This action will force synchronization from tupelo-shen/mysnapd, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
// -*- 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 client
import (
"bytes"
"context"
"encoding/json"
"fmt"
"net/url"
"golang.org/x/xerrors"
"gitee.com/mysnapcore/mysnapd/asserts"
)
type remodelData struct {
NewModel string `json:"new-model"`
}
// Remodel tries to remodel the system with the given assertion data
func (client *Client) Remodel(b []byte) (changeID string, err error) {
data, err := json.Marshal(&remodelData{
NewModel: string(b),
})
if err != nil {
return "", fmt.Errorf("cannot marshal remodel data: %v", err)
}
headers := map[string]string{
"Content-Type": "application/json",
}
return client.doAsync("POST", "/v2/model", nil, headers, bytes.NewReader(data))
}
// CurrentModelAssertion returns the current model assertion
func (client *Client) CurrentModelAssertion() (*asserts.Model, error) {
assert, err := currentAssertion(client, "/v2/model")
if err != nil {
return nil, err
}
modelAssert, ok := assert.(*asserts.Model)
if !ok {
return nil, fmt.Errorf("unexpected assertion type (%s) returned", assert.Type().Name)
}
return modelAssert, nil
}
// CurrentSerialAssertion returns the current serial assertion
func (client *Client) CurrentSerialAssertion() (*asserts.Serial, error) {
assert, err := currentAssertion(client, "/v2/model/serial")
if err != nil {
return nil, err
}
serialAssert, ok := assert.(*asserts.Serial)
if !ok {
return nil, fmt.Errorf("unexpected assertion type (%s) returned", assert.Type().Name)
}
return serialAssert, nil
}
// helper function for getting assertions from the daemon via a REST path
func currentAssertion(client *Client, path string) (asserts.Assertion, error) {
q := url.Values{}
response, cancel, err := client.rawWithTimeout(context.Background(), "GET", path, q, nil, nil, nil)
if err != nil {
fmt := "failed to query current assertion: %w"
return nil, xerrors.Errorf(fmt, err)
}
defer cancel()
defer response.Body.Close()
if response.StatusCode != 200 {
return nil, parseError(response)
}
dec := asserts.NewDecoder(response.Body)
// only decode a single assertion - we can't ever get more than a single
// assertion through these endpoints by design
assert, err := dec.Decode()
if err != nil {
return nil, fmt.Errorf("failed to decode assertions: %v", err)
}
return assert, nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。