1 /* * Copyright (C) 2007-2010 Collabora Ltd.
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.
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.
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
17 * Authors: Xavier Claessens <xclaesse@gmail.com>
18 * Sjoerd Simons <sjoerd.simons@collabora.co.uk>
19 * Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
23 #include "empathy-request-util.h"
25 #include <telepathy-glib/telepathy-glib-dbus.h>
27 #define DEBUG_FLAG EMPATHY_DEBUG_DISPATCHER
28 #include "empathy-debug.h"
31 empathy_chat_with_contact (EmpathyContact
*contact
,
34 empathy_chat_with_contact_id (
35 empathy_contact_get_account (contact
), empathy_contact_get_id (contact
),
36 timestamp
, NULL
, NULL
);
40 ensure_text_channel_cb (GObject
*source
,
46 if (!tp_account_channel_request_ensure_channel_finish (
47 TP_ACCOUNT_CHANNEL_REQUEST (source
), result
, &error
))
49 DEBUG ("Failed to ensure text channel: %s", error
->message
);
55 create_text_channel (TpAccount
*account
,
56 TpHandleType target_handle_type
,
57 const gchar
*target_id
,
60 GAsyncReadyCallback callback
,
63 TpAccountChannelRequest
*req
;
65 req
= tp_account_channel_request_new_text (account
, timestamp
);
66 tp_account_channel_request_set_target_id (req
, target_handle_type
, target_id
);
67 tp_account_channel_request_set_delegate_to_preferred_handler (req
, TRUE
);
70 tp_account_channel_request_set_sms_channel (req
, TRUE
);
72 tp_account_channel_request_ensure_channel_async (req
,
73 EMPATHY_CHAT_TP_BUS_NAME
, NULL
,
74 callback
? callback
: ensure_text_channel_cb
, user_data
);
79 /* @callback is optional, but if it's provided, it should call the right
80 * _finish() func that we call in ensure_text_channel_cb() */
82 empathy_chat_with_contact_id (TpAccount
*account
,
83 const gchar
*contact_id
,
85 GAsyncReadyCallback callback
,
88 create_text_channel (account
, TP_HANDLE_TYPE_CONTACT
,
89 contact_id
, FALSE
, timestamp
, callback
, user_data
);
93 empathy_join_muc (TpAccount
*account
,
94 const gchar
*room_name
,
97 create_text_channel (account
, TP_HANDLE_TYPE_ROOM
,
98 room_name
, FALSE
, timestamp
, NULL
, NULL
);
101 /* @callback is optional, but if it's provided, it should call the right
102 * _finish() func that we call in ensure_text_channel_cb() */
104 empathy_sms_contact_id (TpAccount
*account
,
105 const gchar
*contact_id
,
107 GAsyncReadyCallback callback
,
110 create_text_channel (account
, TP_HANDLE_TYPE_CONTACT
,
111 contact_id
, TRUE
, timestamp
, callback
, user_data
);