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 154 155 156 157 158 159 160
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2018-2020 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 clientutil offers utilities to turn snap.Info and related
// structs into client structs and to work with the latter.
package clientutil
import (
"sort"
"strings"
"github.com/snapcore/snapd/client"
"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/snap"
)
// A StatusDecorator is able to decorate client.AppInfos with service status.
type StatusDecorator interface {
DecorateWithStatus(appInfo *client.AppInfo, snapApp *snap.AppInfo) error
}
// ClientSnapFromSnapInfo returns a client.Snap derived from snap.Info.
// If an optional StatusDecorator is provided it will be used to
// add service status information.
func ClientSnapFromSnapInfo(snapInfo *snap.Info, decorator StatusDecorator) (*client.Snap, error) {
var publisher *snap.StoreAccount
if snapInfo.Publisher.Username != "" {
publisher = &snapInfo.Publisher
}
confinement := snapInfo.Confinement
if confinement == "" {
confinement = snap.StrictConfinement
}
snapapps := make([]*snap.AppInfo, 0, len(snapInfo.Apps))
for _, app := range snapInfo.Apps {
snapapps = append(snapapps, app)
}
sort.Sort(snap.AppInfoBySnapApp(snapapps))
apps, err := ClientAppInfosFromSnapAppInfos(snapapps, decorator)
result := &client.Snap{
Description: snapInfo.Description(),
Developer: snapInfo.Publisher.Username,
Publisher: publisher,
Icon: snapInfo.Media.IconURL(),
ID: snapInfo.ID(),
InstallDate: snapInfo.InstallDate(),
Name: snapInfo.InstanceName(),
Revision: snapInfo.Revision,
Summary: snapInfo.Summary(),
Type: string(snapInfo.Type()),
Base: snapInfo.Base,
Version: snapInfo.Version,
Channel: snapInfo.Channel,
Private: snapInfo.Private,
Confinement: string(confinement),
Apps: apps,
Broken: snapInfo.Broken,
Title: snapInfo.Title(),
License: snapInfo.License,
Media: snapInfo.Media,
Prices: snapInfo.Prices,
Channels: snapInfo.Channels,
Tracks: snapInfo.Tracks,
CommonIDs: snapInfo.CommonIDs,
Links: snapInfo.Links(),
Contact: snapInfo.Contact(),
Website: snapInfo.Website(),
StoreURL: snapInfo.StoreURL,
Categories: snapInfo.Categories,
}
return result, err
}
func ClientAppInfoNotes(app *client.AppInfo) string {
if !app.IsService() {
return "-"
}
var notes = make([]string, 0, 4)
if app.DaemonScope == snap.UserDaemon {
notes = append(notes, "user")
}
var seenTimer, seenSocket, seenDbus bool
for _, act := range app.Activators {
switch act.Type {
case "timer":
seenTimer = true
case "socket":
seenSocket = true
case "dbus":
seenDbus = true
}
}
if seenTimer {
notes = append(notes, "timer-activated")
}
if seenSocket {
notes = append(notes, "socket-activated")
}
if seenDbus {
notes = append(notes, "dbus-activated")
}
if len(notes) == 0 {
return "-"
}
return strings.Join(notes, ",")
}
// ClientAppInfosFromSnapAppInfos returns client.AppInfos derived from
// the given snap.AppInfos.
// If an optional StatusDecorator is provided it will be used to add
// service status information as well, this will be done only if the
// snap is active and when the app is a service.
func ClientAppInfosFromSnapAppInfos(apps []*snap.AppInfo, decorator StatusDecorator) ([]client.AppInfo, error) {
out := make([]client.AppInfo, 0, len(apps))
for _, app := range apps {
appInfo := client.AppInfo{
Snap: app.Snap.InstanceName(),
Name: app.Name,
CommonID: app.CommonID,
}
if fn := app.DesktopFile(); osutil.FileExists(fn) {
appInfo.DesktopFile = fn
}
appInfo.Daemon = app.Daemon
appInfo.DaemonScope = app.DaemonScope
if !app.IsService() || decorator == nil || !app.Snap.IsActive() {
out = append(out, appInfo)
continue
}
if err := decorator.DecorateWithStatus(&appInfo, app); err != nil {
return nil, err
}
out = append(out, appInfo)
}
return out, nil
}
|