forked from barnowl/barnowl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aim.c
1802 lines (1503 loc) · 59.6 KB
/
aim.c
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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <stdio.h>
#include <stdio.h>
#include <sys/stat.h>
#include "owl.h"
/**********************************************************************/
struct owlfaim_priv {
char *screenname;
char *password;
char *server;
int connected;
};
static const char *msgerrreasons[] = {
"Invalid error",
"Invalid SNAC",
"Rate to host",
"Rate to client",
"Not logged on",
"Service unavailable",
"Service not defined",
"Obsolete SNAC",
"Not supported by host",
"Not supported by client",
"Refused by client",
"Reply too big",
"Responses lost",
"Request denied",
"Busted SNAC payload",
"Insufficient rights",
"In local permit/deny",
"Too evil (sender)",
"Too evil (receiver)",
"User temporarily unavailable",
"No match",
"List overflow",
"Request ambiguous",
"Queue full",
"Not while on AOL",
};
static int msgerrreasonslen = 25;
static void faimtest_debugcb(aim_session_t *sess, int level, const char *format, va_list va);
static int faimtest_parse_login(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_authresp(aim_session_t *sess, aim_frame_t *fr, ...);
int faimtest_flapversion(aim_session_t *sess, aim_frame_t *fr, ...);
int faimtest_conncomplete(aim_session_t *sess, aim_frame_t *fr, ...);
void addcb_bos(aim_session_t *sess, aim_conn_t *bosconn);
static int conninitdone_bos(aim_session_t *sess, aim_frame_t *fr, ...);
static int conninitdone_admin(aim_session_t *sess, aim_frame_t *fr, ...);
static int conninitdone_chat (aim_session_t *, aim_frame_t *, ...);
int logout(aim_session_t *sess);
static int faimtest_parse_connerr(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_accountconfirm(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_infochange(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_handleredirect(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_icbmparaminfo(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_buddyrights(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_bosrights(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_locrights(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_reportinterval(aim_session_t *sess, aim_frame_t *fr, ...);
/* static int reportinterval(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs); */
static int faimtest_parse_motd(aim_session_t *sess, aim_frame_t *fr, ...);
/* static void printuserflags(fu16_t flags); */
static int faimtest_parse_userinfo(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_incoming_im_chan1(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch1_args *args);
static int faimtest_parse_incoming_im_chan2(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch2_args *args);
static int faimtest_parse_incoming_im(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_oncoming(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_offgoing(aim_session_t *sess, aim_frame_t *fr, ...);
int faimtest_parse_genericerr(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_msgerr(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_locerr(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_misses(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_msgack(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_ratechange(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_evilnotify(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_searchreply(aim_session_t *sess, aim_frame_t *fr, ...);
static int faimtest_parse_searcherror(aim_session_t *sess, aim_frame_t *fr, ...);
static int handlepopup(aim_session_t *sess, aim_frame_t *fr, ...);
static int serverpause(aim_session_t *sess, aim_frame_t *fr, ...);
static int migrate(aim_session_t *sess, aim_frame_t *fr, ...);
static int ssirights(aim_session_t *sess, aim_frame_t *fr, ...);
static int ssidata(aim_session_t *sess, aim_frame_t *fr, ...);
static int ssidatanochange(aim_session_t *sess, aim_frame_t *fr, ...);
static int offlinemsg(aim_session_t *sess, aim_frame_t *fr, ...);
static int offlinemsgdone(aim_session_t *sess, aim_frame_t *fr, ...);
/*
static int faimtest_ssi_parseerr (aim_session_t *, aim_frame_t *, ...);
static int faimtest_ssi_parserights (aim_session_t *, aim_frame_t *, ...);
static int faimtest_ssi_parselist (aim_session_t *, aim_frame_t *, ...);
static int faimtest_ssi_parseack (aim_session_t *, aim_frame_t *, ...);
static int faimtest_ssi_authgiven (aim_session_t *, aim_frame_t *, ...);
static int faimtest_ssi_authrequest (aim_session_t *, aim_frame_t *, ...);
static int faimtest_ssi_authreply (aim_session_t *, aim_frame_t *, ...);
static int faimtest_ssi_gotadded (aim_session_t *, aim_frame_t *, ...);
*/
void chatnav_redirect(aim_session_t *sess, struct aim_redirect_data *redir);
void chat_redirect(aim_session_t *sess, struct aim_redirect_data *redir);
/*****************************************************************/
void owl_aim_init(void)
{
/* this has all been moved to owl_aim_login, but we'll leave the
* function here, in case there's stuff we want to init in the
* future. It's still called by Owl.
*/
}
void owl_aim_send_nop(owl_timer *t, void *data) {
if(owl_global_is_doaimevents(&g)) {
aim_session_t *sess = owl_global_get_aimsess(&g);
aim_flap_nop(sess, aim_getconn_type(sess, AIM_CONN_TYPE_BOS));
}
}
int owl_aim_login(const char *screenname, const char *password)
{
struct owlfaim_priv *priv;
aim_conn_t *conn;
aim_session_t *sess;
sess=owl_global_get_aimsess(&g);
aim_session_init(sess, TRUE, 0);
aim_setdebuggingcb(sess, faimtest_debugcb);
aim_tx_setenqueue(sess, AIM_TX_IMMEDIATE, NULL);
/* this will leak, I know and just don't care right now */
priv=g_new0(struct owlfaim_priv, 1);
priv->screenname = g_strdup(screenname);
priv->password = g_strdup(password);
priv->server = g_strdup(FAIM_LOGIN_SERVER);
sess->aux_data = priv;
conn=aim_newconn(sess, AIM_CONN_TYPE_AUTH, priv->server ? priv->server : FAIM_LOGIN_SERVER);
/* conn=aim_newconn(sess, AIM_CONN_TYPE_AUTH, NULL); */
if (!conn) {
owl_function_error("owl_aim_login: connection error during AIM login\n");
owl_global_set_aimnologgedin(&g);
owl_global_set_no_doaimevents(&g);
return (-1);
}
/*
else if (conn->fd == -1) {
if (conn->status & AIM_CONN_STATUS_RESOLVERR) {
owl_function_error("owl_aim_login: could not resolve authorize name");
} else if (conn->status & AIM_CONN_STATUS_CONNERR) {
owl_function_error("owl_aim_login: could not connect to authorizer");
} else {
owl_function_error("owl_aim_login: unknown connection error");
}
owl_global_set_aimnologgedin(&g);
owl_global_set_no_doaimevents(&g);
aim_conn_kill(sess, &conn);
return(-1);
}
*/
aim_conn_addhandler(sess, conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_FLAPVER, faimtest_flapversion, 0);
aim_conn_addhandler(sess, conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
aim_conn_addhandler(sess, conn, AIM_CB_FAM_ATH, AIM_CB_ATH_AUTHRESPONSE, faimtest_parse_login, 0);
aim_conn_addhandler(sess, conn, AIM_CB_FAM_ATH, AIM_CB_ATH_LOGINRESPONSE, faimtest_parse_authresp, 0);
/* aim_conn_addhandler(sess, conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); */
/* aim_conn_addhandler(sess, conn, 0x0017, 0x0007, gaim_parse_login, 0); */
/* aim_conn_addhandler(sess, conn, 0x0017, 0x0003, gaim_parse_auth_resp, 0); */
/* start processing AIM events */
owl_global_set_doaimevents(&g);
/* conn->status |= AIM_CONN_STATUS_INPROGRESS; */
owl_function_debugmsg("owl_aim_login: sending login request for %s", screenname);
aim_request_login(sess, conn, screenname);
owl_function_debugmsg("owl_aim_login: connecting");
g.aim_nop_timer = owl_select_add_timer("owl_aim_send_nop", 30, 30, owl_aim_send_nop, NULL, NULL);
return(0);
}
static void owl_aim_unset_ignorelogin(owl_timer *t, void *data)
{
owl_global_unset_ignore_aimlogin(&g);
}
/* stuff to run once login has been successful */
void owl_aim_successful_login(const char *screenname)
{
char *buff;
owl_function_debugmsg("doing owl_aim_successful_login");
owl_global_set_aimloggedin(&g, screenname);
owl_global_set_doaimevents(&g); /* this should already be on */
owl_function_makemsg("%s logged in", screenname);
buff=g_strdup_printf("Logged in to AIM as %s", screenname);
owl_function_adminmsg("", buff);
g_free(buff);
owl_function_debugmsg("Successful AIM login for %s", screenname);
/* start the ingorelogin timer */
owl_global_set_ignore_aimlogin(&g);
owl_select_add_timer("owl_aim_unset_ignorelogin",
owl_global_get_aim_ignorelogin_timer(&g),
0, owl_aim_unset_ignorelogin, NULL, NULL);
/* aim_ssi_setpresence(owl_global_get_aimsess(&g), 0x00000400); */
/* aim_bos_setidle(owl_global_get_aimsess(&g), owl_global_get_bosconn(&g), 5000); */
}
void owl_aim_logout(void)
{
/* need to check if it's connected first, I think */
logout(owl_global_get_aimsess(&g));
if (owl_global_is_aimloggedin(&g)) owl_function_adminmsg("", "Logged out of AIM");
owl_global_set_aimnologgedin(&g);
owl_global_set_no_doaimevents(&g);
owl_select_remove_timer(g.aim_nop_timer);
}
void owl_aim_logged_out(void)
{
if (owl_global_is_aimloggedin(&g)) owl_function_adminmsg("", "Logged out of AIM");
owl_aim_logout();
}
void owl_aim_login_error(const char *message)
{
if (message) {
owl_function_error("%s", message);
} else {
owl_function_error("Authentication error on login");
}
owl_function_beep();
owl_global_set_aimnologgedin(&g);
owl_global_set_no_doaimevents(&g);
owl_select_remove_timer(g.aim_nop_timer);
}
/*
* I got these constants by skimming libfaim/im.c
*
* "UNICODE" actually means "UCS-2BE".
*/
#define AIM_CHARSET_ISO_8859_1 0x0003
#define AIM_CHARSET_UNICODE 0x0002
static int owl_aim_do_send(const char *to, const char *msg, int flags)
{
int ret;
char *encoded;
struct aim_sendimext_args args;
gsize len;
encoded = g_convert(msg, -1, "ISO-8859-1", "UTF-8", NULL, &len, NULL);
if (encoded) {
owl_function_debugmsg("Encoded outgoing AIM as ISO-8859-1");
args.charset = AIM_CHARSET_ISO_8859_1;
args.charsubset = 0;
args.flags = AIM_IMFLAGS_ISO_8859_1;
} else {
owl_function_debugmsg("Encoding outgoing IM as UCS-2BE");
encoded = g_convert(msg, -1, "UCS-2BE", "UTF-8", NULL, &len, NULL);
if (!encoded) {
/*
* TODO: Strip or HTML-encode characters, or figure out how to
* send in a differen charset.
*/
owl_function_error("Unable to encode outgoing AIM message in UCS-2");
return 1;
}
args.charset = AIM_CHARSET_UNICODE;
args.charsubset = 0;
args.flags = AIM_IMFLAGS_UNICODE;
}
args.destsn = to;
args.msg = encoded;
args.msglen = len;
args.flags |= flags;
ret=aim_im_sendch1_ext(owl_global_get_aimsess(&g), &args);
g_free(encoded);
return(ret);
}
int owl_aim_send_im(const char *to, const char *msg)
{
return owl_aim_do_send(to, msg, 0);
}
int owl_aim_send_awaymsg(const char *to, const char *msg)
{
return owl_aim_do_send(to, msg, AIM_IMFLAGS_AWAY);
}
void owl_aim_addbuddy(const char *name)
{
aim_ssi_addbuddy(owl_global_get_aimsess(&g), name, "Buddies", NULL, NULL, NULL, 0);
/*
aim_ssi_addbuddy(owl_global_get_aimsess(&g),
name,
"Buddies",
NULL, NULL, NULL,
aim_ssi_waitingforauth(owl_global_get_aimsess(&g)->ssi.local, "Buddies", name));
*/
}
void owl_aim_delbuddy(const char *name)
{
aim_ssi_delbuddy(owl_global_get_aimsess(&g), name, "Buddies");
owl_buddylist_offgoing(owl_global_get_buddylist(&g), name);
}
void owl_aim_search(const char *email)
{
int ret;
owl_function_debugmsg("owl_aim_search: doing search for %s", email);
ret=aim_search_address(owl_global_get_aimsess(&g),
aim_getconn_type(owl_global_get_aimsess(&g), AIM_CONN_TYPE_BOS),
email);
if (ret) owl_function_error("owl_aim_search: aim_search_address returned %i", ret);
}
int owl_aim_set_awaymsg(const char *msg)
{
int len;
char *foo;
/* there is a max away message lentgh we should check against */
foo=g_strdup(msg);
len=strlen(foo);
if (len>500) {
foo[500]='\0';
len=499;
}
aim_locate_setprofile(owl_global_get_aimsess(&g),
NULL, NULL, 0,
"us-ascii", foo, len);
g_free(foo);
/*
aim_bos_setprofile(owl_global_get_aimsess(&g),
owl_global_get_bosconn(&g),
NULL, NULL, 0, "us-ascii", msg,
strlen(msg), 0);
*/
return(0);
}
void owl_aim_chat_join(const char *name, int exchange)
{
int ret;
aim_conn_t *cur;
/*
OscarData *od = g->proto_data;
const char *name, *exchange;
*/
owl_function_debugmsg("Attempting to join chatroom %s exchange %i", name, exchange);
/*
name = g_hash_table_lookup(data, "room");
exchange = g_hash_table_lookup(data, "exchange");
*/
if ((cur = aim_getconn_type(owl_global_get_aimsess(&g), AIM_CONN_TYPE_CHATNAV))) {
owl_function_debugmsg("owl_aim_chat_join: chatnav exists, creating room");
aim_chatnav_createroom(owl_global_get_aimsess(&g), cur, name, exchange);
} else {
/* struct create_room *cr = g_new0(struct create_room, 1); */
owl_function_debugmsg("owl_aim_chat_join: chatnav does not exist, opening chatnav");
/*
cr->exchange = atoi(exchange);
cr->name = g_strdup(name);
od->create_rooms = g_slist_append(od->create_rooms, cr);
*/
aim_reqservice(owl_global_get_aimsess(&g),
aim_getconn_type(owl_global_get_aimsess(&g), AIM_CONN_TYPE_CHATNAV),
AIM_CONN_TYPE_CHATNAV);
aim_reqservice(owl_global_get_aimsess(&g), NULL, AIM_CONN_TYPE_CHATNAV);
aim_chatnav_createroom(owl_global_get_aimsess(&g), cur, name, exchange);
ret=aim_chat_join(owl_global_get_aimsess(&g), owl_global_get_bosconn(&g), exchange, name, 0x0000);
}
return;
/******/
/* ret=aim_chat_join(owl_global_get_aimsess(&g), owl_global_get_bosconn(&g), exchange, chatroom, 0x0000); */
/*
ret=aim_chat_join(owl_global_get_aimsess(&g),
aim_getconn_type(owl_global_get_aimsess(&g), AIM_CONN_TYPE_CHATNAV), exchange, chatroom, 0x0000);
*/
aim_reqservice(owl_global_get_aimsess(&g), owl_global_get_bosconn(&g), AIM_CONN_TYPE_CHATNAV);
ret = aim_chatnav_createroom(owl_global_get_aimsess(&g),
aim_getconn_type(owl_global_get_aimsess(&g), AIM_CONN_TYPE_CHATNAV), name, exchange);
ret=aim_chat_join(owl_global_get_aimsess(&g), owl_global_get_bosconn(&g), exchange, name, 0x0000);
}
void owl_aim_chat_leave(const char *chatroom)
{
}
int owl_aim_chat_sendmsg(const char *chatroom, const char *msg)
{
return(0);
}
/* caller must free the return */
char *owl_aim_normalize_screenname(const char *in)
{
char *out;
int i, j, k;
j=strlen(in);
out=g_new(char, j+30);
k=0;
for (i=0; i<j; i++) {
if (in[i]!=' ') {
out[k]=in[i];
k++;
}
}
out[k]='\0';
return(out);
}
int owl_aim_process_events(void)
{
aim_session_t *aimsess;
aim_conn_t *waitingconn = NULL;
struct timeval tv;
int selstat = 0;
struct owlfaim_priv *priv;
aimsess=owl_global_get_aimsess(&g);
priv = aimsess->aux_data;
/* do a select without blocking */
tv.tv_sec = 0;
tv.tv_usec = 0;
waitingconn = aim_select(aimsess, &tv, &selstat);
if (selstat == -1) {
owl_aim_logged_out();
} else if (selstat == 0) {
/* no events pending */
} else if (selstat == 1) { /* outgoing data pending */
aim_tx_flushqueue(aimsess);
} else if (selstat == 2) { /* incoming data pending */
/* printf("selstat == 2\n"); */
if (aim_get_command(aimsess, waitingconn) >= 0) {
aim_rxdispatch(aimsess);
} else {
/* printf("connection error (type 0x%04x:0x%04x)\n", waitingconn->type, waitingconn->subtype); */
/* we should have callbacks for all these, else the library will do the conn_kill for us. */
if (waitingconn->type == AIM_CONN_TYPE_RENDEZVOUS) {
if (waitingconn->subtype == AIM_CONN_SUBTYPE_OFT_DIRECTIM) {
/* printf("disconnected from %s\n", aim_directim_getsn(waitingconn)); */
aim_conn_kill(aimsess, &waitingconn);
owl_aim_logged_out();
}
} else {
aim_conn_kill(aimsess, &waitingconn);
owl_aim_logged_out();
}
if (!aim_getconn_type(aimsess, AIM_CONN_TYPE_BOS)) {
/* printf("major connection error\n"); */
owl_aim_logged_out();
/* break; */
}
}
}
/* exit(0); */
return(0);
}
static void faimtest_debugcb(aim_session_t *sess, int level, const char *format, va_list va)
{
return;
}
static int faimtest_parse_login(aim_session_t *sess, aim_frame_t *fr, ...)
{
struct owlfaim_priv *priv = sess->aux_data;
struct client_info_s info = CLIENTINFO_AIM_KNOWNGOOD;
const char *key;
va_list ap;
va_start(ap, fr);
key = va_arg(ap, const char *);
va_end(ap);
aim_send_login(sess, fr->conn, priv->screenname, priv->password, &info, key);
return(1);
}
static int faimtest_parse_authresp(aim_session_t *sess, aim_frame_t *fr, ...)
{
va_list ap;
struct aim_authresp_info *info;
aim_conn_t *bosconn;
va_start(ap, fr);
info = va_arg(ap, struct aim_authresp_info *);
va_end(ap);
/* printf("Screen name: %s\n", info->sn); */
owl_function_debugmsg("doing faimtest_parse_authresp");
owl_function_debugmsg("faimtest_parse_authresp: %s", info->sn);
/*
* Check for error.
*/
if (info->errorcode || !info->bosip || !info->cookie) {
/*
printf("Login Error Code 0x%04x\n", info->errorcode);
printf("Error URL: %s\n", info->errorurl);
*/
if (info->errorcode==0x05) {
owl_aim_login_error("Incorrect nickname or password.");
} else if (info->errorcode==0x11) {
owl_aim_login_error("Your account is currently suspended.");
} else if (info->errorcode==0x14) {
owl_aim_login_error("The AOL Instant Messenger service is temporarily unavailable.");
} else if (info->errorcode==0x18) {
owl_aim_login_error("You have been connecting and disconnecting too frequently. Wait ten minutes and try again. If you continue to try, you will need to wait even longer.");
} else if (info->errorcode==0x1c) {
owl_aim_login_error("The client version you are using is too old.");
} else {
owl_aim_login_error(NULL);
}
aim_conn_kill(sess, &fr->conn);
return(1);
}
/*
printf("Reg status: %d\n", info->regstatus);
printf("Email: %s\n", info->email);
printf("BOS IP: %s\n", info->bosip);
*/
/* printf("Closing auth connection...\n"); */
aim_conn_kill(sess, &fr->conn);
if (!(bosconn = aim_newconn(sess, AIM_CONN_TYPE_BOS, info->bosip))) {
/* printf("could not connect to BOS: internal error\n"); */
return(1);
} else if (bosconn->status & AIM_CONN_STATUS_CONNERR) {
/* printf("could not connect to BOS\n"); */
aim_conn_kill(sess, &bosconn);
return(1);
}
owl_global_set_bossconn(&g, bosconn);
owl_aim_successful_login(info->sn);
addcb_bos(sess, bosconn);
aim_sendcookie(sess, bosconn, info->cookielen, info->cookie);
return(1);
}
int faimtest_flapversion(aim_session_t *sess, aim_frame_t *fr, ...)
{
owl_function_debugmsg("doing faimtest_flapversion");
#if 0
/* XXX fix libfaim to support this */
printf("using FLAP version 0x%08x\n", /* aimutil_get32(fr->data)*/ 0xffffffff);
/*
* This is an alternate location for starting the login process.
*/
/* XXX should do more checking to make sure its really the right AUTH conn */
if (fr->conn->type == AIM_CONN_TYPE_AUTH) {
/* do NOT send a flapversion, request_login will send it if needed */
aim_request_login(sess, fr->conn, priv->screenname);
/* printf("faimtest: login request sent\n"); */
}
#endif
return 1;
}
int faimtest_conncomplete(aim_session_t *sess, aim_frame_t *fr, ...)
{
owl_function_debugmsg("doing faimtest_conncomplete");
/* owl_aim_successful_login(info->sn); */
return 1;
}
void addcb_bos(aim_session_t *sess, aim_conn_t *bosconn)
{
owl_function_debugmsg("doing addcb_bos");
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_bos, 0);
aim_conn_addhandler(sess, bosconn, 0x0013, 0x0003, ssirights, 0);
aim_conn_addhandler(sess, bosconn, 0x0013, 0x0006, ssidata, 0);
aim_conn_addhandler(sess, bosconn, 0x0013, 0x000f, ssidatanochange, 0);
aim_conn_addhandler(sess, bosconn, 0x0008, 0x0002, handlepopup, 0);
aim_conn_addhandler(sess, bosconn, 0x0009, 0x0003, faimtest_bosrights, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_REDIRECT, faimtest_handleredirect, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_STS, AIM_CB_STS_SETREPORTINTERVAL, faimtest_reportinterval, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_RIGHTSINFO, faimtest_parse_buddyrights, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_MOTD, faimtest_parse_motd, 0);
aim_conn_addhandler(sess, bosconn, 0x0004, 0x0005, faimtest_icbmparaminfo, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, faimtest_parse_connerr, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_RIGHTSINFO, faimtest_locrights, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_ONCOMING, faimtest_parse_oncoming, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_OFFGOING, faimtest_parse_offgoing, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_INCOMING, faimtest_parse_incoming_im, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_ERROR, faimtest_parse_locerr, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_MISSEDCALL, faimtest_parse_misses, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_RATECHANGE, faimtest_parse_ratechange, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_EVIL, faimtest_parse_evilnotify, 0);
aim_conn_addhandler(sess, bosconn, 0x000a, 0x0001, faimtest_parse_searcherror, 0);
aim_conn_addhandler(sess, bosconn, 0x000a, 0x0003, faimtest_parse_searchreply, 0);
/*
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOK, AIM_CB_LOK_ERROR, faimtest_parse_searcherror, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOK, 0x0003, faimtest_parse_searchreply, 0);
*/
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ERROR, faimtest_parse_msgerr, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_USERINFO, faimtest_parse_userinfo, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ACK, faimtest_parse_msgack, 0);
aim_conn_addhandler(sess, bosconn, 0x0001, 0x0001, faimtest_parse_genericerr, 0);
aim_conn_addhandler(sess, bosconn, 0x0003, 0x0001, faimtest_parse_genericerr, 0);
aim_conn_addhandler(sess, bosconn, 0x0009, 0x0001, faimtest_parse_genericerr, 0);
aim_conn_addhandler(sess, bosconn, 0x0001, 0x000b, serverpause, 0);
aim_conn_addhandler(sess, bosconn, 0x0001, 0x0012, migrate, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_OFFLINEMSG, offlinemsg, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_OFFLINEMSGCOMPLETE, offlinemsgdone, 0);
/*
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_chatnav, 0);
*/
/*
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ERROR, faimtest_ssi_parseerr, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RIGHTSINFO, faimtest_ssi_parserights, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_LIST, faimtest_ssi_parselist, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_NOLIST, faimtest_ssi_parselist, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_SRVACK, faimtest_ssi_parseack, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTH, faimtest_ssi_authgiven, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTHREQ, faimtest_ssi_authrequest, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTHREP, faimtest_ssi_authreply, 0);
aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ADDED, faimtest_ssi_gotadded, 0);
*/
return;
}
static int conninitdone_bos(aim_session_t *sess, aim_frame_t *fr, ...)
{
owl_function_debugmsg("doing coninitdone_bos");
aim_reqpersonalinfo(sess, fr->conn);
aim_ssi_reqrights(sess);
aim_ssi_reqdata(sess);
aim_locate_reqrights(sess);
aim_buddylist_reqrights(sess, fr->conn);
aim_im_reqparams(sess);
/* aim_bos_reqrights(sess, fr->conn); */ /* XXX - Don't call this with ssi */
owl_function_debugmsg("conninitdone_bos: requesting rights");
aim_bos_reqrights(sess, fr->conn); /* XXX - Don't call this with ssi */
aim_bos_setgroupperm(sess, fr->conn, AIM_FLAG_ALLUSERS);
aim_bos_setprivacyflags(sess, fr->conn, AIM_PRIVFLAGS_ALLOWIDLE | AIM_PRIVFLAGS_ALLOWMEMBERSINCE);
return(1);
}
static int conninitdone_admin(aim_session_t *sess, aim_frame_t *fr, ...)
{
aim_clientready(sess, fr->conn);
owl_function_debugmsg("conninitdone_admin: initializtion done for admin connection");
return(1);
}
int logout(aim_session_t *sess)
{
aim_session_kill(sess);
owl_aim_init();
owl_function_debugmsg("libfaim logout called");
/*
if (faimtest_init() == -1)
printf("faimtest_init failed\n");
*/
return(0);
}
/**************************************************************************************************/
static int faimtest_parse_connerr(aim_session_t *sess, aim_frame_t *fr, ...)
{
struct owlfaim_priv *priv = sess->aux_data;
va_list ap;
fu16_t code;
const char *msg;
va_start(ap, fr);
code = va_arg(ap, int);
msg = va_arg(ap, const char *);
va_end(ap);
owl_function_error("faimtest_parse_connerr: Code 0x%04x: %s\n", code, msg);
aim_conn_kill(sess, &fr->conn); /* this will break the main loop */
priv->connected = 0;
return 1;
}
static int faimtest_accountconfirm(aim_session_t *sess, aim_frame_t *fr, ...)
{
int status;
va_list ap;
va_start(ap, fr);
status = va_arg(ap, int); /* status code of confirmation request */
va_end(ap);
/* owl_function_debugmsg("faimtest_accountconfirm: Code 0x%04x: %s\n", code, msg); */
owl_function_debugmsg("faimtest_accountconfirm: account confirmation returned status 0x%04x (%s)\n", status, (status==0x0000)?"email sent":"unknown");
return 1;
}
static int faimtest_infochange(aim_session_t *sess, aim_frame_t *fr, ...)
{
fu16_t change = 0, perms, type;
int length, str;
const char *val;
va_list ap;
va_start(ap, fr);
change = va_arg(ap, int);
perms = (fu16_t)va_arg(ap, unsigned int);
type = (fu16_t)va_arg(ap, unsigned int);
length = va_arg(ap, int);
val = va_arg(ap, const char *);
str = va_arg(ap, int);
va_end(ap);
owl_function_debugmsg("faimtest_infochange: info%s: perms = %d, type = %x, length = %d, val = %s", change?" change":"", perms, type, length, str?val:"(not string)");
return(1);
}
static int faimtest_handleredirect(aim_session_t *sess, aim_frame_t *fr, ...)
{
va_list ap;
struct aim_redirect_data *redir;
owl_function_debugmsg("faimtest_handledirect:");
va_start(ap, fr);
redir = va_arg(ap, struct aim_redirect_data *);
if (redir->group == 0x0005) { /* Adverts */
} else if (redir->group == 0x0007) { /* Authorizer */
aim_conn_t *tstconn;
owl_function_debugmsg("faimtest_handledirect: autorizer");
tstconn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, redir->ip);
if (!tstconn || (tstconn->status & AIM_CONN_STATUS_RESOLVERR)) {
owl_function_error("faimtest_handleredirect: unable to reconnect with authorizer");
} else {
aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_FLAPVER, faimtest_flapversion, 0);
aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNCOMPLETE, faimtest_conncomplete, 0);
aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_admin, 0);
aim_conn_addhandler(sess, tstconn, 0x0007, 0x0007, faimtest_accountconfirm, 0);
aim_conn_addhandler(sess, tstconn, 0x0007, 0x0003, faimtest_infochange, 0);
aim_conn_addhandler(sess, tstconn, 0x0007, 0x0005, faimtest_infochange, 0);
/* Send the cookie to the Auth */
aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie);
owl_function_debugmsg("faimtest_handleredirect: sent cookie to authorizer host");
}
} else if (redir->group == 0x000d) { /* ChatNav */
owl_function_debugmsg("faimtest_handledirect: chatnav");
chatnav_redirect(sess, redir);
} else if (redir->group == 0x000e) { /* Chat */
owl_function_debugmsg("faimtest_handledirect: chat");
chat_redirect(sess, redir);
} else {
owl_function_debugmsg("faimtest_handleredirect: uh oh... got redirect for unknown service 0x%04x!!", redir->group);
}
va_end(ap);
return 1;
}
static int faimtest_icbmparaminfo(aim_session_t *sess, aim_frame_t *fr, ...)
{
struct aim_icbmparameters *params;
va_list ap;
va_start(ap, fr);
params = va_arg(ap, struct aim_icbmparameters *);
va_end(ap);
owl_function_debugmsg("faimtest_icbmparaminfo: ICBM Parameters: maxchannel = %d, default flags = 0x%08x, max msg len = %d, max sender evil = %f, max reciever evil = %f, min msg interval = %u",
params->maxchan, params->flags, params->maxmsglen, ((float)params->maxsenderwarn)/10.0, ((float)params->maxrecverwarn)/10.0, params->minmsginterval);
/*
* Set these to your taste, or client medium. Setting minmsginterval
* higher is good for keeping yourself from getting flooded (esp
* if you're on a slow connection or something where that would be
* useful).
*/
params->maxmsglen = 8000;
params->minmsginterval = 0; /* in milliseconds */
/* aim_seticbmparam(sess, params); */
aim_im_setparams(sess, params);
return 1;
}
static int faimtest_parse_buddyrights(aim_session_t *sess, aim_frame_t *fr, ...)
{
va_list ap;
fu16_t maxbuddies, maxwatchers;
va_start(ap, fr);
maxbuddies = va_arg(ap, int);
maxwatchers = va_arg(ap, int);
va_end(ap);
owl_function_debugmsg("faimtest_parse_buddyrights: Max buddies = %d / Max watchers = %d\n", maxbuddies, maxwatchers);
/* aim_ssi_reqrights(sess, fr->conn); */
aim_ssi_reqrights(sess);
return 1;
}
static int faimtest_bosrights(aim_session_t *sess, aim_frame_t *fr, ...)
{
va_list ap;
fu16_t maxpermits, maxdenies;
va_start(ap, fr);
maxpermits = va_arg(ap, int);
maxdenies = va_arg(ap, int);
va_end(ap);
owl_function_debugmsg("faimtest_bosrights: Max permit = %d / Max deny = %d\n", maxpermits, maxdenies);
aim_clientready(sess, fr->conn);
owl_function_debugmsg("officially connected to BOS.");
aim_icq_reqofflinemsgs(sess);
return 1;
}
static int faimtest_locrights(aim_session_t *sess, aim_frame_t *fr, ...)
{
va_list ap;
fu16_t maxsiglen;
va_start(ap, fr);
maxsiglen = va_arg(ap, int);
va_end(ap);
owl_function_debugmsg("faimtest_locrights: rights: max signature length = %d\n", maxsiglen);
return(1);
}
static int faimtest_reportinterval(aim_session_t *sess, aim_frame_t *fr, ...)
{
struct owlfaim_priv *priv = sess->aux_data;
va_list ap;
fu16_t interval;
va_start(ap, fr);
interval = va_arg(ap, int);
va_end(ap);
owl_function_debugmsg("faimtest_reportinterval: %d (seconds?)\n", interval);
if (!priv->connected) {
priv->connected++;
}
/* aim_reqicbmparams(sess); */
aim_im_reqparams(sess);
/* kretch */
return 1;
}
static int faimtest_parse_motd(aim_session_t *sess, aim_frame_t *fr, ...)
{
const char *msg;
fu16_t id;
va_list ap;
static int codeslen = 5;
static const char *codes[] = {
"Unknown",
"Mandatory upgrade",
"Advisory upgrade",
"System bulletin",
"Top o' the world!"
};
va_start(ap, fr);
id = va_arg(ap, int);
msg = va_arg(ap, const char *);
va_end(ap);
owl_function_debugmsg("faimtest_parse_motd: %s (%d / %s)\n", msg?msg:"nomsg", id, (id < codeslen)?codes[id]:"unknown");
return 1;
}
/*
static void printuserflags(fu16_t flags)
{
if (flags & AIM_FLAG_UNCONFIRMED) printf("UNCONFIRMED ");
if (flags & AIM_FLAG_ADMINISTRATOR) printf("ADMINISTRATOR ");
if (flags & AIM_FLAG_AOL) printf("AOL ");
if (flags & AIM_FLAG_OSCAR_PAY) printf("OSCAR_PAY ");
if (flags & AIM_FLAG_FREE) printf("FREE ");
if (flags & AIM_FLAG_AWAY) printf("AWAY ");
if (flags & AIM_FLAG_ICQ) printf("ICQ ");
if (flags & AIM_FLAG_WIRELESS) printf("WIRELESS ");
if (flags & AIM_FLAG_ACTIVEBUDDY) printf("ACTIVEBUDDY ");
return;
}
*/
static int faimtest_parse_userinfo(aim_session_t *sess, aim_frame_t *fr, ...)
{
aim_userinfo_t *userinfo;
const char *prof_encoding = NULL;
const char *prof = NULL;
fu16_t inforeq = 0;
owl_buddy *b;
va_list ap;
va_start(ap, fr);
userinfo = va_arg(ap, aim_userinfo_t *);
inforeq = (fu16_t)va_arg(ap, unsigned int);
prof_encoding = va_arg(ap, const char *);
prof = va_arg(ap, const char *);
va_end(ap);
/* right now the only reason we call this is for idle times */
owl_function_debugmsg("parse_userinfo sn: %s idle: %i", userinfo->sn, userinfo->idletime);
b=owl_buddylist_get_aim_buddy(owl_global_get_buddylist(&g),
userinfo->sn);
if (!b) return(1);
owl_buddy_set_idle_since(b, userinfo->idletime);
return(1);
/*
printf("userinfo: sn: %s\n", userinfo->sn);
printf("userinfo: warnlevel: %f\n", aim_userinfo_warnlevel(userinfo));
printf("userinfo: flags: 0x%04x = ", userinfo->flags);
printuserflags(userinfo->flags);
printf("\n");
*/
/*
printf("userinfo: membersince: %lu\n", userinfo->membersince);
printf("userinfo: onlinesince: %lu\n", userinfo->onlinesince);
printf("userinfo: idletime: 0x%04x\n", userinfo->idletime);
printf("userinfo: capabilities = %s = 0x%08lx\n", (userinfo->present & AIM_USERINFO_PRESENT_CAPABILITIES) ? "present" : "not present", userinfo->capabilities);
*/