summaryrefslogtreecommitdiff
path: root/telepathy-ytstenut-glib/tests/passing-status.c
blob: e9f0db6550c9e9a33707e6da809760e30da792ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/*
 * passing-service.c - demo to appear as a service and then disappear
 *
 * Copyright (C) 2011 Intel Corp.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "config.h"

#include <telepathy-glib/util.h>

#include <telepathy-ytstenut-glib/telepathy-ytstenut-glib.h>

static GMainLoop *loop = NULL;
static TpYtsAccountManager *am = NULL;
static TpYtsClient *client = NULL;

static void
getoutofhere (void)
{
  tp_clear_object (&client);
  /* we called Hold in main, so let's let that go here by calling
   * Release */
  tp_yts_account_manager_release (am);
  g_main_loop_quit (loop);
}

static gboolean
leave_timeout_cb (gpointer data)
{
  g_print ("Let's go!\n");
  g_object_unref (data);
  getoutofhere ();
  return FALSE;
}

static void
advertise_clear_status_cb (GObject *source_object,
    GAsyncResult *result,
    gpointer user_data)
{
  TpYtsStatus *status = TP_YTS_STATUS (source_object);
  GError *error = NULL;

  if (!tp_yts_status_advertise_status_finish (status, result, &error))
    {
      g_printerr ("Failed to advertise status: %s\n", error->message);
      getoutofhere ();
    }
  else
    {
      g_print ("Cleared status fine...\n");
      g_timeout_add_seconds (3, leave_timeout_cb, status);
    }

  g_clear_error (&error);
}

static gboolean
timeout_cb (gpointer data)
{
  TpYtsStatus *status = data;

  g_print ("Clearing status\n");

  tp_yts_status_advertise_status_async (status,
      "urn:ytstenut:capabilities:yts-caps-cats",
      "passing.status", /* this should be the same as the client name */
      NULL, NULL, advertise_clear_status_cb, NULL);
  return FALSE;
}

static void
advertise_status_cb (GObject *source_object,
    GAsyncResult *result,
    gpointer user_data)
{
  TpYtsStatus *status = TP_YTS_STATUS (source_object);
  GError *error = NULL;

  if (!tp_yts_status_advertise_status_finish (status, result, &error))
    {
      g_printerr ("Failed to advertise status: %s\n", error->message);
      getoutofhere ();
    }
  else
    {
      g_print ("Advertised status fine...\n");
      g_timeout_add_seconds (3, timeout_cb, status);
    }

  g_clear_error (&error);
}

static void
status_ensured_cb (GObject *source_object,
    GAsyncResult *result,
    gpointer user_data)
{
  TpAccount *account = user_data;
  TpYtsStatus *status;
  GError *error = NULL;

  status = tp_yts_status_ensure_for_connection_finish (
      TP_CONNECTION (source_object), result, &error);

  if (status == NULL)
    {
      g_printerr ("Failed to ensure status: %s\n", error->message);
      getoutofhere ();
    }
  else
    {
      client = tp_yts_client_new ("passing.status", account);
      tp_yts_client_register (client, NULL);

      /* We need the XML here otherwise the activity attribute won't
       * be present and it'll think we'll be trying to remove the
       * status. */
      tp_yts_status_advertise_status_async (status,
          "urn:ytstenut:capabilities:yts-caps-cats",
          "passing.status", /* this should be the same as the client name */
          "<status xmlns='urn:ytstenut:status' from-service='service.name' "
          "capability='urn:ytstenut:capabilities:yts-caps-cats' "
          "activity='looking-at-cats-ooooooh'><look>at how cute they "
          "are!</look></status>",
          NULL, advertise_status_cb, NULL);
    }

  g_object_unref (account);
  g_clear_error (&error);
}

static void
connection_prepared_cb (GObject *source_object,
    GAsyncResult *result,
    gpointer user_data)
{
  TpConnection *connection = TP_CONNECTION (source_object);
  TpAccount *account = user_data;
  GError *error = NULL;

  if (!tp_proxy_prepare_finish (source_object, result, &error))
    {
      g_printerr ("Failed to prepare connection: %s\n", error->message);
      getoutofhere ();
    }
  else
    {
      tp_yts_status_ensure_for_connection_async (connection,
          NULL, status_ensured_cb, g_object_ref (account));
    }

  g_object_unref (account);
  g_clear_error (&error);
}

static void
notify_connection_cb (GObject *gobject,
    GParamSpec *pspec,
    gpointer user_data)
{
  TpAccount *account = TP_ACCOUNT (gobject);
  GQuark features[] = { TP_CONNECTION_FEATURE_CONNECTED, 0 };
  TpConnection *connection = tp_account_get_connection (account);

  if (connection == NULL)
    return;

  g_print ("Trying to prepare account, this will only continue "
      "if the account is connected...\n");

  /* account already reffed */
  tp_proxy_prepare_async (connection, features, connection_prepared_cb,
      account);
}

static void
am_get_account_cb (GObject *source_object,
    GAsyncResult *result,
    gpointer user_data)
{
  GError *error = NULL;
  TpAccount *account = tp_yts_account_manager_get_account_finish (
      TP_YTS_ACCOUNT_MANAGER (source_object), result, &error);

  if (account == NULL)
    {
      g_printerr ("Failed to get automatic account: %s\n", error->message);
      getoutofhere ();
    }
  else
    {
      /* We got the account fine, but we need to ensure some features
       * on it so we have the :self-contact property set. */
      TpConnection *connection = tp_account_get_connection (account);

      if (connection != NULL)
        {
          notify_connection_cb (g_object_ref (account), NULL, NULL);
        }
      else
        {
          g_signal_connect (account, "notify::connection",
              G_CALLBACK (notify_connection_cb), g_object_ref (account));
        }
    }

  g_object_unref (account);
  g_clear_error (&error);
}

int
main (int argc,
    char **argv)
{
  g_type_init ();

  /* First we need to get the automatic Ytstenut account so create a
   * TpYtsAccountManager and call get_account on it. */
  am = tp_yts_account_manager_dup ();

  /* call Hold on the account so it stays around */
  tp_yts_account_manager_hold (am);

  tp_yts_account_manager_get_account_async (am, NULL,
      am_get_account_cb, NULL);

  loop = g_main_loop_new (NULL, FALSE);
  g_main_loop_run (loop);

  g_main_loop_unref (loop);

  g_object_unref (am);

  return 0;
}