]> git.0d.be Git - empathy.git/blob - src/empathy.c
Move nickname to the main section of account setting UI and do not set automatically...
[empathy.git] / src / empathy.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007 Collabora Ltd.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program 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  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  * 
20  * Authors: Xavier Claessens <xclaesse@gmail.com>
21  */
22
23 #include <config.h>
24
25 #include <stdlib.h>
26
27 #include <glib.h>
28 #include <glib/gi18n.h>
29 #include <gtk/gtk.h>
30
31 #include <libebook/e-book.h>
32 #include <libgnomevfs/gnome-vfs.h>
33
34 #include <telepathy-glib/util.h>
35 #include <libmissioncontrol/mc-account.h>
36 #include <libmissioncontrol/mc-account-monitor.h>
37 #include <libmissioncontrol/mission-control.h>
38
39 #include <libempathy/empathy-idle.h>
40 #include <libempathy/empathy-utils.h>
41 #include <libempathy/empathy-debug.h>
42
43 #include <libempathy-gtk/empathy-conf.h>
44 #include <libempathy-gtk/empathy-preferences.h>
45 #include <libempathy-gtk/empathy-main-window.h>
46 #include <libempathy-gtk/empathy-status-icon.h>
47
48 #define DEBUG_DOMAIN "EmpathyMain"
49
50 static void
51 service_ended_cb (MissionControl *mc,
52                   gpointer        user_data)
53 {
54         empathy_debug (DEBUG_DOMAIN, "Mission Control stopped");
55 }
56
57 static void
58 operation_error_cb (MissionControl *mc,
59                     guint           operation_id,
60                     guint           error_code,
61                     gpointer        user_data)
62 {
63         empathy_debug (DEBUG_DOMAIN, "Error code %d during operation %d",
64                       error_code,
65                       operation_id);
66 }
67
68 static void
69 start_mission_control (EmpathyIdle *idle)
70 {
71         McPresence presence;
72
73         presence = empathy_idle_get_state (idle);
74
75         if (presence > MC_PRESENCE_OFFLINE) {
76                 /* MC is already running and online, nothing to do */
77                 return;
78         }
79
80         empathy_idle_set_state (idle, MC_PRESENCE_AVAILABLE);
81 }
82
83 static void
84 account_enabled_cb (McAccountMonitor *monitor,
85                     gchar            *unique_name,
86                     EmpathyIdle      *idle)
87 {
88         empathy_debug (DEBUG_DOMAIN, "Account enabled: %s", unique_name);
89         start_mission_control (idle);
90 }
91
92 static void
93 create_salut_account (void)
94 {
95         McProfile  *profile;
96         McProtocol *protocol;
97         gboolean    salut_created;
98         McAccount  *account;
99         GList      *accounts;
100         EBook      *book;
101         EContact   *contact;
102         gchar      *nickname = NULL;
103         gchar      *first_name = NULL;
104         gchar      *last_name = NULL;
105         gchar      *email = NULL;
106         gchar      *jid = NULL;
107
108         /* Check if we already created a salut account */
109         if (!empathy_conf_get_bool (empathy_conf_get(),
110                                     EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
111                                     &salut_created)) {
112                 return;
113         }
114         if (salut_created) {
115                 return;
116         }
117
118         empathy_debug (DEBUG_DOMAIN, "Try to add a salut account...");
119
120         /* Check if the salut CM is installed */
121         profile = mc_profile_lookup ("salut");
122         protocol = mc_profile_get_protocol (profile);
123         if (!protocol) {
124                 empathy_debug (DEBUG_DOMAIN, "Salut not installed");
125                 g_object_unref (profile);
126                 return;
127         }
128         g_object_unref (protocol);
129
130         /* Get self EContact from EDS */
131         if (!e_book_get_self (&contact, &book, NULL)) {
132                 empathy_debug (DEBUG_DOMAIN, "Failed to get self econtact");
133                 g_object_unref (profile);
134                 return;
135         }
136
137         empathy_conf_set_bool (empathy_conf_get (),
138                                EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
139                                TRUE);
140
141         /* Check if there is already a salut account */
142         accounts = mc_accounts_list_by_profile (profile);
143         if (accounts) {
144                 empathy_debug (DEBUG_DOMAIN, "There is already a salut account");
145                 mc_accounts_list_free (accounts);
146                 g_object_unref (profile);
147                 return;
148         }
149
150         account = mc_account_create (profile);
151         mc_account_set_display_name (account, _("People nearby"));
152         
153         nickname = e_contact_get (contact, E_CONTACT_NICKNAME);
154         first_name = e_contact_get (contact, E_CONTACT_GIVEN_NAME);
155         last_name = e_contact_get (contact, E_CONTACT_FAMILY_NAME);
156         email = e_contact_get (contact, E_CONTACT_EMAIL_1);
157         jid = e_contact_get (contact, E_CONTACT_IM_JABBER_HOME_1);
158         
159         if (!tp_strdiff (nickname, "nickname")) {
160                 g_free (nickname);
161                 nickname = NULL;
162         }
163
164         empathy_debug (DEBUG_DOMAIN, "Salut account created:\n"
165                                      "  nickname=%s\n"
166                                      "  first-name=%s\n"
167                                      "  last-name=%s\n"
168                                      "  email=%s\n"
169                                      "  jid=%s\n",
170                        nickname, first_name, last_name, email, jid);
171
172         mc_account_set_param_string (account, "nickname", nickname ? nickname : "");
173         mc_account_set_param_string (account, "first-name", first_name ? first_name : "");
174         mc_account_set_param_string (account, "last-name", last_name ? last_name : "");
175         mc_account_set_param_string (account, "email", email ? email : "");
176         mc_account_set_param_string (account, "jid", jid ? jid : "");
177
178         g_free (nickname);
179         g_free (first_name);
180         g_free (last_name);
181         g_free (email);
182         g_free (jid);
183         g_object_unref (account);
184         g_object_unref (profile);
185         g_object_unref (contact);
186         g_object_unref (book);
187 }
188
189 int
190 main (int argc, char *argv[])
191 {
192         EmpathyStatusIcon *icon;
193         GtkWidget         *window;
194         MissionControl    *mc;
195         McAccountMonitor  *monitor;
196         EmpathyIdle       *idle;
197         gboolean           autoconnect = TRUE;
198         GError            *error = NULL;
199
200         empathy_debug_set_log_file_from_env ();
201
202         bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
203         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
204         textdomain (GETTEXT_PACKAGE);
205
206         if (!gtk_init_with_args (&argc, &argv,
207                                  _("- Empathy Instant Messenger"),
208                                  NULL, GETTEXT_PACKAGE, &error)) {
209                 empathy_debug (DEBUG_DOMAIN, error->message);
210                 return EXIT_FAILURE;
211         }
212
213         g_set_application_name (PACKAGE_NAME);
214
215         gtk_window_set_default_icon_name ("empathy");
216         gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
217                                            PKGDATADIR G_DIR_SEPARATOR_S "icons");
218         gnome_vfs_init ();
219
220         /* Setting up MC */
221         monitor = mc_account_monitor_new ();
222         mc = empathy_mission_control_new ();
223         idle = empathy_idle_new ();
224         g_signal_connect (monitor, "account-enabled",
225                           G_CALLBACK (account_enabled_cb),
226                           idle);
227         g_signal_connect (mc, "ServiceEnded",
228                           G_CALLBACK (service_ended_cb),
229                           NULL);
230         g_signal_connect (mc, "Error",
231                           G_CALLBACK (operation_error_cb),
232                           NULL);
233
234         empathy_conf_get_bool (empathy_conf_get(),
235                                EMPATHY_PREFS_AUTOCONNECT,
236                                &autoconnect);
237                                
238         if (autoconnect) {
239                 start_mission_control (idle);
240         }
241         
242         create_salut_account ();
243
244         /* Setting up UI */
245         window = empathy_main_window_show ();
246         icon = empathy_status_icon_new (GTK_WINDOW (window));
247
248         gtk_main ();
249
250         empathy_idle_set_state (idle, MC_PRESENCE_OFFLINE);
251
252         g_object_unref (monitor);
253         g_object_unref (mc);
254         g_object_unref (idle);
255         g_object_unref (icon);
256
257         return EXIT_SUCCESS;
258 }
259