2 * Dolda Connect - Modular multiuser Direct Connect-style client
3 * Copyright (C) 2005 Fredrik Tolf (fredrik@dolda2000.com)
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <doldaconnect/uilib.h>
25 #include <doldaconnect/uimisc.h>
26 #include <doldaconnect/utils.h>
30 #include <accountopt.h>
37 int readhdl, writehdl;
39 GaimRoomlist *roomlist;
42 static struct conndata *inuse = NULL;
44 static void dcfdcb(struct conndata *data, int fd, GaimInputCondition condition);
46 static void updatewrite(struct conndata *data)
49 if(data->writehdl == -1)
50 data->writehdl = gaim_input_add(data->fd, GAIM_INPUT_WRITE, (void (*)(void *, int, GaimInputCondition))dcfdcb, data);
52 if(data->writehdl != -1) {
53 gaim_input_remove(data->writehdl);
59 static void disconnected(struct conndata *data)
63 if(data->readhdl != -1) {
64 gaim_input_remove(data->readhdl);
67 if(data->writehdl != -1) {
68 gaim_input_remove(data->writehdl);
74 static int loginconv(int type, wchar_t *text, char **resp, struct conndata *data)
77 case DC_LOGIN_CONV_NOECHO:
78 if(data->gc->account->password == NULL) {
82 *resp = sstrdup(data->gc->account->password);
92 static void newpeercb(struct dc_fnetpeer *peer)
94 struct conndata *data;
95 GaimConversation *conv;
98 data = peer->fn->udata;
99 if((conv = gaim_find_chat(data->gc, peer->fn->id)) != NULL)
101 buf = sprintf2("%s", peer->fn->id, icswcstombs(peer->nick, "UTF-8", NULL));
102 gaim_conv_chat_add_user(GAIM_CONV_CHAT(conv), buf, NULL, GAIM_CBFLAGS_NONE, TRUE);
107 static void delpeercb(struct dc_fnetpeer *peer)
109 struct conndata *data;
110 GaimConversation *conv;
113 data = peer->fn->udata;
114 if((conv = gaim_find_chat(data->gc, peer->fn->id)) != NULL)
116 buf = sprintf2("%s", peer->fn->id, icswcstombs(peer->nick, "UTF-8", NULL));
117 gaim_conv_chat_remove_user(GAIM_CONV_CHAT(conv), buf, NULL);
122 static void chpeercb(struct dc_fnetpeer *peer)
126 static void fillpeerlist(struct dc_fnetnode *fn, int resp, struct conndata *data)
130 static void getfnlistcb(int resp, struct conndata *data)
132 struct dc_fnetnode *fn;
134 for(fn = dc_fnetnodes; fn != NULL; fn = fn->next)
136 dc_getpeerlistasync(fn, (void (*)(struct dc_fnetnode *, int, void *))fillpeerlist, data);
138 fn->newpeercb = newpeercb;
139 fn->delpeercb = delpeercb;
140 fn->chpeercb = chpeercb;
144 static void logincb(int err, wchar_t *reason, struct conndata *data)
146 if(err != DC_LOGIN_ERR_SUCCESS) {
149 gaim_connection_error(data->gc, "Invalid login");
152 gaim_connection_set_state(data->gc, GAIM_CONNECTED);
153 dc_queuecmd(NULL, NULL, L"notify", L"fn:chat", L"on", L"fn:act", L"on", L"fn:peer", L"on", NULL);
154 dc_getfnlistasync((void (*)(int, void *))getfnlistcb, data);
157 static void dcfdcb(struct conndata *data, int fd, GaimInputCondition condition)
159 struct dc_response *resp;
160 struct dc_intresp *ires;
161 struct dc_fnetnode *fn;
162 GaimConversation *conv;
165 if(((condition & GAIM_INPUT_READ) && dc_handleread()) || ((condition & GAIM_INPUT_WRITE) && dc_handlewrite()))
168 gaim_connection_error(data->gc, "Server has disconnected");
171 while((resp = dc_getresp()) != NULL) {
172 if(!wcscmp(resp->cmdname, L".connect")) {
173 if(resp->code == 200) {
174 gaim_connection_update_progress(data->gc, "Authenticating", 2, 3);
175 dc_loginasync(NULL, 1, (int (*)(int, wchar_t *, char **, void *))loginconv, (void (*)(int, wchar_t *, void *))logincb, data);
179 gaim_connection_error(data->gc, "Server refused connection");
182 } else if(!wcscmp(resp->cmdname, L".notify")) {
183 dc_uimisc_handlenotify(resp);
186 if((ires = dc_interpret(resp)) != NULL)
188 if((fn = dc_findfnetnode(ires->argv[0].val.num)) != NULL)
190 if(ires->argv[1].val.num)
192 /* XXX: Handle different rooms */
193 if((conv = gaim_find_chat(data->gc, fn->id)) != NULL)
195 peer = icwcstombs(ires->argv[3].val.str, "UTF-8");
196 msg = g_markup_escape_text(icswcstombs(ires->argv[4].val.str, "UTF-8", NULL), -1);
197 serv_got_chat_in(data->gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(conv)), peer, 0, msg, time(NULL));
202 peer = sprintf2("%i:%s", fn->id, icswcstombs(ires->argv[3].val.str, "UTF-8", NULL));
203 msg = g_markup_escape_text(icswcstombs(ires->argv[4].val.str, "UTF-8", NULL), -1);
204 if(!gaim_account_get_bool(data->gc->account, "represspm", FALSE) || (gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM, peer, data->gc->account) != NULL))
205 serv_got_im(data->gc, peer, msg, 0, time(NULL));
218 if((ires = dc_interpret(resp)) != NULL)
220 if((fn = dc_findfnetnode(ires->argv[0].val.num)) != NULL)
223 fn->newpeercb = newpeercb;
224 fn->delpeercb = delpeercb;
225 fn->chpeercb = chpeercb;
239 static int gi_sendchat(GaimConnection *gc, int id, const char *what, GaimMessageFlags flags)
241 struct conndata *data;
242 struct dc_fnetnode *fn;
245 data = gc->proto_data;
246 if((fn = dc_findfnetnode(id)) == NULL)
248 /* XXX: Handle chat rooms */
249 if((wwhat = icmbstowcs((char *)what, "UTF-8")) == NULL)
251 dc_queuecmd(NULL, NULL, L"sendchat", L"%%i", fn->id, L"1", L"", L"%%ls", wwhat, NULL);
257 static int gi_sendim(GaimConnection *gc, const char *who, const char *what, GaimMessageFlags flags)
259 struct conndata *data;
260 struct dc_fnetnode *fn;
261 struct dc_fnetpeer *peer;
262 wchar_t *wwho, *wwhat, *p;
265 data = gc->proto_data;
266 if((wwho = icmbstowcs((char *)who, "UTF-8")) == NULL)
268 if((p = wcschr(wwho, L':')) == NULL) {
273 id = wcstol(wwho, NULL, 10);
274 if((fn = dc_findfnetnode(id)) == NULL) {
278 for(peer = fn->peers; peer != NULL; peer = peer->next) {
279 if(!wcscmp(peer->nick, p))
286 if((wwhat = icmbstowcs((char *)what, "UTF-8")) == NULL) {
291 dc_queuecmd(NULL, NULL, L"sendchat", L"%%i", fn->id, L"0", L"%%ls", peer->nick, L"%%ls", wwhat, NULL);
298 static const char *gi_listicon(GaimAccount *a, GaimBuddy *b)
303 static char *gi_statustext(GaimBuddy *b)
307 p = gaim_buddy_get_presence(b);
308 if (gaim_presence_is_online(p) && !gaim_presence_is_available(p))
309 return(g_strdup("Away"));
313 static void gi_tiptext(GaimBuddy *b, GString *buf, gboolean full)
315 /* Nothing for now */
318 static GList *gi_statustypes(GaimAccount *act)
323 ret = g_list_append(ret, gaim_status_type_new(GAIM_STATUS_AVAILABLE, "avail", NULL, TRUE));
324 ret = g_list_append(ret, gaim_status_type_new(GAIM_STATUS_AWAY, "away", NULL, TRUE)); /* Coming up in ADC */
325 ret = g_list_append(ret, gaim_status_type_new(GAIM_STATUS_OFFLINE, "offline", NULL, TRUE));
329 static struct conndata *newconndata(void)
331 struct conndata *new;
333 new = smalloc(sizeof(*new));
334 memset(new, 0, sizeof(*new));
336 new->readhdl = new->writehdl = -1;
340 static void freeconndata(struct conndata *data)
342 if(data->roomlist != NULL)
343 gaim_roomlist_unref(data->roomlist);
346 if(data->readhdl != -1)
347 gaim_input_remove(data->readhdl);
348 if(data->writehdl != -1)
349 gaim_input_remove(data->writehdl);
355 static void gi_login(GaimAccount *act)
358 struct conndata *data;
360 gc = gaim_account_get_connection(act);
361 gc->proto_data = data = newconndata();
364 gaim_connection_error(gc, "Dolda Connect library already in use");
367 gaim_connection_update_progress(gc, "Connecting", 1, 3);
368 if((data->fd = dc_connect((char *)gaim_account_get_string(act, "server", "localhost"), -1)) < 0)
370 gaim_connection_error(gc, "Could not connect to server");
373 data->readhdl = gaim_input_add(data->fd, GAIM_INPUT_READ, (void (*)(void *, int, GaimInputCondition))dcfdcb, data);
378 static void gi_close(GaimConnection *gc)
380 struct conndata *data;
382 data = gc->proto_data;
386 static GaimRoomlist *gi_getlist(GaimConnection *gc)
388 struct conndata *data;
391 GaimRoomlistField *f;
393 struct dc_fnetnode *fn;
395 data = gc->proto_data;
396 if(data->roomlist != NULL)
397 gaim_roomlist_unref(data->roomlist);
398 data->roomlist = rl = gaim_roomlist_new(gaim_connection_get_account(gc));
400 f = gaim_roomlist_field_new(GAIM_ROOMLIST_FIELD_INT, "", "id", TRUE);
401 fields = g_list_append(fields, f);
402 f = gaim_roomlist_field_new(GAIM_ROOMLIST_FIELD_INT, "Users", "users", FALSE);
403 fields = g_list_append(fields, f);
404 gaim_roomlist_set_fields(rl, fields);
405 for(fn = dc_fnetnodes; fn != NULL; fn = fn->next) {
406 if(fn->state != DC_FNN_STATE_EST)
408 r = gaim_roomlist_room_new(GAIM_ROOMLIST_ROOMTYPE_ROOM, icswcstombs(fn->name, "UTF-8", NULL), NULL);
409 gaim_roomlist_room_add_field(rl, r, GINT_TO_POINTER(fn->id));
410 gaim_roomlist_room_add_field(rl, r, GINT_TO_POINTER(fn->numusers));
411 gaim_roomlist_room_add(rl, r);
413 gaim_roomlist_set_in_progress(rl, FALSE);
417 static void gi_cancelgetlist(GaimRoomlist *rl)
420 struct conndata *data;
422 if((gc = gaim_account_get_connection(rl->account)) == NULL)
424 data = gc->proto_data;
425 gaim_roomlist_set_in_progress(rl, FALSE);
426 if(data->roomlist == rl) {
427 data->roomlist = NULL;
428 gaim_roomlist_unref(rl);
432 static void gi_joinchat(GaimConnection *gc, GHashTable *chatdata)
434 struct conndata *data;
435 struct dc_fnetnode *fn;
436 GaimConversation *conv;
437 struct dc_fnetpeer *peer;
441 data = gc->proto_data;
442 if((fn = dc_findfnetnode(GPOINTER_TO_INT(g_hash_table_lookup(chatdata, "id")))) == NULL)
444 if(gaim_find_chat(gc, fn->id) != NULL)
446 conv = serv_got_joined_chat(data->gc, fn->id, icswcstombs(fn->name, "UTF-8", NULL));
448 for(peer = fn->peers; peer != NULL; peer = peer->next) {
449 buf = icwcstombs(peer->nick, "UTF-8");
450 ul = g_list_append(ul, buf);
451 fl = g_list_append(fl, GINT_TO_POINTER(0));
453 gaim_conv_chat_add_users(GAIM_CONV_CHAT(conv), ul, NULL, fl, FALSE);
454 for(c = ul; c != NULL; c = c->next)
460 static char *gi_cbname(GaimConnection *gc, int id, const char *who)
462 return(g_strdup_printf("%i:%s", id, who));
465 static GaimPluginProtocolInfo protinfo = {
466 .options = OPT_PROTO_PASSWORD_OPTIONAL,
467 .icon_spec = NO_BUDDY_ICONS,
468 .list_icon = gi_listicon,
469 .status_text = gi_statustext,
470 .tooltip_text = gi_tiptext,
471 .status_types = gi_statustypes,
474 .roomlist_get_list = gi_getlist,
475 .roomlist_cancel = gi_cancelgetlist,
476 .join_chat = gi_joinchat,
477 .chat_send = gi_sendchat,
478 .send_im = gi_sendim,
479 .get_cb_real_name = gi_cbname,
482 static GaimPluginInfo info = {
483 .magic = GAIM_PLUGIN_MAGIC,
484 .major_version = GAIM_MAJOR_VERSION,
485 .minor_version = GAIM_MINOR_VERSION,
486 .type = GAIM_PLUGIN_PROTOCOL,
487 .priority = GAIM_PRIORITY_DEFAULT,
489 .name = "Dolda Connect",
491 .summary = "Dolda Connect chat plugin",
492 .description = "Allows Gaim to be used as a chat user interface for the Dolda Connect daemon",
493 .author = "Fredrik Tolf <fredrik@dolda2000.com>",
494 .homepage = "http://www.dolda2000.com/~fredrik/doldaconnect/",
495 .extra_info = &protinfo
498 static void init(GaimPlugin *pl)
500 GaimAccountOption *opt;
503 opt = gaim_account_option_string_new("Server", "server", "localhost");
504 protinfo.protocol_options = g_list_append(protinfo.protocol_options, opt);
505 opt = gaim_account_option_int_new("Port", "port", -1);
506 protinfo.protocol_options = g_list_append(protinfo.protocol_options, opt);
507 opt = gaim_account_option_bool_new("Do not pop up private messages automatically", "represspm", FALSE);
508 protinfo.protocol_options = g_list_append(protinfo.protocol_options, opt);
511 GAIM_INIT_PLUGIN(dolcon, init, info);