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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
* vi:set noexpandtab tabstop=8 shiftwidth=8:
*
* Copyright (C) 2016 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <config.h>
#include <fnmatch.h>
#include <gnome-software.h>
#include "gs-plugin-hardcoded-blocklist.h"
/*
* SECTION:
* Blocklists some applications based on a hardcoded list.
*
* This plugin executes entirely in the main thread and requires no locking.
*/
struct _GsPluginHardcodedBlocklist
{
GsPlugin parent;
};
G_DEFINE_TYPE (GsPluginHardcodedBlocklist, gs_plugin_hardcoded_blocklist, GS_TYPE_PLUGIN)
static void
gs_plugin_hardcoded_blocklist_init (GsPluginHardcodedBlocklist *self)
{
/* need ID */
gs_plugin_add_rule (GS_PLUGIN (self), GS_PLUGIN_RULE_RUN_AFTER, "appstream");
}
static gboolean
refine_app (GsPlugin *plugin,
GsApp *app,
GsPluginRefineRequireFlags require_flags,
GCancellable *cancellable,
GError **error)
{
guint i;
const gchar *app_globs[] = {
"freeciv-server.desktop",
"links.desktop",
"nm-connection-editor.desktop",
"plank.desktop",
"*release-notes*.desktop",
"*Release_Notes*.desktop",
"Rodent-*.desktop",
"rygel-preferences.desktop",
"system-config-keyboard.desktop",
"tracker-preferences.desktop",
"Uninstall*.desktop",
"wine-*.desktop",
NULL };
/* not set yet */
if (gs_app_get_id (app) == NULL)
return TRUE;
/* search */
for (i = 0; app_globs[i] != NULL; i++) {
if (fnmatch (app_globs[i], gs_app_get_id (app), 0) == 0) {
gs_app_add_quirk (app, GS_APP_QUIRK_HIDE_EVERYWHERE);
break;
}
}
return TRUE;
}
static void
gs_plugin_hardcoded_blocklist_refine_async (GsPlugin *plugin,
GsAppList *list,
GsPluginRefineFlags job_flags,
GsPluginRefineRequireFlags require_flags,
GsPluginEventCallback event_callback,
void *event_user_data,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data)
{
g_autoptr(GTask) task = NULL;
g_autoptr(GError) local_error = NULL;
task = g_task_new (plugin, cancellable, callback, user_data);
g_task_set_source_tag (task, gs_plugin_hardcoded_blocklist_refine_async);
for (guint i = 0; i < gs_app_list_length (list); i++) {
GsApp *app = gs_app_list_index (list, i);
if (!refine_app (plugin, app, require_flags, cancellable, &local_error)) {
g_task_return_error (task, g_steal_pointer (&local_error));
return;
}
}
g_task_return_boolean (task, TRUE);
}
static gboolean
gs_plugin_hardcoded_blocklist_refine_finish (GsPlugin *plugin,
GAsyncResult *result,
GError **error)
{
return g_task_propagate_boolean (G_TASK (result), error);
}
static void
gs_plugin_hardcoded_blocklist_class_init (GsPluginHardcodedBlocklistClass *klass)
{
GsPluginClass *plugin_class = GS_PLUGIN_CLASS (klass);
plugin_class->refine_async = gs_plugin_hardcoded_blocklist_refine_async;
plugin_class->refine_finish = gs_plugin_hardcoded_blocklist_refine_finish;
}
GType
gs_plugin_query_type (void)
{
return GS_TYPE_PLUGIN_HARDCODED_BLOCKLIST;
}
|