]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-individual-dialogs.c
include telepathy-glib.h
[empathy.git] / libempathy-gtk / empathy-individual-dialogs.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2010 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #include <config.h>
23
24 #include <string.h>
25 #include <stdlib.h>
26
27 #include <gtk/gtk.h>
28 #include <glib/gi18n-lib.h>
29
30 #include <telepathy-glib/telepathy-glib.h>
31 #include <folks/folks.h>
32 #include <folks/folks-telepathy.h>
33
34 #include <libempathy/empathy-individual-manager.h>
35 #include <libempathy/empathy-utils.h>
36
37 #include "empathy-individual-dialogs.h"
38 #include "empathy-contact-widget.h"
39 #include "empathy-ui-utils.h"
40
41 #define BULLET_POINT "\342\200\242"
42
43 static GtkWidget *new_individual_dialog = NULL;
44
45 /*
46  *  New contact dialog
47  */
48
49 static void
50 can_add_contact_to_account (TpAccount *account,
51     EmpathyAccountChooserFilterResultCallback callback,
52     gpointer callback_data,
53     gpointer user_data)
54 {
55   EmpathyIndividualManager *individual_manager;
56   TpConnection *connection;
57   gboolean result;
58
59   connection = tp_account_get_connection (account);
60   if (connection == NULL)
61     {
62       callback (FALSE, callback_data);
63       return;
64     }
65
66   individual_manager = empathy_individual_manager_dup_singleton ();
67   result = empathy_connection_can_add_personas (connection);
68   g_object_unref (individual_manager);
69
70   callback (result, callback_data);
71 }
72
73 static void
74 new_individual_response_cb (GtkDialog *dialog,
75     gint response,
76     GtkWidget *contact_widget)
77 {
78   EmpathyIndividualManager *individual_manager;
79   EmpathyContact *contact;
80
81   individual_manager = empathy_individual_manager_dup_singleton ();
82   contact = empathy_contact_widget_get_contact (contact_widget);
83
84   if (contact && response == GTK_RESPONSE_OK)
85     empathy_individual_manager_add_from_contact (individual_manager, contact);
86
87   new_individual_dialog = NULL;
88   gtk_widget_destroy (GTK_WIDGET (dialog));
89   g_object_unref (individual_manager);
90 }
91
92 void
93 empathy_new_individual_dialog_show (GtkWindow *parent)
94 {
95   empathy_new_individual_dialog_show_with_individual (parent, NULL);
96 }
97
98 void
99 empathy_new_individual_dialog_show_with_individual (GtkWindow *parent,
100     FolksIndividual *individual)
101 {
102   GtkWidget *dialog;
103   GtkWidget *button;
104   EmpathyContact *contact = NULL;
105   GtkWidget *contact_widget;
106
107   g_return_if_fail (individual == NULL || FOLKS_IS_INDIVIDUAL (individual));
108
109   if (new_individual_dialog)
110     {
111       gtk_window_present (GTK_WINDOW (new_individual_dialog));
112       return;
113     }
114
115   /* Create dialog */
116   dialog = gtk_dialog_new ();
117   gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
118   gtk_window_set_title (GTK_WINDOW (dialog), _("New Contact"));
119
120   /* Cancel button */
121   button = gtk_button_new_with_label (GTK_STOCK_CANCEL);
122   gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
123   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button,
124       GTK_RESPONSE_CANCEL);
125   gtk_widget_show (button);
126
127   /* Add button */
128   button = gtk_button_new_with_label (GTK_STOCK_ADD);
129   gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
130   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, GTK_RESPONSE_OK);
131   gtk_widget_show (button);
132
133   /* Contact info widget */
134   if (individual != NULL)
135     contact = empathy_contact_dup_from_folks_individual (individual);
136
137   contact_widget = empathy_contact_widget_new (contact);
138   gtk_container_set_border_width (GTK_CONTAINER (contact_widget), 8);
139   gtk_box_pack_start (
140       GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
141       contact_widget, TRUE, TRUE, 0);
142   empathy_contact_widget_set_account_filter (contact_widget,
143       can_add_contact_to_account, NULL);
144   gtk_widget_show (contact_widget);
145
146   new_individual_dialog = dialog;
147
148   g_signal_connect (dialog, "response", G_CALLBACK (new_individual_response_cb),
149       contact_widget);
150
151   if (parent != NULL)
152     gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
153
154   gtk_widget_show (dialog);
155
156   tp_clear_object (&contact);
157 }
158
159 static char *
160 contact_pretty_name (TpContact *contact)
161 {
162   const char *alias = tp_contact_get_alias (contact);
163   const char *identifier = tp_contact_get_identifier (contact);
164
165   if (tp_strdiff (alias, identifier))
166     return g_strdup_printf ("%s (%s)", alias, identifier);
167   else
168     return g_strdup (alias);
169 }
170
171 /*
172  * Block contact dialog
173  */
174 gboolean
175 empathy_block_individual_dialog_show (GtkWindow *parent,
176     FolksIndividual *individual,
177     GdkPixbuf *avatar,
178     gboolean *abusive)
179 {
180   GtkWidget *dialog;
181   GtkWidget *abusive_check = NULL;
182   GeeSet *personas;
183   GeeIterator *iter;
184   GString *text = g_string_new ("");
185   GString *blocked_str = g_string_new ("");
186   GString *notblocked_str = g_string_new ("");
187   guint npersonas_blocked = 0, npersonas_notblocked = 0;
188   gboolean can_report_abuse = FALSE;
189   int res;
190
191   dialog = gtk_message_dialog_new (parent,
192       GTK_DIALOG_MODAL, GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE,
193       _("Block %s?"),
194       folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)));
195
196   if (avatar != NULL)
197     {
198       GtkWidget *image = gtk_image_new_from_pixbuf (avatar);
199       gtk_message_dialog_set_image (GTK_MESSAGE_DIALOG (dialog), image);
200       gtk_widget_show (image);
201     }
202
203   /* build a list of personas that support blocking */
204   personas = folks_individual_get_personas (individual);
205   iter = gee_iterable_iterator (GEE_ITERABLE (personas));
206   while (gee_iterator_next (iter))
207     {
208       TpfPersona *persona = gee_iterator_get (iter);
209       TpContact *contact;
210       GString *s;
211       char *str;
212       TpConnection *conn;
213
214       if (!TPF_IS_PERSONA (persona))
215           goto while_finish;
216
217       contact = tpf_persona_get_contact (persona);
218       if (contact == NULL)
219         goto while_finish;
220
221       conn = tp_contact_get_connection (contact);
222
223       if (tp_proxy_has_interface_by_id (conn,
224             TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_BLOCKING))
225         {
226           s = blocked_str;
227           npersonas_blocked++;
228         }
229       else
230         {
231           s = notblocked_str;
232           npersonas_notblocked++;
233         }
234
235       if (tp_connection_can_report_abusive (conn))
236         can_report_abuse = TRUE;
237
238       str = contact_pretty_name (contact);
239       g_string_append_printf (s, "\n " BULLET_POINT " %s", str);
240       g_free (str);
241
242 while_finish:
243       g_clear_object (&persona);
244     }
245   g_clear_object (&iter);
246
247   g_string_append_printf (text,
248       _("Are you sure you want to block '%s' from contacting you again?"),
249       folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)));
250
251   if (npersonas_blocked > 0)
252     g_string_append_printf (text, "\n\n%s\n%s",
253         ngettext ("The following identity will be blocked:",
254                   "The following identities will be blocked:",
255                   npersonas_blocked),
256         blocked_str->str);
257
258   if (npersonas_notblocked > 0)
259     g_string_append_printf (text, "\n\n%s\n%s",
260         ngettext ("The following identity can not be blocked:",
261                   "The following identities can not be blocked:",
262                   npersonas_notblocked),
263         notblocked_str->str);
264
265   gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
266     "%s", text->str);
267
268   gtk_dialog_add_buttons (GTK_DIALOG (dialog),
269       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
270       _("_Block"), GTK_RESPONSE_REJECT,
271       NULL);
272
273   if (can_report_abuse)
274     {
275       GtkWidget *vbox;
276
277       vbox = gtk_message_dialog_get_message_area (GTK_MESSAGE_DIALOG (dialog));
278       abusive_check = gtk_check_button_new_with_mnemonic (
279           ngettext ("_Report this contact as abusive",
280                     "_Report these contacts as abusive",
281                     npersonas_blocked));
282
283       gtk_box_pack_start (GTK_BOX (vbox), abusive_check, FALSE, TRUE, 0);
284       gtk_widget_show (abusive_check);
285     }
286
287   g_string_free (text, TRUE);
288   g_string_free (blocked_str, TRUE);
289   g_string_free (notblocked_str, TRUE);
290
291   res = gtk_dialog_run (GTK_DIALOG (dialog));
292
293   if (abusive != NULL)
294     {
295       if (abusive_check != NULL)
296         *abusive = gtk_toggle_button_get_active (
297             GTK_TOGGLE_BUTTON (abusive_check));
298       else
299         *abusive = FALSE;
300     }
301
302   gtk_widget_destroy (dialog);
303
304   return res == GTK_RESPONSE_REJECT;
305 }