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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
* vi:set noexpandtab tabstop=8 shiftwidth=8:
*
* Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include "config.h"
#include <string.h>
#include <glib/gi18n.h>
#include "gs-fwupd-app.h"
const gchar *
gs_fwupd_app_get_device_id (GsApp *app)
{
return gs_app_get_metadata_item (app, "fwupd::DeviceID");
}
const gchar *
gs_fwupd_app_get_update_uri (GsApp *app)
{
return gs_app_get_metadata_item (app, "fwupd::UpdateID");
}
gboolean
gs_fwupd_app_get_is_locked (GsApp *app)
{
GVariant *tmp = gs_app_get_metadata_variant (app, "fwupd::IsLocked");
if (tmp == NULL)
return FALSE;
return g_variant_get_boolean (tmp);
}
void
gs_fwupd_app_set_device_id (GsApp *app, const gchar *device_id)
{
gs_app_set_metadata (app, "fwupd::DeviceID", device_id);
}
void
gs_fwupd_app_set_update_uri (GsApp *app, const gchar *update_uri)
{
gs_app_set_metadata (app, "fwupd::UpdateID", update_uri);
}
void
gs_fwupd_app_set_is_locked (GsApp *app, gboolean is_locked)
{
g_autoptr(GVariant) tmp = g_variant_new_boolean (is_locked);
gs_app_set_metadata_variant (app, "fwupd::IsLocked", tmp);
}
void
gs_fwupd_app_set_from_device (GsApp *app, FwupdDevice *dev)
{
GPtrArray *guids;
/* something can be done */
if (fwupd_device_has_flag (dev, FWUPD_DEVICE_FLAG_UPDATABLE))
gs_app_set_state (app, AS_APP_STATE_UPDATABLE_LIVE);
/* only can be applied in systemd-offline */
if (fwupd_device_has_flag (dev, FWUPD_DEVICE_FLAG_ONLY_OFFLINE))
gs_app_set_metadata (app, "fwupd::OnlyOffline", "");
/* reboot required to apply update */
if (fwupd_device_has_flag (dev, FWUPD_DEVICE_FLAG_NEEDS_REBOOT))
gs_app_add_quirk (app, GS_APP_QUIRK_NEEDS_REBOOT);
/* is removable */
if (!fwupd_device_has_flag (dev, FWUPD_DEVICE_FLAG_INTERNAL))
gs_app_add_quirk (app, GS_APP_QUIRK_REMOVABLE_HARDWARE);
guids = fwupd_device_get_guids (dev);
if (guids->len > 0) {
g_autofree gchar *guid_str = NULL;
g_auto(GStrv) tmp = g_new0 (gchar *, guids->len + 1);
for (guint i = 0; i < guids->len; i++)
tmp[i] = g_strdup (g_ptr_array_index (guids, i));
guid_str = g_strjoinv (",", tmp);
gs_app_set_metadata (app, "fwupd::Guid", guid_str);
}
if (fwupd_device_get_name (dev) != NULL) {
g_autofree gchar *vendor_name = NULL;
if (fwupd_device_get_vendor (dev) == NULL ||
g_str_has_prefix (fwupd_device_get_name (dev),
fwupd_device_get_vendor (dev))) {
vendor_name = g_strdup (fwupd_device_get_name (dev));
} else {
vendor_name = g_strdup_printf ("%s %s",
fwupd_device_get_vendor (dev),
fwupd_device_get_name (dev));
}
gs_app_set_name (app, GS_APP_QUALITY_NORMAL, vendor_name);
}
if (fwupd_device_get_summary (dev) != NULL) {
gs_app_set_summary (app, GS_APP_QUALITY_NORMAL,
fwupd_device_get_summary (dev));
}
if (fwupd_device_get_version (dev) != NULL) {
gs_app_set_version (app, fwupd_device_get_version (dev));
}
if (fwupd_device_get_created (dev) != 0)
gs_app_set_install_date (app, fwupd_device_get_created (dev));
if (fwupd_device_get_description (dev) != NULL) {
g_autofree gchar *tmp = NULL;
tmp = as_markup_convert (fwupd_device_get_description (dev),
AS_MARKUP_CONVERT_FORMAT_SIMPLE, NULL);
if (tmp != NULL)
gs_app_set_description (app, GS_APP_QUALITY_NORMAL, tmp);
}
/* needs action */
if (fwupd_device_has_flag (dev, FWUPD_DEVICE_FLAG_NEEDS_BOOTLOADER))
gs_app_add_quirk (app, GS_APP_QUIRK_NEEDS_USER_ACTION);
else
gs_app_remove_quirk (app, GS_APP_QUIRK_NEEDS_USER_ACTION);
}
static gchar *
gs_fwupd_release_get_name (FwupdRelease *release)
{
const gchar *name = fwupd_release_get_name (release);
#if FWUPD_CHECK_VERSION(1,2,7)
GPtrArray *cats = fwupd_release_get_categories (release);
for (guint i = 0; i < cats->len; i++) {
const gchar *cat = g_ptr_array_index (cats, i);
if (g_strcmp0 (cat, "X-Device") == 0) {
/* TRANSLATORS: a specific part of hardware,
* the first %s is the device name, e.g. 'Unifying Receiver` */
return g_strdup_printf (_("%s Device Update"), name);
}
if (g_strcmp0 (cat, "X-System") == 0) {
/* TRANSLATORS: the entire system, e.g. all internal devices,
* the first %s is the device name, e.g. 'ThinkPad P50` */
return g_strdup_printf (_("%s System Update"), name);
}
if (g_strcmp0 (cat, "X-EmbeddedController") == 0) {
/* TRANSLATORS: the EC is typically the keyboard controller chip,
* the first %s is the device name, e.g. 'ThinkPad P50` */
return g_strdup_printf (_("%s Embedded Controller Update"), name);
}
if (g_strcmp0 (cat, "X-ManagementEngine") == 0) {
/* TRANSLATORS: ME stands for Management Engine, the Intel AMT thing,
* the first %s is the device name, e.g. 'ThinkPad P50` */
return g_strdup_printf (_("%s ME Update"), name);
}
if (g_strcmp0 (cat, "X-CorporateManagementEngine") == 0) {
/* TRANSLATORS: ME stands for Management Engine (with Intel AMT),
* where the first %s is the device name, e.g. 'ThinkPad P50` */
return g_strdup_printf (_("%s Corporate ME Update"), name);
}
if (g_strcmp0 (cat, "X-ConsumerManagementEngine") == 0) {
/* TRANSLATORS: ME stands for Management Engine, where
* the first %s is the device name, e.g. 'ThinkPad P50` */
return g_strdup_printf (_("%s Consumer ME Update"), name);
}
if (g_strcmp0 (cat, "X-Controller") == 0) {
/* TRANSLATORS: the controller is a device that has other devices
* plugged into it, for example ThunderBolt, FireWire or USB,
* the first %s is the device name, e.g. 'Intel ThunderBolt` */
return g_strdup_printf (_("%s Controller Update"), name);
}
if (g_strcmp0 (cat, "X-ThunderboltController") == 0) {
/* TRANSLATORS: the Thunderbolt controller is a device that
* has other high speed Thunderbolt devices plugged into it;
* the first %s is the system name, e.g. 'ThinkPad P50` */
return g_strdup_printf (_("%s Thunderbolt Controller Update"), name);
}
if (g_strcmp0 (cat, "X-CpuMicrocode") == 0) {
/* TRANSLATORS: the CPU microcode is firmware loaded onto the CPU
* at system bootup */
return g_strdup_printf (_("%s CPU Microcode Update"), name);
}
if (g_strcmp0 (cat, "X-Configuration") == 0) {
/* TRANSLATORS: configuration refers to hardware state,
* e.g. a security database or a default power value */
return g_strdup_printf (_("%s Configuration Update"), name);
}
}
#endif
/* default fallback */
return g_strdup (name);
}
void
gs_fwupd_app_set_from_release (GsApp *app, FwupdRelease *rel)
{
if (fwupd_release_get_name (rel) != NULL) {
g_autofree gchar *tmp = gs_fwupd_release_get_name (rel);
gs_app_set_name (app, GS_APP_QUALITY_NORMAL, tmp);
}
if (fwupd_release_get_summary (rel) != NULL) {
gs_app_set_summary (app, GS_APP_QUALITY_NORMAL,
fwupd_release_get_summary (rel));
}
if (fwupd_release_get_homepage (rel) != NULL) {
gs_app_set_url (app, AS_URL_KIND_HOMEPAGE,
fwupd_release_get_homepage (rel));
}
if (fwupd_release_get_size (rel) != 0) {
gs_app_set_size_installed (app, 0);
gs_app_set_size_download (app, fwupd_release_get_size (rel));
}
if (fwupd_release_get_version (rel) != NULL)
gs_app_set_update_version (app, fwupd_release_get_version (rel));
if (fwupd_release_get_license (rel) != NULL) {
gs_app_set_license (app, GS_APP_QUALITY_NORMAL,
fwupd_release_get_license (rel));
}
if (fwupd_release_get_uri (rel) != NULL) {
gs_app_set_origin_hostname (app,
fwupd_release_get_uri (rel));
gs_fwupd_app_set_update_uri (app, fwupd_release_get_uri (rel));
}
if (fwupd_release_get_description (rel) != NULL) {
g_autofree gchar *tmp = NULL;
tmp = as_markup_convert (fwupd_release_get_description (rel),
AS_MARKUP_CONVERT_FORMAT_SIMPLE, NULL);
if (tmp != NULL)
gs_app_set_update_details (app, tmp);
}
#if FWUPD_CHECK_VERSION(1,3,3)
if (fwupd_release_get_detach_image (rel) != NULL) {
g_autoptr(AsScreenshot) ss = as_screenshot_new ();
g_autoptr(AsImage) im = as_image_new ();
as_image_set_kind (im, AS_IMAGE_KIND_SOURCE);
as_image_set_url (im, fwupd_release_get_detach_image (rel));
as_screenshot_set_kind (ss, AS_SCREENSHOT_KIND_DEFAULT);
as_screenshot_add_image (ss, im);
if (fwupd_release_get_detach_caption (rel) != NULL)
as_screenshot_set_caption (ss, NULL, fwupd_release_get_detach_caption (rel));
gs_app_set_action_screenshot (app, ss);
}
#endif
}
|