]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-local-xmpp-assistant-widget.c
a0e4721032a56a085a890f621b14225fcee837ad
[empathy.git] / libempathy-gtk / empathy-local-xmpp-assistant-widget.c
1 /*
2  * empathy-local-xmpp-assistant-widget.h - Source for
3  * EmpathyLocalXmppAssistantWidget
4  *
5  * Copyright (C) 2012 - Collabora Ltd.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with This library. If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #include "config.h"
22 #include "empathy-local-xmpp-assistant-widget.h"
23
24 #include <glib/gi18n-lib.h>
25
26 #if HAVE_EDS
27 #include <libebook/e-book.h>
28 #endif
29
30 #include <libempathy/empathy-utils.h>
31
32 #include <libempathy-gtk/empathy-account-widget.h>
33 #include <libempathy-gtk/empathy-ui-utils.h>
34
35 #define DEBUG_FLAG EMPATHY_DEBUG_ACCOUNT
36 #include <libempathy/empathy-debug.h>
37
38 G_DEFINE_TYPE (EmpathyLocalXmppAssistantWidget,
39     empathy_local_xmpp_assistant_widget, GTK_TYPE_GRID)
40
41 enum {
42   SIG_VALID = 1,
43   LAST_SIGNAL
44 };
45
46 static gulong signals[LAST_SIGNAL] = { 0, };
47
48 struct _EmpathyLocalXmppAssistantWidgetPrivate
49 {
50   EmpathyAccountSettings  *settings;
51 };
52
53 static void
54 empathy_local_xmpp_assistant_widget_init (EmpathyLocalXmppAssistantWidget *self)
55 {
56   self->priv = G_TYPE_INSTANCE_GET_PRIVATE ((self),
57       EMPATHY_TYPE_LOCAL_XMPP_ASSISTANT_WIDGET,
58       EmpathyLocalXmppAssistantWidgetPrivate);
59 }
60
61 static EmpathyAccountSettings *
62 create_salut_account_settings (void)
63 {
64   EmpathyAccountSettings  *settings;
65 #if HAVE_EDS
66   EBook *book;
67   EContact *contact;
68   gchar *nickname = NULL;
69   gchar *first_name = NULL;
70   gchar *last_name = NULL;
71   gchar *email = NULL;
72   gchar *jid = NULL;
73   GError *error = NULL;
74 #endif
75
76   settings = empathy_account_settings_new ("salut", "local-xmpp", NULL,
77       _("People nearby"));
78
79 #if HAVE_EDS
80   /* Get self EContact from EDS */
81   if (!e_book_get_self (&contact, &book, &error))
82     {
83       DEBUG ("Failed to get self econtact: %s", error->message);
84       g_error_free (error);
85       return settings;
86     }
87
88   nickname = e_contact_get (contact, E_CONTACT_NICKNAME);
89   first_name = e_contact_get (contact, E_CONTACT_GIVEN_NAME);
90   last_name = e_contact_get (contact, E_CONTACT_FAMILY_NAME);
91   email = e_contact_get (contact, E_CONTACT_EMAIL_1);
92   jid = e_contact_get (contact, E_CONTACT_IM_JABBER_HOME_1);
93
94   if (!tp_strdiff (nickname, "nickname"))
95     {
96       g_free (nickname);
97       nickname = NULL;
98     }
99
100   DEBUG ("Salut account created:\nnickname=%s\nfirst-name=%s\n"
101      "last-name=%s\nemail=%s\njid=%s\n",
102      nickname, first_name, last_name, email, jid);
103
104   empathy_account_settings_set_string (settings,
105       "nickname", nickname ? nickname : "");
106   empathy_account_settings_set_string (settings,
107       "first-name", first_name ? first_name : "");
108   empathy_account_settings_set_string (settings,
109       "last-name", last_name ? last_name : "");
110   empathy_account_settings_set_string (settings, "email", email ? email : "");
111   empathy_account_settings_set_string (settings, "jid", jid ? jid : "");
112
113   g_free (nickname);
114   g_free (first_name);
115   g_free (last_name);
116   g_free (email);
117   g_free (jid);
118   g_object_unref (contact);
119   g_object_unref (book);
120 #endif
121
122   return settings;
123 }
124
125 static void
126 handle_apply_cb (EmpathyAccountWidget *widget_object,
127     gboolean is_valid,
128     EmpathyLocalXmppAssistantWidget *self)
129 {
130   g_signal_emit (self, signals[SIG_VALID], 0, is_valid);
131 }
132
133 static void
134 empathy_local_xmpp_assistant_widget_constructed (GObject *object)
135 {
136   EmpathyLocalXmppAssistantWidget *self = (EmpathyLocalXmppAssistantWidget *)
137     object;
138   GtkWidget *w;
139   GdkPixbuf *pix;
140   GtkWidget *account_widget;
141   EmpathyAccountWidget *widget_object;
142   gchar *markup;
143
144   G_OBJECT_CLASS (empathy_local_xmpp_assistant_widget_parent_class)->
145     constructed (object);
146
147   gtk_container_set_border_width (GTK_CONTAINER (self), 12);
148
149   w = gtk_label_new (NULL);
150   markup = g_strdup_printf ("%s (<span style=\"italic\">%s</span>).",
151       _("Empathy can automatically discover and chat with the people "
152         "connected on the same network as you. "
153         "If you want to use this feature, please check that the "
154         "details below are correct. "
155         "You can easily change these details later or disable this feature "
156         "by using the 'Accounts' dialog"),
157       _("Edit->Accounts"));
158   gtk_label_set_markup (GTK_LABEL (w), markup);
159   g_free (markup);
160   gtk_misc_set_alignment (GTK_MISC (w), 0, 0.5);
161   gtk_label_set_line_wrap (GTK_LABEL (w), TRUE);
162   gtk_grid_attach (GTK_GRID (self), w, 0, 0, 1, 1);
163   gtk_widget_show (w);
164
165   pix = empathy_pixbuf_from_icon_name_sized ("im-local-xmpp", 80);
166   w = gtk_image_new_from_pixbuf (pix);
167   gtk_grid_attach (GTK_GRID (self), w, 1, 0, 1, 1);
168   gtk_widget_show (w);
169
170   g_object_unref (pix);
171
172   self->priv->settings = create_salut_account_settings ();
173
174   widget_object = empathy_account_widget_new_for_protocol (self->priv->settings,
175       TRUE);
176   empathy_account_widget_hide_buttons (widget_object);
177
178   account_widget = empathy_account_widget_get_widget (widget_object);
179
180   g_signal_connect (widget_object, "handle-apply",
181       G_CALLBACK (handle_apply_cb), self);
182
183   gtk_grid_attach (GTK_GRID (self), account_widget, 0, 1, 2, 1);
184   gtk_widget_show (account_widget);
185 }
186
187 static void
188 empathy_local_xmpp_assistant_widget_dispose (GObject *object)
189 {
190   EmpathyLocalXmppAssistantWidget *self = (EmpathyLocalXmppAssistantWidget *)
191     object;
192
193   g_clear_object (&self->priv->settings);
194
195   G_OBJECT_CLASS (empathy_local_xmpp_assistant_widget_parent_class)->
196     dispose (object);
197 }
198
199 static void
200 empathy_local_xmpp_assistant_widget_class_init (
201     EmpathyLocalXmppAssistantWidgetClass *klass)
202 {
203   GObjectClass *object_class = G_OBJECT_CLASS (klass);
204
205   object_class->constructed = empathy_local_xmpp_assistant_widget_constructed;
206   object_class->dispose = empathy_local_xmpp_assistant_widget_dispose;
207
208   signals[SIG_VALID] =
209       g_signal_new ("valid",
210           G_TYPE_FROM_CLASS (klass),
211           G_SIGNAL_RUN_LAST, 0, NULL, NULL,
212           g_cclosure_marshal_generic,
213           G_TYPE_NONE, 1, G_TYPE_BOOLEAN);
214
215   g_type_class_add_private (object_class,
216       sizeof (EmpathyLocalXmppAssistantWidgetPrivate));
217 }
218
219 GtkWidget *
220 empathy_local_xmpp_assistant_widget_new ()
221 {
222   return g_object_new (EMPATHY_TYPE_LOCAL_XMPP_ASSISTANT_WIDGET,
223       "row-spacing", 6,
224       NULL);
225 }
226
227 static void
228 account_enabled_cb (GObject *source,
229     GAsyncResult *result,
230     gpointer user_data)
231 {
232   TpAccount *account = TP_ACCOUNT (source);
233   GError *error = NULL;
234   TpAccountManager *account_mgr;
235
236   if (!tp_account_set_enabled_finish (account, result, &error))
237     {
238       DEBUG ("Failed to enable account: %s", error->message);
239       g_error_free (error);
240       return;
241     }
242
243   account_mgr = tp_account_manager_dup ();
244
245   empathy_connect_new_account (account, account_mgr);
246
247   g_object_unref (account_mgr);
248 }
249
250 static void
251 apply_account_cb (GObject *source,
252     GAsyncResult *result,
253     gpointer user_data)
254 {
255   EmpathyAccountSettings *settings = EMPATHY_ACCOUNT_SETTINGS (source);
256   TpAccount *account;
257   GError *error = NULL;
258
259   if (!empathy_account_settings_apply_finish (settings, result, NULL, &error))
260     {
261       DEBUG ("Failed to create account: %s", error->message);
262       g_error_free (error);
263       return;
264     }
265
266   /* enable the newly created account */
267   account = empathy_account_settings_get_account (settings);
268   tp_account_set_enabled_async (account, TRUE, account_enabled_cb, NULL);
269 }
270
271 void
272 empathy_local_xmpp_assistant_widget_create_account (
273     EmpathyLocalXmppAssistantWidget *self)
274 {
275   empathy_account_settings_apply_async (self->priv->settings,
276       apply_account_cb, NULL);
277 }
278
279 gboolean
280 empathy_local_xmpp_assistant_widget_should_create_account (
281     TpAccountManager *manager)
282 {
283   gboolean salut_created = FALSE;
284   GList *accounts, *l;
285
286   accounts = tp_account_manager_get_valid_accounts (manager);
287
288   for (l = accounts; l != NULL;  l = g_list_next (l))
289     {
290       TpAccount *account = TP_ACCOUNT (l->data);
291
292       if (!tp_strdiff (tp_account_get_protocol (account), "local-xmpp"))
293         {
294           salut_created = TRUE;
295           break;
296         }
297     }
298
299   g_list_free (accounts);
300
301   return !salut_created;
302 }