Add CcHostnameEntry widget and use it in the info panel
https://bugzilla.gnome.org/show_bug.cgi?id=687772
This commit is contained in:
parent
b577e6a679
commit
f3a35fb573
12 changed files with 393 additions and 256 deletions
299
shell/cc-hostname-entry.c
Normal file
299
shell/cc-hostname-entry.c
Normal file
|
@ -0,0 +1,299 @@
|
|||
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
||||
*
|
||||
* Copyright (C) 2013 Intel, Inc
|
||||
* Copyright (C) 2011,2012 Red Hat, Inc
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* 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, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#include "cc-hostname-entry.h"
|
||||
#include "hostname-helper.h"
|
||||
|
||||
#include <polkit/polkit.h>
|
||||
|
||||
|
||||
G_DEFINE_TYPE (CcHostnameEntry, cc_hostname_entry, GTK_TYPE_ENTRY)
|
||||
|
||||
#define HOSTNAME_ENTRY_PRIVATE(o) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((o), CC_TYPE_HOSTNAME_ENTRY, CcHostnameEntryPrivate))
|
||||
|
||||
#define SET_HOSTNAME_TIMEOUT 1
|
||||
|
||||
struct _CcHostnameEntryPrivate
|
||||
{
|
||||
GDBusProxy *hostnamed_proxy;
|
||||
guint set_hostname_timeout_source_id;
|
||||
};
|
||||
|
||||
static void
|
||||
cc_hostname_entry_set_hostname (CcHostnameEntry *self)
|
||||
{
|
||||
char *hostname;
|
||||
GVariant *variant;
|
||||
GError *error = NULL;
|
||||
const gchar *text;
|
||||
|
||||
text = gtk_entry_get_text (GTK_ENTRY (self));
|
||||
|
||||
g_debug ("Setting PrettyHostname to '%s'", text);
|
||||
variant = g_dbus_proxy_call_sync (self->priv->hostnamed_proxy,
|
||||
"SetPrettyHostname",
|
||||
g_variant_new ("(sb)", text, FALSE),
|
||||
G_DBUS_CALL_FLAGS_NONE,
|
||||
-1, NULL, &error);
|
||||
if (variant == NULL)
|
||||
{
|
||||
g_warning ("Could not set PrettyHostname: %s", error->message);
|
||||
g_error_free (error);
|
||||
error = NULL;
|
||||
}
|
||||
else
|
||||
{
|
||||
g_variant_unref (variant);
|
||||
}
|
||||
|
||||
/* Set the static hostname */
|
||||
hostname = pretty_hostname_to_static (text, FALSE);
|
||||
g_assert (hostname);
|
||||
|
||||
g_debug ("Setting StaticHostname to '%s'", hostname);
|
||||
variant = g_dbus_proxy_call_sync (self->priv->hostnamed_proxy,
|
||||
"SetStaticHostname",
|
||||
g_variant_new ("(sb)", hostname, FALSE),
|
||||
G_DBUS_CALL_FLAGS_NONE,
|
||||
-1, NULL, &error);
|
||||
if (variant == NULL)
|
||||
{
|
||||
g_warning ("Could not set StaticHostname: %s", error->message);
|
||||
g_error_free (error);
|
||||
}
|
||||
else
|
||||
{
|
||||
g_variant_unref (variant);
|
||||
}
|
||||
g_free (hostname);
|
||||
}
|
||||
|
||||
static char *
|
||||
get_hostname_property (CcHostnameEntry *self,
|
||||
const char *property)
|
||||
{
|
||||
CcHostnameEntryPrivate *priv = self->priv;
|
||||
GVariant *variant;
|
||||
char *str;
|
||||
|
||||
if (!priv->hostnamed_proxy)
|
||||
return g_strdup ("");
|
||||
|
||||
variant = g_dbus_proxy_get_cached_property (priv->hostnamed_proxy,
|
||||
property);
|
||||
if (!variant)
|
||||
{
|
||||
GError *error = NULL;
|
||||
GVariant *inner;
|
||||
|
||||
/* Work around systemd-hostname not sending us back
|
||||
* the property value when changing values */
|
||||
variant = g_dbus_proxy_call_sync (priv->hostnamed_proxy,
|
||||
"org.freedesktop.DBus.Properties.Get",
|
||||
g_variant_new ("(ss)", "org.freedesktop.hostname1", property),
|
||||
G_DBUS_CALL_FLAGS_NONE,
|
||||
-1,
|
||||
NULL,
|
||||
&error);
|
||||
if (variant == NULL)
|
||||
{
|
||||
g_warning ("Failed to get property '%s': %s", property, error->message);
|
||||
g_error_free (error);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
g_variant_get (variant, "(v)", &inner);
|
||||
str = g_variant_dup_string (inner, NULL);
|
||||
g_variant_unref (variant);
|
||||
}
|
||||
else
|
||||
{
|
||||
str = g_variant_dup_string (variant, NULL);
|
||||
g_variant_unref (variant);
|
||||
}
|
||||
|
||||
return str;
|
||||
}
|
||||
|
||||
static char *
|
||||
cc_hostname_entry_get_display_hostname (CcHostnameEntry *self)
|
||||
{
|
||||
char *str;
|
||||
|
||||
str = get_hostname_property (self, "PrettyHostname");
|
||||
|
||||
/* Empty strings means that we need to fallback */
|
||||
if (str != NULL &&
|
||||
*str == '\0')
|
||||
{
|
||||
g_free (str);
|
||||
str = get_hostname_property (self, "Hostname");
|
||||
}
|
||||
|
||||
return str;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
set_hostname_timeout (CcHostnameEntry *self)
|
||||
{
|
||||
self->priv->set_hostname_timeout_source_id = 0;
|
||||
|
||||
cc_hostname_entry_set_hostname (self);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static void
|
||||
remove_hostname_timeout (CcHostnameEntry *entry)
|
||||
{
|
||||
CcHostnameEntryPrivate *priv = entry->priv;
|
||||
|
||||
if (priv->set_hostname_timeout_source_id)
|
||||
g_source_remove (priv->set_hostname_timeout_source_id);
|
||||
|
||||
priv->set_hostname_timeout_source_id = 0;
|
||||
}
|
||||
|
||||
static void
|
||||
reset_hostname_timeout (CcHostnameEntry *entry)
|
||||
{
|
||||
remove_hostname_timeout (entry);
|
||||
|
||||
entry->priv->set_hostname_timeout_source_id = g_timeout_add_seconds (SET_HOSTNAME_TIMEOUT,
|
||||
(GSourceFunc) set_hostname_timeout,
|
||||
entry);
|
||||
}
|
||||
|
||||
static void
|
||||
text_changed_cb (CcHostnameEntry *entry)
|
||||
{
|
||||
reset_hostname_timeout (entry);
|
||||
}
|
||||
|
||||
static void
|
||||
cc_hostname_entry_dispose (GObject *object)
|
||||
{
|
||||
CcHostnameEntry *entry = CC_HOSTNAME_ENTRY (object);
|
||||
CcHostnameEntryPrivate *priv = entry->priv;
|
||||
|
||||
if (priv->set_hostname_timeout_source_id)
|
||||
{
|
||||
remove_hostname_timeout (entry);
|
||||
set_hostname_timeout (entry);
|
||||
}
|
||||
|
||||
g_clear_object (&priv->hostnamed_proxy);
|
||||
|
||||
G_OBJECT_CLASS (cc_hostname_entry_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
cc_hostname_entry_constructed (GObject *self)
|
||||
{
|
||||
CcHostnameEntryPrivate *priv = CC_HOSTNAME_ENTRY (self)->priv;
|
||||
GError *error = NULL;
|
||||
GPermission *permission;
|
||||
char *str;
|
||||
|
||||
permission = polkit_permission_new_sync ("org.freedesktop.hostname1.set-static-hostname",
|
||||
NULL, NULL, NULL);
|
||||
|
||||
/* Is hostnamed installed? */
|
||||
if (permission == NULL)
|
||||
{
|
||||
g_debug ("Will not show hostname, hostnamed not installed");
|
||||
|
||||
gtk_widget_set_sensitive (GTK_WIDGET (self), FALSE);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (g_permission_get_allowed (permission))
|
||||
gtk_widget_set_sensitive (GTK_WIDGET (self), TRUE);
|
||||
else
|
||||
{
|
||||
g_debug ("Not allowed to change the hostname");
|
||||
gtk_widget_set_sensitive (GTK_WIDGET (self), FALSE);
|
||||
}
|
||||
|
||||
gtk_widget_set_sensitive (GTK_WIDGET (self),
|
||||
g_permission_get_allowed (permission));
|
||||
|
||||
priv->hostnamed_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
|
||||
G_DBUS_PROXY_FLAGS_NONE,
|
||||
NULL,
|
||||
"org.freedesktop.hostname1",
|
||||
"/org/freedesktop/hostname1",
|
||||
"org.freedesktop.hostname1",
|
||||
NULL,
|
||||
&error);
|
||||
|
||||
/* This could only happen if the policy file was installed
|
||||
* but not hostnamed, which points to a system bug */
|
||||
if (priv->hostnamed_proxy == NULL)
|
||||
{
|
||||
g_debug ("Couldn't get hostnamed to start, bailing: %s", error->message);
|
||||
g_error_free (error);
|
||||
return;
|
||||
}
|
||||
|
||||
str = cc_hostname_entry_get_display_hostname (CC_HOSTNAME_ENTRY (self));
|
||||
|
||||
if (str != NULL)
|
||||
gtk_entry_set_text (GTK_ENTRY (self), str);
|
||||
else
|
||||
gtk_entry_set_text (GTK_ENTRY (self), "");
|
||||
g_free (str);
|
||||
|
||||
g_signal_connect (G_OBJECT (self), "changed", G_CALLBACK (text_changed_cb),
|
||||
self);
|
||||
}
|
||||
|
||||
static void
|
||||
cc_hostname_entry_class_init (CcHostnameEntryClass *klass)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
g_type_class_add_private (klass, sizeof (CcHostnameEntryPrivate));
|
||||
|
||||
object_class->constructed = cc_hostname_entry_constructed;
|
||||
object_class->dispose = cc_hostname_entry_dispose;
|
||||
}
|
||||
|
||||
static void
|
||||
cc_hostname_entry_init (CcHostnameEntry *self)
|
||||
{
|
||||
self->priv = HOSTNAME_ENTRY_PRIVATE (self);
|
||||
}
|
||||
|
||||
CcHostnameEntry *
|
||||
cc_hostname_entry_new (void)
|
||||
{
|
||||
return g_object_new (CC_TYPE_HOSTNAME_ENTRY, NULL);
|
||||
}
|
||||
|
||||
gchar*
|
||||
cc_hostname_entry_get_hostname (CcHostnameEntry *entry)
|
||||
{
|
||||
return get_hostname_property (entry, "Hostname");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue