]> git.0d.be Git - empathy.git/blob - src/empathy-chat-chandler.c
dc2eb60f7fae10c45dfd836dd89b47a128a7ec42
[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         EmpathyTpChat *tp_chat;
58         McAccount     *account;
59         EmpathyChat   *chat;
60         gchar         *id;
61
62         account = mission_control_get_account_for_connection (mc, tp_conn, NULL);
63         id = empathy_inspect_channel (account, tp_chan);
64         chat = empathy_chat_window_find_chat (account, id);
65         g_free (id);
66
67         if (chat) {
68                 /* The chat already exists */
69                 if (!empathy_chat_is_connected (chat)) {
70                         /* The chat died, give him the new text channel */
71                         if (empathy_chat_is_group_chat (chat)) {
72                                 tp_chat = EMPATHY_TP_CHAT (empathy_tp_chatroom_new (account, tp_chan));
73                         } else {
74                                 tp_chat = empathy_tp_chat_new (account, tp_chan);
75                         }
76                         empathy_chat_set_tp_chat (chat, tp_chat);
77                         g_object_unref (tp_chat);
78                 }
79                 empathy_chat_present (chat);
80
81                 g_object_unref (account);
82                 return;
83         }
84
85         if (tp_chan->handle_type == TP_HANDLE_TYPE_CONTACT) {
86                 /* We have a new private chat channel */
87                 tp_chat = empathy_tp_chat_new (account, tp_chan);
88                 chat = EMPATHY_CHAT (empathy_private_chat_new (tp_chat));
89         }
90         else if (tp_chan->handle_type == TP_HANDLE_TYPE_ROOM) {
91                 /* We have a new group chat channel */
92                 tp_chat = EMPATHY_TP_CHAT (empathy_tp_chatroom_new (account, tp_chan));
93                 chat = EMPATHY_CHAT (empathy_group_chat_new (EMPATHY_TP_CHATROOM (tp_chat)));
94         } else {
95                 empathy_debug (DEBUG_DOMAIN,
96                                "Unknown handle type (%d) for Text channel",
97                                tp_chan->handle_type);
98                 g_object_unref (account);
99                 return;
100         }
101
102         empathy_chat_present (chat);
103
104         g_object_unref (chat);
105         g_object_unref (account);
106         g_object_unref (tp_chat);
107 }
108
109 int
110 main (int argc, char *argv[])
111 {
112         EmpathyChandler *chandler;
113         MissionControl  *mc;
114
115         empathy_debug_set_log_file_from_env ();
116
117         bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
118         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
119         textdomain (GETTEXT_PACKAGE);
120
121         gtk_init (&argc, &argv);
122
123         gtk_window_set_default_icon_name ("empathy");
124         gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
125                                            PKGDATADIR G_DIR_SEPARATOR_S "icons");
126         gnome_vfs_init ();
127
128         mc = empathy_mission_control_new ();
129         chandler = empathy_chandler_new (BUS_NAME, OBJECT_PATH);
130         g_signal_connect (chandler, "new-channel",
131                           G_CALLBACK (chat_chandler_new_channel_cb),
132                           mc);
133
134         empathy_debug (DEBUG_DOMAIN, "Ready to handle new text channels");
135
136         gtk_main ();
137
138         g_object_unref (chandler);
139         g_object_unref (mc);
140
141         return EXIT_SUCCESS;
142 }
143