Updated Slovak translation
[empathy-mirror.git] / libempathy-gtk / empathy-notify-manager.c
blobbbe3a1a4c0c3d7b0061445f3a92de4f0e723f90e
1 /* * Copyright (C) 2009 Collabora Ltd.
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 * Authors: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
20 #include "config.h"
21 #include "empathy-notify-manager.h"
23 #include <libnotify/notify.h>
24 #include <tp-account-widgets/tpaw-pixbuf-utils.h>
26 #include "empathy-gsettings.h"
27 #include "empathy-ui-utils.h"
28 #include "empathy-utils.h"
30 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
31 #include "empathy-debug.h"
33 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyNotifyManager)
35 typedef struct
37 /* owned (gchar *) => TRUE */
38 GHashTable *capabilities;
39 TpAccountManager *account_manager;
40 GSettings *gsettings_notif;
41 } EmpathyNotifyManagerPriv;
43 G_DEFINE_TYPE (EmpathyNotifyManager, empathy_notify_manager, G_TYPE_OBJECT);
45 static EmpathyNotifyManager *notify_manager = NULL;
47 static GObject *
48 notify_manager_constructor (GType type,
49 guint n_construct_params,
50 GObjectConstructParam *construct_params)
52 GObject *retval;
54 if (notify_manager != NULL)
55 return g_object_ref (notify_manager);
57 retval = G_OBJECT_CLASS (empathy_notify_manager_parent_class)->constructor
58 (type, n_construct_params, construct_params);
60 notify_manager = EMPATHY_NOTIFY_MANAGER (retval);
61 g_object_add_weak_pointer (retval, (gpointer) &notify_manager);
63 return retval;
66 static void
67 notify_manager_dispose (GObject *object)
69 EmpathyNotifyManagerPriv *priv = GET_PRIV (object);
71 if (priv->account_manager != NULL)
73 g_object_unref (priv->account_manager);
74 priv->account_manager = NULL;
77 tp_clear_object (&priv->gsettings_notif);
79 G_OBJECT_CLASS (empathy_notify_manager_parent_class)->dispose (object);
82 static void
83 notify_manager_finalize (GObject *object)
85 EmpathyNotifyManagerPriv *priv = GET_PRIV (object);
87 g_hash_table_unref (priv->capabilities);
89 G_OBJECT_CLASS (empathy_notify_manager_parent_class)->finalize (object);
92 static void
93 empathy_notify_manager_class_init (EmpathyNotifyManagerClass *klass)
95 GObjectClass *object_class = G_OBJECT_CLASS (klass);
97 object_class->dispose = notify_manager_dispose;
98 object_class->finalize = notify_manager_finalize;
99 object_class->constructor = notify_manager_constructor;
101 g_type_class_add_private (object_class, sizeof (EmpathyNotifyManagerPriv));
104 static void
105 account_manager_prepared_cb (GObject *source_object,
106 GAsyncResult *result,
107 gpointer user_data)
109 TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object);
110 GError *error = NULL;
112 if (!tp_proxy_prepare_finish (account_manager, result, &error))
114 DEBUG ("Failed to prepare account manager: %s", error->message);
115 g_error_free (error);
116 return;
120 static void
121 empathy_notify_manager_init (EmpathyNotifyManager *self)
123 EmpathyNotifyManagerPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
124 EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerPriv);
125 GList *list, *l;
127 self->priv = priv;
129 priv->gsettings_notif = g_settings_new (EMPATHY_PREFS_NOTIFICATIONS_SCHEMA);
131 priv->capabilities = g_hash_table_new_full (g_str_hash, g_str_equal, g_free,
132 NULL);
134 /* fetch capabilities */
135 list = notify_get_server_caps ();
136 for (l = list; l != NULL; l = g_list_next (l))
138 gchar *cap = l->data;
140 DEBUG ("add capability: %s", cap);
141 /* owernship of the string is transfered to the hash table */
142 g_hash_table_insert (priv->capabilities, cap, GUINT_TO_POINTER (TRUE));
144 g_list_free (list);
146 priv->account_manager = tp_account_manager_dup ();
148 tp_proxy_prepare_async (priv->account_manager, NULL,
149 account_manager_prepared_cb, self);
152 EmpathyNotifyManager *
153 empathy_notify_manager_dup_singleton (void)
155 return g_object_new (EMPATHY_TYPE_NOTIFY_MANAGER, NULL);
158 gboolean
159 empathy_notify_manager_has_capability (EmpathyNotifyManager *self,
160 const gchar *cap)
162 EmpathyNotifyManagerPriv *priv = GET_PRIV (self);
164 return g_hash_table_lookup (priv->capabilities, cap) != NULL;
167 GdkPixbuf *
168 empathy_notify_manager_get_pixbuf_for_notification (EmpathyNotifyManager *self,
169 EmpathyContact *contact,
170 const char *icon_name)
172 GdkPixbuf *pixbuf = NULL;
174 if (contact != NULL)
175 pixbuf = empathy_pixbuf_avatar_from_contact_scaled (contact, 48, 48);
177 if (pixbuf == NULL)
178 pixbuf = tpaw_pixbuf_from_icon_name_sized (icon_name, 48);
180 return pixbuf;
183 gboolean
184 empathy_notify_manager_notification_is_enabled (EmpathyNotifyManager *self)
186 EmpathyNotifyManagerPriv *priv = GET_PRIV (self);
187 TpConnectionPresenceType presence;
189 if (!g_settings_get_boolean (priv->gsettings_notif,
190 EMPATHY_PREFS_NOTIFICATIONS_ENABLED))
191 return FALSE;
193 if (!tp_proxy_is_prepared (priv->account_manager,
194 TP_ACCOUNT_MANAGER_FEATURE_CORE))
196 DEBUG ("account manager is not ready yet; display the notification");
197 return TRUE;
200 presence = tp_account_manager_get_most_available_presence (
201 priv->account_manager,
202 NULL, NULL);
204 if (presence != TP_CONNECTION_PRESENCE_TYPE_AVAILABLE &&
205 presence != TP_CONNECTION_PRESENCE_TYPE_UNSET)
207 if (g_settings_get_boolean (priv->gsettings_notif,
208 EMPATHY_PREFS_NOTIFICATIONS_DISABLED_AWAY))
209 return FALSE;
212 return TRUE;
215 NotifyNotification *
216 empathy_notify_manager_create_notification (const gchar *summary,
217 const char *body,
218 const gchar *icon)
220 NotifyNotification *notification;
222 notification = notify_notification_new (summary, body, icon);
224 notify_notification_set_hint (notification,
225 EMPATHY_NOTIFY_MANAGER_CAP_DESKTOP_ENTRY,
226 g_variant_new_string ("empathy"));
228 return notification;