mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
271 lines
7.6 KiB
Go
271 lines
7.6 KiB
Go
// -*- Mode: Go; indent-tabs-mode: t -*-
|
|
|
|
/*
|
|
* Copyright (C) 2015-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 (
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"net/url"
|
|
"strings"
|
|
"time"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/snapcore/snapd/snap"
|
|
)
|
|
|
|
// Snap holds the data for a snap as obtained from snapd.
|
|
type Snap struct {
|
|
ID string `json:"id"`
|
|
Title string `json:"title,omitempty"`
|
|
Summary string `json:"summary"`
|
|
Description string `json:"description"`
|
|
DownloadSize int64 `json:"download-size,omitempty"`
|
|
Icon string `json:"icon,omitempty"`
|
|
InstalledSize int64 `json:"installed-size,omitempty"`
|
|
InstallDate time.Time `json:"install-date,omitempty"`
|
|
Name string `json:"name"`
|
|
Publisher *snap.StoreAccount `json:"publisher,omitempty"`
|
|
StoreURL string `json:"store-url,omitempty"`
|
|
// Developer is also the publisher's username for historic reasons.
|
|
Developer string `json:"developer"`
|
|
Status string `json:"status"`
|
|
Type string `json:"type"`
|
|
Base string `json:"base,omitempty"`
|
|
Version string `json:"version"`
|
|
Channel string `json:"channel"`
|
|
TrackingChannel string `json:"tracking-channel,omitempty"`
|
|
IgnoreValidation bool `json:"ignore-validation"`
|
|
Revision snap.Revision `json:"revision"`
|
|
Confinement string `json:"confinement"`
|
|
Private bool `json:"private"`
|
|
DevMode bool `json:"devmode"`
|
|
JailMode bool `json:"jailmode"`
|
|
TryMode bool `json:"trymode,omitempty"`
|
|
Apps []AppInfo `json:"apps,omitempty"`
|
|
Broken string `json:"broken,omitempty"`
|
|
Contact string `json:"contact"`
|
|
License string `json:"license,omitempty"`
|
|
CommonIDs []string `json:"common-ids,omitempty"`
|
|
MountedFrom string `json:"mounted-from,omitempty"`
|
|
CohortKey string `json:"cohort-key,omitempty"`
|
|
Website string `json:"website,omitempty"`
|
|
|
|
Prices map[string]float64 `json:"prices,omitempty"`
|
|
Screenshots []snap.ScreenshotInfo `json:"screenshots,omitempty"`
|
|
Media snap.MediaInfos `json:"media,omitempty"`
|
|
|
|
// The flattended channel map with $track/$risk
|
|
Channels map[string]*snap.ChannelSnapInfo `json:"channels,omitempty"`
|
|
|
|
// The ordered list of tracks that contains channels
|
|
Tracks []string `json:"tracks,omitempty"`
|
|
|
|
Health *SnapHealth `json:"health,omitempty"`
|
|
}
|
|
|
|
type SnapHealth struct {
|
|
Revision snap.Revision `json:"revision"`
|
|
Timestamp time.Time `json:"timestamp"`
|
|
Status string `json:"status"`
|
|
Message string `json:"message,omitempty"`
|
|
Code string `json:"code,omitempty"`
|
|
}
|
|
|
|
func (s *Snap) MarshalJSON() ([]byte, error) {
|
|
type auxSnap Snap // use auxiliary type so that Go does not call Snap.MarshalJSON()
|
|
// separate type just for marshalling
|
|
m := struct {
|
|
auxSnap
|
|
InstallDate *time.Time `json:"install-date,omitempty"`
|
|
}{
|
|
auxSnap: auxSnap(*s),
|
|
}
|
|
if !s.InstallDate.IsZero() {
|
|
m.InstallDate = &s.InstallDate
|
|
}
|
|
return json.Marshal(&m)
|
|
}
|
|
|
|
// Statuses and types a snap may have.
|
|
const (
|
|
StatusAvailable = "available"
|
|
StatusInstalled = "installed"
|
|
StatusActive = "active"
|
|
StatusRemoved = "removed"
|
|
StatusPriced = "priced"
|
|
|
|
TypeApp = "app"
|
|
TypeKernel = "kernel"
|
|
TypeGadget = "gadget"
|
|
TypeOS = "os"
|
|
|
|
StrictConfinement = "strict"
|
|
DevModeConfinement = "devmode"
|
|
ClassicConfinement = "classic"
|
|
)
|
|
|
|
type ResultInfo struct {
|
|
SuggestedCurrency string `json:"suggested-currency"`
|
|
}
|
|
|
|
// FindOptions supports exactly one of the following options:
|
|
// - Refresh: only return snaps that are refreshable
|
|
// - Private: return snaps that are private
|
|
// - Query: only return snaps that match the query string
|
|
type FindOptions struct {
|
|
// Query is a term to search by or a prefix (if Prefix is true)
|
|
Query string
|
|
Prefix bool
|
|
|
|
CommonID string
|
|
|
|
Section string
|
|
Private bool
|
|
Scope string
|
|
|
|
Refresh bool
|
|
}
|
|
|
|
var ErrNoSnapsInstalled = errors.New("no snaps installed")
|
|
|
|
type ListOptions struct {
|
|
All bool
|
|
}
|
|
|
|
// List returns the list of all snaps installed on the system
|
|
// with names in the given list; if the list is empty, all snaps.
|
|
func (client *Client) List(names []string, opts *ListOptions) ([]*Snap, error) {
|
|
if opts == nil {
|
|
opts = &ListOptions{}
|
|
}
|
|
|
|
q := make(url.Values)
|
|
if opts.All {
|
|
q.Add("select", "all")
|
|
}
|
|
if len(names) > 0 {
|
|
q.Add("snaps", strings.Join(names, ","))
|
|
}
|
|
|
|
snaps, _, err := client.snapsFromPath("/v2/snaps", q)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if len(snaps) == 0 {
|
|
return nil, ErrNoSnapsInstalled
|
|
}
|
|
|
|
return snaps, nil
|
|
}
|
|
|
|
// Sections returns the list of existing snap sections in the store
|
|
func (client *Client) Sections() ([]string, error) {
|
|
var sections []string
|
|
_, err := client.doSync("GET", "/v2/sections", nil, nil, nil, §ions)
|
|
if err != nil {
|
|
fmt := "cannot get snap sections: %w"
|
|
return nil, xerrors.Errorf(fmt, err)
|
|
}
|
|
return sections, nil
|
|
}
|
|
|
|
// Find returns a list of snaps available for install from the
|
|
// store for this system and that match the query
|
|
func (client *Client) Find(opts *FindOptions) ([]*Snap, *ResultInfo, error) {
|
|
if opts == nil {
|
|
opts = &FindOptions{}
|
|
}
|
|
|
|
q := url.Values{}
|
|
if opts.Prefix {
|
|
q.Set("name", opts.Query+"*")
|
|
} else {
|
|
if opts.CommonID != "" {
|
|
q.Set("common-id", opts.CommonID)
|
|
}
|
|
if opts.Query != "" {
|
|
q.Set("q", opts.Query)
|
|
}
|
|
}
|
|
|
|
switch {
|
|
case opts.Refresh && opts.Private:
|
|
return nil, nil, fmt.Errorf("cannot specify refresh and private together")
|
|
case opts.Refresh:
|
|
q.Set("select", "refresh")
|
|
case opts.Private:
|
|
q.Set("select", "private")
|
|
}
|
|
if opts.Section != "" {
|
|
q.Set("section", opts.Section)
|
|
}
|
|
if opts.Scope != "" {
|
|
q.Set("scope", opts.Scope)
|
|
}
|
|
|
|
return client.snapsFromPath("/v2/find", q)
|
|
}
|
|
|
|
func (client *Client) FindOne(name string) (*Snap, *ResultInfo, error) {
|
|
q := url.Values{}
|
|
q.Set("name", name)
|
|
|
|
snaps, ri, err := client.snapsFromPath("/v2/find", q)
|
|
if err != nil {
|
|
fmt := "cannot find snap %q: %w"
|
|
return nil, nil, xerrors.Errorf(fmt, name, err)
|
|
}
|
|
|
|
if len(snaps) == 0 {
|
|
return nil, nil, fmt.Errorf("cannot find snap %q", name)
|
|
}
|
|
|
|
return snaps[0], ri, nil
|
|
}
|
|
|
|
func (client *Client) snapsFromPath(path string, query url.Values) ([]*Snap, *ResultInfo, error) {
|
|
var snaps []*Snap
|
|
ri, err := client.doSync("GET", path, query, nil, nil, &snaps)
|
|
if e, ok := err.(*Error); ok {
|
|
return nil, nil, e
|
|
}
|
|
if err != nil {
|
|
fmt := "cannot list snaps: %w"
|
|
return nil, nil, xerrors.Errorf(fmt, err)
|
|
}
|
|
return snaps, ri, nil
|
|
}
|
|
|
|
// Snap returns the most recently published revision of the snap with the
|
|
// provided name.
|
|
func (client *Client) Snap(name string) (*Snap, *ResultInfo, error) {
|
|
var snap *Snap
|
|
path := fmt.Sprintf("/v2/snaps/%s", name)
|
|
ri, err := client.doSync("GET", path, nil, nil, nil, &snap)
|
|
if err != nil {
|
|
fmt := "cannot retrieve snap %q: %w"
|
|
return nil, nil, xerrors.Errorf(fmt, name, err)
|
|
}
|
|
return snap, ri, nil
|
|
}
|