]> git.0d.be Git - empathy.git/blob - src/empathy-chat-chandler.c
Conflicts:
[empathy.git] / src / empathy-chat-chandler.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 <libgnomevfs/gnome-vfs.h>
32
33 #include <libmissioncontrol/mission-control.h>
34
35 #include <libempathy/empathy-chandler.h>
36 #include <libempathy/empathy-utils.h>
37 #include <libempathy/empathy-tp-chat.h>
38 #include <libempathy/empathy-tp-chatroom.h>
39 #include <libempathy/empathy-debug.h>
40
41 #include <libempathy-gtk/empathy-chat.h>
42 #include <libempathy-gtk/empathy-private-chat.h>
43 #include <libempathy-gtk/empathy-group-chat.h>
44 #include <libempathy-gtk/empathy-chat-window.h>
45
46 #define DEBUG_DOMAIN "EmpathyChat"
47
48 #define BUS_NAME "org.gnome.Empathy.ChatChandler"
49 #define OBJECT_PATH "/org/gnome/Empathy/ChatChandler"
50
51 static void
52 chat_chandler_new_channel_cb (EmpathyChandler *chandler,
53                               TpConn          *tp_conn,
54                               TpChan          *tp_chan,
55                               MissionControl  *mc)
56 {
57         McAccount   *account;
58         EmpathyChat *chat;
59         gchar       *id;
60
61         account = mission_control_get_account_for_connection (mc, tp_conn, NULL);
62         id = empathy_inspect_channel (account, tp_chan);
63         chat = empathy_chat_window_find_chat (account, id);
64         g_free (id);
65
66         if (chat) {
67                 /* The chat already exists */
68                 if (!empathy_chat_is_connected (chat)) {
69                         EmpathyTpChat *tp_chat;
70
71                         /* The chat died, give him the new text channel */
72                         if (empathy_chat_is_group_chat (chat)) {
73                                 tp_chat = EMPATHY_TP_CHAT (empathy_tp_chatroom_new (account, tp_chan));
74                         } else {
75                                 tp_chat = empathy_tp_chat_new (account, tp_chan);
76                         }
77                         empathy_chat_set_tp_chat (chat, tp_chat);
78                         g_object_unref (tp_chat);
79                 }
80                 empathy_chat_present (chat);
81
82                 g_object_unref (account);
83                 return;
84         }
85
86         if (tp_chan->handle_type == TP_HANDLE_TYPE_CONTACT) {
87                 /* We have a new private chat channel */
88                 chat = EMPATHY_CHAT (empathy_private_chat_new (account, tp_chan));
89         }
90         else if (tp_chan->handle_type == TP_HANDLE_TYPE_ROOM) {
91                 /* We have a new group chat channel */
92                 chat = EMPATHY_CHAT (empathy_group_chat_new (account, tp_chan));
93         }
94
95         empathy_chat_present (EMPATHY_CHAT (chat));
96
97         g_object_unref (chat);
98         g_object_unref (account);
99 }
100
101 int
102 main (int argc, char *argv[])
103 {
104         EmpathyChandler *chandler;
105         MissionControl  *mc;
106
107         empathy_debug_set_log_file_from_env ();
108
109         bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
110         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
111         textdomain (GETTEXT_PACKAGE);
112
113         gtk_init (&argc, &argv);
114
115         gtk_window_set_default_icon_name ("empathy");
116         gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
117                                            PKGDATADIR G_DIR_SEPARATOR_S "icons");
118         gnome_vfs_init ();
119
120         mc = empathy_mission_control_new ();
121         chandler = empathy_chandler_new (BUS_NAME, OBJECT_PATH);
122         g_signal_connect (chandler, "new-channel",
123                           G_CALLBACK (chat_chandler_new_channel_cb),
124                           mc);
125
126         empathy_debug (DEBUG_DOMAIN, "Ready to handle new text channels");
127
128         gtk_main ();
129
130         g_object_unref (chandler);
131         g_object_unref (mc);
132
133         return EXIT_SUCCESS;
134 }
135