rename text/{persona,individual}-id as they are not standard
[empathy-mirror.git] / libempathy / empathy-request-util.c
blob409fdf54a7447cc5b3ea1a5570a75be0ab9ad2b9
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>
22 #include <config.h>
24 #include <string.h>
26 #include <glib/gi18n-lib.h>
28 #include <telepathy-glib/telepathy-glib.h>
30 #include "empathy-request-util.h"
31 #include "empathy-utils.h"
32 #include "empathy-utils.h"
34 #define DEBUG_FLAG EMPATHY_DEBUG_DISPATCHER
35 #include <libempathy/empathy-debug.h>
37 void
38 empathy_chat_with_contact (EmpathyContact *contact,
39 gint64 timestamp)
41 empathy_chat_with_contact_id (
42 empathy_contact_get_account (contact), empathy_contact_get_id (contact),
43 timestamp);
46 static void
47 ensure_text_channel_cb (GObject *source,
48 GAsyncResult *result,
49 gpointer user_data)
51 GError *error = NULL;
53 if (!tp_account_channel_request_ensure_channel_finish (
54 TP_ACCOUNT_CHANNEL_REQUEST (source), result, &error))
56 DEBUG ("Failed to ensure text channel: %s", error->message);
57 g_error_free (error);
61 static void
62 create_text_channel (TpAccount *account,
63 TpHandleType target_handle_type,
64 const gchar *target_id,
65 gboolean sms_channel,
66 gint64 timestamp)
68 GHashTable *request;
69 TpAccountChannelRequest *req;
71 request = tp_asv_new (
72 TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING,
73 TP_IFACE_CHANNEL_TYPE_TEXT,
74 TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, target_handle_type,
75 TP_PROP_CHANNEL_TARGET_ID, G_TYPE_STRING, target_id,
76 NULL);
78 if (sms_channel)
79 tp_asv_set_boolean (request,
80 TP_PROP_CHANNEL_INTERFACE_SMS_SMS_CHANNEL, TRUE);
82 req = tp_account_channel_request_new (account, request, timestamp);
83 tp_account_channel_request_set_delegate_to_preferred_handler (req, TRUE);
85 tp_account_channel_request_ensure_channel_async (req, EMPATHY_CHAT_BUS_NAME,
86 NULL, ensure_text_channel_cb, NULL);
88 g_hash_table_unref (request);
89 g_object_unref (req);
92 void
93 empathy_chat_with_contact_id (TpAccount *account,
94 const gchar *contact_id,
95 gint64 timestamp)
97 create_text_channel (account, TP_HANDLE_TYPE_CONTACT,
98 contact_id, FALSE, timestamp);
101 void
102 empathy_join_muc (TpAccount *account,
103 const gchar *room_name,
104 gint64 timestamp)
106 create_text_channel (account, TP_HANDLE_TYPE_ROOM,
107 room_name, FALSE, timestamp);
110 void
111 empathy_sms_contact_id (TpAccount *account,
112 const gchar *contact_id,
113 gint64 timestamp)
115 create_text_channel (account, TP_HANDLE_TYPE_CONTACT,
116 contact_id, TRUE, timestamp);