/*************************************************************************** * chat.c * * Sun Jun 5 19:34:18 2005 * Copyright 2005 Simon Morlat * Email simon dot morlat at linphone dot org ****************************************************************************/ /* * 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "linphonecore.h" #include "private.h" #include LinphoneChatRoom * linphone_core_create_chat_room(LinphoneCore *lc, const char *to) { char *real_url=NULL; osip_from_t *parsed_url=NULL; if (linphone_core_interpret_url(lc,to,&real_url,&parsed_url)){ LinphoneChatRoom *cr=ms_new0(LinphoneChatRoom,1); cr->lc=lc; cr->peer=real_url; cr->peer_url=parsed_url; lc->chatrooms=ms_list_append(lc->chatrooms,(void *)cr); return cr; } return NULL; } void linphone_chat_room_destroy(LinphoneChatRoom *cr){ LinphoneCore *lc=cr->lc; lc->chatrooms=ms_list_remove(lc->chatrooms,(void *) cr); osip_from_free(cr->peer_url); ms_free(cr->peer); } void linphone_chat_room_send_message(LinphoneChatRoom *cr, const char *msg){ const char *identity=linphone_core_get_identity(cr->lc); eXosip_message(cr->peer,(char*)identity, (char*)linphone_core_get_route(cr->lc),(char*)msg); } bool_t linphone_chat_room_matches(LinphoneChatRoom *cr, osip_from_t *from){ if (strcmp(cr->peer_url->url->username,from->url->username)==0) return TRUE; return FALSE; } void linphone_chat_room_text_received(LinphoneChatRoom *cr, LinphoneCore *lc, const char *from, const char *msg){ if (lc->vtable.text_received!=NULL) lc->vtable.text_received(lc, cr, from, msg); } void linphone_core_text_received(LinphoneCore *lc, const char *from, const char *msg){ MSList *elem; LinphoneChatRoom *cr=NULL; char *cleanfrom; osip_from_t *from_url; osip_from_init(&from_url); if (osip_from_parse(from_url,from)<0){ ms_warning("linphone_core_text_received: could not parse %s.",from); osip_from_free(from_url); return; } from_2char_without_params(from_url,&cleanfrom); for(elem=lc->chatrooms;elem!=NULL;elem=ms_list_next(elem)){ cr=(LinphoneChatRoom*)elem->data; if (linphone_chat_room_matches(cr,from_url)){ break; } cr=NULL; } if (cr==NULL){ /* create a new chat room */ cr=linphone_core_create_chat_room(lc,cleanfrom); } linphone_chat_room_text_received(cr,lc,cleanfrom,msg); osip_from_free(from_url); osip_free(cleanfrom); } void linphone_chat_room_set_user_data(LinphoneChatRoom *cr, void * ud){ cr->user_data=ud; } void * linphone_chat_room_get_user_data(LinphoneChatRoom *cr){ return cr->user_data; }