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
|
// -*- 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"
"encoding/json"
"net/url"
"strings"
)
// Plug represents the potential of a given snap to connect to a slot.
type Plug struct {
Snap string `json:"snap"`
Name string `json:"plug"`
Interface string `json:"interface,omitempty"`
Attrs map[string]any `json:"attrs,omitempty"`
Apps []string `json:"apps,omitempty"`
Label string `json:"label,omitempty"`
Connections []SlotRef `json:"connections,omitempty"`
}
// PlugRef is a reference to a plug.
type PlugRef struct {
Snap string `json:"snap"`
Name string `json:"plug"`
}
// Slot represents a capacity offered by a snap.
type Slot struct {
Snap string `json:"snap"`
Name string `json:"slot"`
Interface string `json:"interface,omitempty"`
Attrs map[string]any `json:"attrs,omitempty"`
Apps []string `json:"apps,omitempty"`
Label string `json:"label,omitempty"`
Connections []PlugRef `json:"connections,omitempty"`
}
// SlotRef is a reference to a slot.
type SlotRef struct {
Snap string `json:"snap"`
Name string `json:"slot"`
}
// Interface holds information about a given interface and its instances.
type Interface struct {
Name string `json:"name,omitempty"`
Summary string `json:"summary,omitempty"`
DocURL string `json:"doc-url,omitempty"`
Plugs []Plug `json:"plugs,omitempty"`
Slots []Slot `json:"slots,omitempty"`
}
// InterfaceAction represents an action performed on the interface system.
type InterfaceAction struct {
Action string `json:"action"`
Forget bool `json:"forget,omitempty"`
Plugs []Plug `json:"plugs,omitempty"`
Slots []Slot `json:"slots,omitempty"`
}
// InterfaceOptions represents opt-in elements include in responses.
type InterfaceOptions struct {
Names []string
Doc bool
Plugs bool
Slots bool
Connected bool
}
// DisconnectOptions represents extra options for disconnect op
type DisconnectOptions struct {
Forget bool
}
func (client *Client) Interfaces(opts *InterfaceOptions) ([]*Interface, error) {
query := url.Values{}
if opts != nil && len(opts.Names) > 0 {
query.Set("names", strings.Join(opts.Names, ",")) // Return just those specific interfaces.
}
if opts != nil {
if opts.Doc {
query.Set("doc", "true") // Return documentation of each selected interface.
}
if opts.Plugs {
query.Set("plugs", "true") // Return plugs of each selected interface.
}
if opts.Slots {
query.Set("slots", "true") // Return slots of each selected interface.
}
}
// NOTE: Presence of "select" triggers the use of the new response format.
if opts != nil && opts.Connected {
query.Set("select", "connected") // Return just the connected interfaces.
} else {
query.Set("select", "all") // Return all interfaces.
}
var interfaces []*Interface
_, err := client.doSync("GET", "/v2/interfaces", query, nil, nil, &interfaces)
return interfaces, err
}
// performInterfaceAction performs a single action on the interface system.
func (client *Client) performInterfaceAction(sa *InterfaceAction) (changeID string, err error) {
b, err := json.Marshal(sa)
if err != nil {
return "", err
}
return client.doAsync("POST", "/v2/interfaces", nil, nil, bytes.NewReader(b))
}
// Connect establishes a connection between a plug and a slot.
// The plug and the slot must have the same interface.
func (client *Client) Connect(plugSnapName, plugName, slotSnapName, slotName string) (changeID string, err error) {
return client.performInterfaceAction(&InterfaceAction{
Action: "connect",
Plugs: []Plug{{Snap: plugSnapName, Name: plugName}},
Slots: []Slot{{Snap: slotSnapName, Name: slotName}},
})
}
// Disconnect breaks the connection between a plug and a slot.
func (client *Client) Disconnect(plugSnapName, plugName, slotSnapName, slotName string, opts *DisconnectOptions) (changeID string, err error) {
return client.performInterfaceAction(&InterfaceAction{
Action: "disconnect",
Forget: opts != nil && opts.Forget,
Plugs: []Plug{{Snap: plugSnapName, Name: plugName}},
Slots: []Slot{{Snap: slotSnapName, Name: slotName}},
})
}
|