Files
snapd/client/model.go
Samuele Pedroni cae1508d0a client: cleanup the Client.raw* and Client.do* method families
* they now can take a *doOptions uniformly to control timeout:
  - nil or absence uses the defaults
  - there's a predefined doNoTimeoutAndRetry to get no timeout
* there's a simple and a full parameter only variant of doSync and doAsync
* use rawWithTimeout in the places that were using raw but setting
  a timeout via context themselves
2020-10-01 22:36:16 +02:00

105 lines
2.9 KiB
Go

// -*- 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"
"github.com/snapcore/snapd/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
}