Changeset c81d0ef


Ignore:
Timestamp:
2007-10-06T20:28:44Z (17 years ago)
Author:
VMiklos <vmiklos@…>
Branches:
master
Children:
548bf76
Parents:
3ef1910
Message:

receiving group chat messages now works
it's a bit agressive. dialogs are not group chats, but i'll fix it later

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    r3ef1910 rc81d0ef  
    6161         * we're connected and when we aren't. */
    6262        int bfd;
    63         /* When we receive a new message id, we query the handle, then the
    64          * body. Store the handle here so that we imcb_buddy_msg() when we got
    65          * the body. */
     63        /* When we receive a new message id, we query the handle, the body and
     64         * the chatname. Store the handle and the body here so that we
     65         * imcb_buddy_msg() when we got the chatname. */
    6666        char *handle;
     67        char *body;
    6768        /* This is necessary because we send a notification when we get the
    6869         * handle. So we store the state here and then we can send a
     
    271272                                                 * (1) Request its from field
    272273                                                 * (2) Request its body
     274                                                 * (3) Query chatname
    273275                                                 */
    274276                                                g_snprintf(buf, 1024, "GET CHATMESSAGE %s FROM_HANDLE\n", id);
    275277                                                skype_write( ic, buf, strlen( buf ) );
    276278                                                g_snprintf(buf, 1024, "GET CHATMESSAGE %s BODY\n", id);
     279                                                skype_write( ic, buf, strlen( buf ) );
     280                                                g_snprintf(buf, 1024, "GET CHATMESSAGE %s CHATNAME\n", id);
    277281                                                skype_write( ic, buf, strlen( buf ) );
    278282                                        }
     
    301305                                        {
    302306                                                info += 5;
    303                                                 if(sd->handle && strlen(info))
     307                                                g_free(sd->body);
     308                                                sd->body = g_strdup(info);
     309                                        }
     310                                        else if(!strncmp(info, "CHATNAME ", 9))
     311                                        {
     312                                                info += 9;
     313                                                if(sd->handle && sd->body && strlen(info))
    304314                                                {
    305                                                         /* New body, we have everything to use imcb_buddy_msg() now! */
    306                                                         imcb_buddy_msg(ic, sd->handle, info, 0, 0);
     315                                                        struct groupchat *gc = skype_chat_by_name(ic, info);
     316                                                        if(!gc)
     317                                                        {
     318                                                                printf("gc is null, id is '%s'\n", info);
     319                                                                /* Private message */
     320                                                                imcb_buddy_msg(ic, sd->handle, sd->body, 0, 0);
     321                                                        }
     322                                                        else
     323                                                        {
     324                                                                printf("gc is not null, id is '%s'\n", info);
     325                                                                imcb_chat_msg(gc, sd->handle, sd->body, 0, 0);
     326                                                        }
    307327                                                }
    308328                                        }
     
    572592}
    573593
    574 int skype_chat_msg( struct groupchat *c, char *message, int flags )
     594void skype_chat_msg( struct groupchat *c, char *message, int flags )
    575595{
    576596        // TODO: this is just here atm to prevent a segfault
Note: See TracChangeset for help on using the changeset viewer.