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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
|
/*
* Copyright 2014 James Geboski <jgeboski@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "facebook.h"
#include "facebook-util.h"
/**
* Implemented #fb_api_funcs->error().
*
* @param api The #fb_api.
* @param err The #GError.
* @param data The user defined data, which is #fb_data.
**/
static void fb_cb_api_error(fb_api_t *api, GError *err, gpointer data)
{
fb_data_t *fata = data;
FB_UTIL_DEBUGLN("Error: %s", err->message);
imcb_error(fata->ic, "%s", err->message);
imc_logout(fata->ic, TRUE);
}
/**
* Implemented #fb_api_funcs->auth().
*
* @param api The #fb_api.
* @param data The user defined data, which is #fb_data.
**/
static void fb_cb_api_auth(fb_api_t *api, gpointer data)
{
fb_data_t *fata = data;
account_t *acc = fata->ic->acc;
gchar uid[FB_ID_STRMAX];
FB_ID_TO_STR(api->uid, uid);
set_setstr(&acc->set, "uid", uid);
set_setstr(&acc->set, "token", api->token);
imcb_log(fata->ic, "Authentication finished");
account_off(acc->bee, acc);
account_on(acc->bee, acc);
}
/**
* Implemented #fb_api_funcs->connect().
*
* @param api The #fb_api.
* @param data The user defined data, which is #fb_data.
**/
static void fb_cb_api_connect(fb_api_t *api, gpointer data)
{
fb_data_t *fata = data;
account_t *acc = fata->ic->acc;
imcb_connected(fata->ic);
set_setstr(&acc->set, "stoken", api->stoken);
}
/**
* Implemented #fb_api_funcs->contacts().
*
* @param api The #fb_api.
* @param users The #GSList of #fb_api_user.
* @param data The user defined data, which is #fb_data.
**/
static void fb_cb_api_contacts(fb_api_t *api, const GSList *users,
gpointer data)
{
fb_data_t *fata = data;
fb_api_user_t *user;
const GSList *l;
gchar uid[FB_ID_STRMAX];
for (l = users; l != NULL; l = l->next) {
user = l->data;
FB_ID_TO_STR(user->uid, uid);
imcb_add_buddy(fata->ic, uid, NULL);
imcb_buddy_nick_hint(fata->ic, uid, user->name);
imcb_rename_buddy(fata->ic, uid, user->name);
}
imcb_log(fata->ic, "Establishing connection");
fb_api_connect(fata->api);
}
/**
* Implemented #fb_api_funcs->message().
*
* @param api The #fb_api.
* @param msgs The #GSList of #fb_api_msg.
* @param data The user defined data, which is #fb_data.
**/
static void fb_cb_api_message(fb_api_t *api, const GSList *msgs, gpointer data)
{
fb_data_t *fata = data;
fb_api_msg_t *msg;
const GSList *l;
gchar uid[FB_ID_STRMAX];
for (l = msgs; l != NULL; l = l->next) {
msg = l->data;
FB_ID_TO_STR(msg->uid, uid);
imcb_buddy_msg(fata->ic, uid, (gchar*) msg->text, 0, 0);
}
}
/**
* Implemented #fb_api_funcs->presence().
*
* @param api The #fb_api.
* @param press The #GSList of #fb_api_msg.
* @param data The user defined data, which is #fb_data.
**/
static void fb_cb_api_presence(fb_api_t *api, const GSList *press,
gpointer data)
{
fb_data_t *fata = data;
fb_api_pres_t *pres;
const GSList *l;
guint flags;
gchar uid[FB_ID_STRMAX];
for (l = press; l != NULL; l = l->next) {
pres = l->data;
flags = 0;
if (pres->active)
flags |= OPT_LOGGED_IN;
FB_ID_TO_STR(pres->uid, uid);
imcb_buddy_status(fata->ic, uid, flags, NULL, NULL);
}
}
/**
* Implemented #fb_api_funcs->typing().
*
* @param api The #fb_api.
* @param typg The #fb_api_typing.
* @param data The user defined data, which is #fb_data.
**/
static void fb_cb_api_typing(fb_api_t *api, fb_api_typing_t *typg,
gpointer data)
{
fb_data_t *fata = data;
guint32 flags;
gchar uid[FB_ID_STRMAX];
FB_ID_TO_STR(typg->uid, uid);
flags = typg->state ? OPT_TYPING : 0;
imcb_buddy_typing(fata->ic, uid, flags);
}
/**
* Creates a new #fb_data with an #account. The returned #fb_data
* should be freed with #fb_data_free() when no longer needed.
*
* @param acc The #account.
*
* @return The #fb_data or NULL on error.
**/
fb_data_t *fb_data_new(account_t *acc)
{
fb_data_t *fata;
gchar *uid;
static const fb_api_funcs_t funcs = {
.error = fb_cb_api_error,
.auth = fb_cb_api_auth,
.connect = fb_cb_api_connect,
.contacts = fb_cb_api_contacts,
.message = fb_cb_api_message,
.presence = fb_cb_api_presence,
.typing = fb_cb_api_typing
};
g_return_val_if_fail(acc != NULL, NULL);
fata = g_new0(fb_data_t, 1);
fata->api = fb_api_new(&funcs, fata);
fata->ic = imcb_new(acc);
fata->ic->proto_data = fata;
uid = set_getstr(&acc->set, "uid");
if (uid != NULL)
fata->api->uid = FB_ID_FROM_STR(uid);
fata->api->token = g_strdup(set_getstr(&acc->set, "token"));
fata->api->stoken = g_strdup(set_getstr(&acc->set, "stoken"));
fata->api->cid = g_strdup(set_getstr(&acc->set, "cid"));
fata->api->mid = g_strdup(set_getstr(&acc->set, "mid"));
fata->api->cuid = g_strdup(set_getstr(&acc->set, "cuid"));
fb_api_rehash(fata->api);
set_setstr(&acc->set, "cid", fata->api->cid);
set_setstr(&acc->set, "mid", fata->api->mid);
set_setstr(&acc->set, "cuid", fata->api->cuid);
return fata;
}
/**
* Frees all memory used by a #fb_data.
*
* @param sata The #fb_data.
**/
void fb_data_free(fb_data_t *fata)
{
if (G_UNLIKELY(fata == NULL))
return;
fb_api_free(fata->api);
g_free(fata);
}
/**
* Implements #prpl->init(). This initializes an account.
*
* @param acc The #account.
**/
static void fb_init(account_t *acc)
{
set_t *s;
s = set_add(&acc->set, "cid", NULL, NULL, acc);
s->flags = SET_NULL_OK | SET_HIDDEN;
s = set_add(&acc->set, "cuid", NULL, NULL, acc);
s->flags = SET_NULL_OK | SET_HIDDEN;
s = set_add(&acc->set, "mid", NULL, NULL, acc);
s->flags = SET_NULL_OK | SET_HIDDEN;
s = set_add(&acc->set, "token", NULL, NULL, acc);
s->flags = SET_NULL_OK | SET_HIDDEN | SET_PASSWORD;
s = set_add(&acc->set, "stoken", NULL, NULL, acc);
s->flags = SET_NULL_OK | SET_HIDDEN;
s = set_add(&acc->set, "uid", NULL, NULL, acc);
s->flags = SET_NULL_OK | SET_HIDDEN;
}
/**
* Implements #prpl->login(). This logins an account in.
*
* @param acc The #account.
**/
static void fb_login(account_t *acc)
{
fb_data_t *fata;
fata = fb_data_new(acc);
imcb_log(fata->ic, "Connecting");
if (fata->api->token == NULL) {
imcb_log(fata->ic, "Requesting authentication token");
fb_api_auth(fata->api, acc->user, acc->pass);
return;
}
imcb_log(fata->ic, "Fetching contacts");
fb_api_contacts(fata->api);
}
/**
* Implements #prpl->logout(). This logs an account out.
*
* @param ic The #im_connection.
**/
static void fb_logout(struct im_connection *ic)
{
fb_data_t *fata = ic->proto_data;
fb_api_disconnect(fata->api);
fb_data_free(fata);
}
/**
* Implements #prpl->buddy_msg(). This sends a message to a buddy.
*
* @param ic The #im_connection.
* @param to The handle of the buddy.
* @param message The message to send.
* @param flags The message flags. (Irrelevant to this plugin)
*
* @return 0. (Upstream bitlbee does nothing with this)
**/
static int fb_buddy_msg(struct im_connection *ic, char *to, char *message,
int flags)
{
fb_data_t *fata = ic->proto_data;
fb_id_t uid;
uid = FB_ID_FROM_STR(to);
fb_api_message(fata->api, uid, message);
return 0;
}
/**
* Implements #prpl->send_typing(). This sends the typing state message.
*
* @param ic The #im_connection.
* @param who The handle of the buddy.
* @param flags The message flags. (Irrelevant to this plugin)
*
* @return 0. (Upstream bitlbe does nothing with this)
**/
static int fb_send_typing(struct im_connection *ic, char *who, int flags)
{
fb_data_t *fata = ic->proto_data;
fb_id_t uid;
gboolean state;
uid = FB_ID_FROM_STR(who);
state = (flags & OPT_TYPING) != 0;
fb_api_typing(fata->api, uid, state);
return 0;
}
/**
* Implements #prpl->add_buddy(). This adds a buddy.
*
* @param ic The #im_connection.
* @param name The name of the buddy to add.
* @param group The group of the buddy. (Irrelevant to this plugin)
**/
static void fb_add_buddy(struct im_connection *ic, char *name, char *group)
{
}
/**
* Implements #prpl->remove_buddy(). This removes a buddy.
*
* @param ic The #im_connection.
* @param name The name of the buddy to add.
* @param group The group of the buddy. (Irrelevant to this plugin)
**/
static void fb_remove_buddy(struct im_connection *ic, char *name, char *group)
{
}
/**
* Implements #prpl->add_permit(). This is not used by the plugin.
*
* @param ic The #im_connection.
* @param who The handle of the buddy.
**/
static void fb_add_permit(struct im_connection *ic, char *who)
{
}
/**
* Implements #prpl->add_deny(). This blocks a buddy.
*
* @param ic The #im_connection.
* @param who The handle of the buddy.
**/
static void fb_add_deny(struct im_connection *ic, char *who)
{
}
/**
* Implements #prpl->rem_permit(). This is not used by the plugin.
*
* @param ic The #im_connection.
* @param who The handle of the buddy.
**/
static void fb_rem_permit(struct im_connection *ic, char *who)
{
}
/**
* Implements #prpl->rem_deny(). This unblocks a buddy.
*
* @param ic The #im_connection.
* @param who The handle of the buddy.
**/
static void fb_rem_deny(struct im_connection *ic, char *who)
{
}
/**
* Implements #prpl->get_info(). This retrieves the info of a buddy.
*
* @param ic The #im_connection.
* @param who The handle of the buddy.
**/
static void fb_get_info(struct im_connection *ic, char *who)
{
}
/**
* Implements #prpl->auth_allow(). This accepts buddy requests.
*
* @param ic The #im_connection.
* @param who The handle of the buddy.
**/
static void fb_auth_allow(struct im_connection *ic, const char *who)
{
}
/**
* Implements #prpl->auth_allow(). This denies buddy requests.
*
* @param ic The #im_connection.
* @param who The handle of the buddy.
**/
static void fb_auth_deny(struct im_connection *ic, const char *who)
{
}
/**
* Implements #prpl->buddy_data_add(). This adds data to the buddy.
*
* @param bu The #bee_user.
**/
static void fb_buddy_data_add(struct bee_user *bu)
{
}
/**
* Implements #prpl->buddy_data_free(). This frees the buddy data.
*
* @param bu The #bee_user.
**/
static void fb_buddy_data_free(struct bee_user *bu)
{
}
/**
* Implements the #init_plugin() function. BitlBee looks for this
* function and executes it to register the protocol and its related
* callbacks.
**/
void init_plugin()
{
struct prpl *pp;
pp = g_new0(struct prpl, 1);
pp->name = "facebook";
pp->options = OPT_NOOTR;
pp->init = fb_init;
pp->login = fb_login;
pp->logout = fb_logout;
pp->buddy_msg = fb_buddy_msg;
pp->send_typing = fb_send_typing;
pp->add_buddy = fb_add_buddy;
pp->remove_buddy = fb_remove_buddy;
pp->add_permit = fb_add_permit;
pp->add_deny = fb_add_deny;
pp->rem_permit = fb_rem_permit;
pp->rem_deny = fb_rem_deny;
pp->get_info = fb_get_info;
pp->handle_cmp = g_ascii_strcasecmp;
pp->auth_allow = fb_auth_allow;
pp->auth_deny = fb_auth_deny;
pp->buddy_data_add = fb_buddy_data_add;
pp->buddy_data_free = fb_buddy_data_free;
register_protocol(pp);
}
|