]> git.0d.be Git - empathy.git/blob - libempathy/empathy-request-util.c
8532da57bbb62d2b59d9fb45f79b21e2bee399cc
[empathy.git] / libempathy / empathy-request-util.c
1 /* * Copyright (C) 2007-2010 Collabora Ltd.
2  *
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Lesser General Public
5  * License as published by the Free Software Foundation; either
6  * version 2.1 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public
14  * License along with this library; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
16  *
17  * Authors: Xavier Claessens <xclaesse@gmail.com>
18  *          Sjoerd Simons <sjoerd.simons@collabora.co.uk>
19  *          Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
20  */
21
22 #include "config.h"
23
24 #include "empathy-request-util.h"
25
26 #define DEBUG_FLAG EMPATHY_DEBUG_DISPATCHER
27 #include <libempathy/empathy-debug.h>
28
29 void
30 empathy_chat_with_contact (EmpathyContact *contact,
31     gint64 timestamp)
32 {
33   empathy_chat_with_contact_id (
34       empathy_contact_get_account (contact), empathy_contact_get_id (contact),
35       timestamp, NULL, NULL);
36 }
37
38 static void
39 ensure_text_channel_cb (GObject *source,
40     GAsyncResult *result,
41     gpointer user_data)
42 {
43   GError *error = NULL;
44
45   if (!tp_account_channel_request_ensure_channel_finish (
46         TP_ACCOUNT_CHANNEL_REQUEST (source), result, &error))
47     {
48       DEBUG ("Failed to ensure text channel: %s", error->message);
49       g_error_free (error);
50     }
51 }
52
53 static void
54 create_text_channel (TpAccount *account,
55     TpHandleType target_handle_type,
56     const gchar *target_id,
57     gboolean sms_channel,
58     gint64 timestamp,
59     GAsyncReadyCallback callback,
60     gpointer user_data)
61 {
62   GHashTable *request;
63   TpAccountChannelRequest *req;
64
65   request = tp_asv_new (
66       TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
67         TP_IFACE_CHANNEL_TYPE_TEXT,
68       TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, target_handle_type,
69       TP_PROP_CHANNEL_TARGET_ID, G_TYPE_STRING, target_id,
70       NULL);
71
72   if (sms_channel)
73     tp_asv_set_boolean (request,
74         TP_PROP_CHANNEL_INTERFACE_SMS_SMS_CHANNEL, TRUE);
75
76   req = tp_account_channel_request_new (account, request, timestamp);
77   tp_account_channel_request_set_delegate_to_preferred_handler (req, TRUE);
78
79   tp_account_channel_request_ensure_channel_async (req, EMPATHY_CHAT_BUS_NAME,
80       NULL, callback ? callback : ensure_text_channel_cb, user_data);
81
82   g_hash_table_unref (request);
83   g_object_unref (req);
84 }
85
86 /* @callback is optional, but if it's provided, it should call the right
87  * _finish() func that we call in ensure_text_channel_cb() */
88 void
89 empathy_chat_with_contact_id (TpAccount *account,
90     const gchar *contact_id,
91     gint64 timestamp,
92     GAsyncReadyCallback callback,
93     gpointer user_data)
94 {
95   create_text_channel (account, TP_HANDLE_TYPE_CONTACT,
96       contact_id, FALSE, timestamp, callback, user_data);
97 }
98
99 void
100 empathy_join_muc (TpAccount *account,
101     const gchar *room_name,
102     gint64 timestamp)
103 {
104   create_text_channel (account, TP_HANDLE_TYPE_ROOM,
105       room_name, FALSE, timestamp, NULL, NULL);
106 }
107
108 /* @callback is optional, but if it's provided, it should call the right
109  * _finish() func that we call in ensure_text_channel_cb() */
110 void
111 empathy_sms_contact_id (TpAccount *account,
112     const gchar *contact_id,
113     gint64 timestamp,
114     GAsyncReadyCallback callback,
115     gpointer user_data)
116 {
117   create_text_channel (account, TP_HANDLE_TYPE_CONTACT,
118       contact_id, TRUE, timestamp, callback, user_data);
119 }