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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2016 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"
"fmt"
"io"
"net/url"
"strconv"
"golang.org/x/xerrors"
// for parsing
"github.com/snapcore/snapd/asserts"
"github.com/snapcore/snapd/snap"
)
// Ack tries to add an assertion to the system assertion
// database. To succeed the assertion must be valid, its signature
// verified with a known public key and the assertion consistent with
// and its prerequisite in the database.
func (client *Client) Ack(b []byte) error {
var rsp any
if _, err := client.doSync("POST", "/v2/assertions", nil, nil, bytes.NewReader(b), &rsp); err != nil {
return err
}
return nil
}
// AssertionTypes returns a list of assertion type names.
func (client *Client) AssertionTypes() ([]string, error) {
var types struct {
Types []string `json:"types"`
}
_, err := client.doSync("GET", "/v2/assertions", nil, nil, nil, &types)
if err != nil {
fmt := "cannot get assertion type names: %w"
return nil, xerrors.Errorf(fmt, err)
}
return types.Types, nil
}
// KnownOptions represent the options of the Known call.
type KnownOptions struct {
// If Remote is true, the store is queried to find the assertion
Remote bool
}
// Known queries assertions with type assertTypeName and matching assertion headers.
func (client *Client) Known(assertTypeName string, headers map[string]string, opts *KnownOptions) ([]asserts.Assertion, error) {
if opts == nil {
opts = &KnownOptions{}
}
path := fmt.Sprintf("/v2/assertions/%s", assertTypeName)
q := url.Values{}
if len(headers) > 0 {
for k, v := range headers {
q.Set(k, v)
}
}
if opts.Remote {
q.Set("remote", "true")
}
response, cancel, err := client.rawWithTimeout(context.Background(), "GET", path, q, nil, nil, nil)
if err != nil {
fmt := "failed to query assertions: %w"
return nil, xerrors.Errorf(fmt, err)
}
defer cancel()
defer response.Body.Close()
if response.StatusCode != 200 {
return nil, parseError(response)
}
assertionsCount, err := strconv.Atoi(response.Header.Get("X-Ubuntu-Assertions-Count"))
if err != nil {
return nil, fmt.Errorf("invalid assertions count")
}
dec := asserts.NewDecoder(response.Body)
asserts := []asserts.Assertion{}
// TODO: make sure asserts can decode and deal with unknown types
for {
a, err := dec.Decode()
if err == io.EOF {
break
}
if err != nil {
return nil, fmt.Errorf("failed to decode assertions: %v", err)
}
asserts = append(asserts, a)
}
if len(asserts) != assertionsCount {
return nil, fmt.Errorf("response did not have the expected number of assertions")
}
return asserts, nil
}
// StoreAccount returns the full store account info for the specified accountID
func (client *Client) StoreAccount(accountID string) (*snap.StoreAccount, error) {
assertions, err := client.Known("account", map[string]string{"account-id": accountID}, nil)
if err != nil {
return nil, err
}
switch len(assertions) {
case 1:
// happy case, break out of the switch
case 0:
return nil, fmt.Errorf("no assertion found for account-id %s", accountID)
default:
// unknown how this could happen...
return nil, fmt.Errorf("multiple assertions for account-id %s", accountID)
}
acct, ok := assertions[0].(*asserts.Account)
if !ok {
return nil, fmt.Errorf("incorrect type of account assertion returned")
}
return &snap.StoreAccount{
ID: acct.AccountID(),
Username: acct.Username(),
DisplayName: acct.DisplayName(),
Validation: acct.Validation(),
}, nil
}
|