]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-individual-dialogs.c
tp-file: remove EmpathyTpFile
[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/util.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 #include <libempathy/empathy-contact-manager.h>
37
38 #include "empathy-individual-dialogs.h"
39 #include "empathy-contact-widget.h"
40 #include "empathy-ui-utils.h"
41
42 #define BULLET_POINT "\342\200\242"
43
44 static GtkWidget *new_individual_dialog = NULL;
45
46 /*
47  *  New contact dialog
48  */
49
50 static void
51 can_add_contact_to_account (TpAccount *account,
52     EmpathyAccountChooserFilterResultCallback callback,
53     gpointer callback_data,
54     gpointer user_data)
55 {
56   EmpathyIndividualManager *individual_manager;
57   TpConnection *connection;
58   gboolean result;
59
60   connection = tp_account_get_connection (account);
61   if (connection == NULL)
62     {
63       callback (FALSE, callback_data);
64       return;
65     }
66
67   individual_manager = empathy_individual_manager_dup_singleton ();
68   result = empathy_connection_can_add_personas (connection);
69   g_object_unref (individual_manager);
70
71   callback (result, callback_data);
72 }
73
74 static void
75 new_individual_response_cb (GtkDialog *dialog,
76     gint response,
77     GtkWidget *contact_widget)
78 {
79   EmpathyIndividualManager *individual_manager;
80   EmpathyContact *contact;
81
82   individual_manager = empathy_individual_manager_dup_singleton ();
83   contact = empathy_contact_widget_get_contact (contact_widget);
84
85   if (contact && response == GTK_RESPONSE_OK)
86     empathy_individual_manager_add_from_contact (individual_manager, contact);
87
88   new_individual_dialog = NULL;
89   gtk_widget_destroy (GTK_WIDGET (dialog));
90   g_object_unref (individual_manager);
91 }
92
93 void
94 empathy_new_individual_dialog_show (GtkWindow *parent)
95 {
96   empathy_new_individual_dialog_show_with_individual (parent, NULL);
97 }
98
99 void
100 empathy_new_individual_dialog_show_with_individual (GtkWindow *parent,
101     FolksIndividual *individual)
102 {
103   GtkWidget *dialog;
104   GtkWidget *button;
105   EmpathyContact *contact = NULL;
106   GtkWidget *contact_widget;
107
108   g_return_if_fail (individual == NULL || FOLKS_IS_INDIVIDUAL (individual));
109
110   if (new_individual_dialog)
111     {
112       gtk_window_present (GTK_WINDOW (new_individual_dialog));
113       return;
114     }
115
116   /* Create dialog */
117   dialog = gtk_dialog_new ();
118   gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
119   gtk_window_set_title (GTK_WINDOW (dialog), _("New Contact"));
120
121   /* Cancel button */
122   button = gtk_button_new_with_label (GTK_STOCK_CANCEL);
123   gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
124   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button,
125       GTK_RESPONSE_CANCEL);
126   gtk_widget_show (button);
127
128   /* Add button */
129   button = gtk_button_new_with_label (GTK_STOCK_ADD);
130   gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
131   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, GTK_RESPONSE_OK);
132   gtk_widget_show (button);
133
134   /* Contact info widget */
135   if (individual != NULL)
136     contact = empathy_contact_dup_from_folks_individual (individual);
137
138   contact_widget = empathy_contact_widget_new (contact,
139       EMPATHY_CONTACT_WIDGET_EDIT_ALIAS |
140       EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT |
141       EMPATHY_CONTACT_WIDGET_EDIT_ID |
142       EMPATHY_CONTACT_WIDGET_EDIT_GROUPS);
143   gtk_container_set_border_width (GTK_CONTAINER (contact_widget), 8);
144   gtk_box_pack_start (
145       GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
146       contact_widget, TRUE, TRUE, 0);
147   empathy_contact_widget_set_account_filter (contact_widget,
148       can_add_contact_to_account, NULL);
149   gtk_widget_show (contact_widget);
150
151   new_individual_dialog = dialog;
152
153   g_signal_connect (dialog, "response", G_CALLBACK (new_individual_response_cb),
154       contact_widget);
155
156   if (parent != NULL)
157     gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
158
159   gtk_widget_show (dialog);
160
161   tp_clear_object (&contact);
162 }
163
164 static char *
165 contact_pretty_name (TpContact *contact)
166 {
167   const char *alias = tp_contact_get_alias (contact);
168   const char *identifier = tp_contact_get_identifier (contact);
169
170   if (tp_strdiff (alias, identifier))
171     return g_strdup_printf ("%s (%s)", alias, identifier);
172   else
173     return g_strdup (alias);
174 }
175
176 /*
177  * Block contact dialog
178  */
179 gboolean
180 empathy_block_individual_dialog_show (GtkWindow *parent,
181     FolksIndividual *individual,
182     GdkPixbuf *avatar,
183     gboolean *abusive)
184 {
185   EmpathyContactManager *contact_manager =
186     empathy_contact_manager_dup_singleton ();
187   GtkWidget *dialog;
188   GtkWidget *abusive_check = NULL;
189   GeeSet *personas;
190   GeeIterator *iter;
191   GString *text = g_string_new ("");
192   GString *blocked_str = g_string_new ("");
193   GString *notblocked_str = g_string_new ("");
194   guint npersonas_blocked = 0, npersonas_notblocked = 0;
195   gboolean can_report_abuse = FALSE;
196   int res;
197
198   dialog = gtk_message_dialog_new (parent,
199       GTK_DIALOG_MODAL, GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE,
200       _("Block %s?"),
201       folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)));
202
203   if (avatar != NULL)
204     {
205       GtkWidget *image = gtk_image_new_from_pixbuf (avatar);
206       gtk_message_dialog_set_image (GTK_MESSAGE_DIALOG (dialog), image);
207       gtk_widget_show (image);
208     }
209
210   /* build a list of personas that support blocking */
211   personas = folks_individual_get_personas (individual);
212   iter = gee_iterable_iterator (GEE_ITERABLE (personas));
213   while (gee_iterator_next (iter))
214     {
215       TpfPersona *persona = gee_iterator_get (iter);
216       TpContact *contact;
217       EmpathyContactListFlags flags;
218       GString *s;
219       char *str;
220
221       if (!TPF_IS_PERSONA (persona))
222           goto while_finish;
223
224       contact = tpf_persona_get_contact (persona);
225       if (contact == NULL)
226         goto while_finish;
227
228       flags = empathy_contact_manager_get_flags_for_connection (
229           contact_manager, tp_contact_get_connection (contact));
230
231       if (flags & EMPATHY_CONTACT_LIST_CAN_BLOCK)
232         {
233           s = blocked_str;
234           npersonas_blocked++;
235         }
236       else
237         {
238           s = notblocked_str;
239           npersonas_notblocked++;
240         }
241
242       if (flags & EMPATHY_CONTACT_LIST_CAN_REPORT_ABUSIVE)
243         can_report_abuse = TRUE;
244
245       str = contact_pretty_name (contact);
246       g_string_append_printf (s, "\n " BULLET_POINT " %s", str);
247       g_free (str);
248
249 while_finish:
250       g_clear_object (&persona);
251     }
252   g_clear_object (&iter);
253
254   g_string_append_printf (text,
255       _("Are you sure you want to block '%s' from contacting you again?"),
256       folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)));
257
258   if (npersonas_blocked > 0)
259     g_string_append_printf (text, "\n\n%s\n%s",
260         ngettext ("The following identity will be blocked:",
261                   "The following identities will be blocked:",
262                   npersonas_blocked),
263         blocked_str->str);
264
265   if (npersonas_notblocked > 0)
266     g_string_append_printf (text, "\n\n%s\n%s",
267         ngettext ("The following identity can not be blocked:",
268                   "The following identities can not be blocked:",
269                   npersonas_notblocked),
270         notblocked_str->str);
271
272   gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
273     "%s", text->str);
274
275   gtk_dialog_add_buttons (GTK_DIALOG (dialog),
276       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
277       _("_Block"), GTK_RESPONSE_REJECT,
278       NULL);
279
280   if (can_report_abuse)
281     {
282       GtkWidget *vbox;
283
284       vbox = gtk_message_dialog_get_message_area (GTK_MESSAGE_DIALOG (dialog));
285       abusive_check = gtk_check_button_new_with_mnemonic (
286           ngettext ("_Report this contact as abusive",
287                     "_Report these contacts as abusive",
288                     npersonas_blocked));
289
290       gtk_box_pack_start (GTK_BOX (vbox), abusive_check, FALSE, TRUE, 0);
291       gtk_widget_show (abusive_check);
292     }
293
294   g_object_unref (contact_manager);
295   g_string_free (text, TRUE);
296   g_string_free (blocked_str, TRUE);
297   g_string_free (notblocked_str, TRUE);
298
299   res = gtk_dialog_run (GTK_DIALOG (dialog));
300
301   if (abusive != NULL)
302     {
303       if (abusive_check != NULL)
304         *abusive = gtk_toggle_button_get_active (
305             GTK_TOGGLE_BUTTON (abusive_check));
306       else
307         *abusive = FALSE;
308     }
309
310   gtk_widget_destroy (dialog);
311
312   return res == GTK_RESPONSE_REJECT;
313 }