]> sjero.net Git - linphone/blob - coreapi/chat.c
Add check in lpc2xml
[linphone] / coreapi / chat.c
1 /***************************************************************************
2  *            chat.c
3  *
4  *  Sun Jun  5 19:34:18 2005
5  *  Copyright  2005  Simon Morlat
6  *  Email simon dot morlat at linphone dot org
7  ****************************************************************************/
8
9 /*
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23  */
24  
25 #include "linphonecore.h"
26 #include "private.h"
27 #include "lpconfig.h"
28  
29  LinphoneChatRoom * linphone_core_create_chat_room(LinphoneCore *lc, const char *to){
30         LinphoneAddress *parsed_url=NULL;
31
32         if ((parsed_url=linphone_core_interpret_url(lc,to))!=NULL){
33                 LinphoneChatRoom *cr=ms_new0(LinphoneChatRoom,1);
34                 cr->lc=lc;
35                 cr->peer=linphone_address_as_string(parsed_url);
36                 cr->peer_url=parsed_url;
37                 lc->chatrooms=ms_list_append(lc->chatrooms,(void *)cr);
38                 return cr;
39         }
40         return NULL;
41  }
42  
43  
44  void linphone_chat_room_destroy(LinphoneChatRoom *cr){
45         LinphoneCore *lc=cr->lc;
46         lc->chatrooms=ms_list_remove(lc->chatrooms,(void *) cr);
47         linphone_address_destroy(cr->peer_url);
48         ms_free(cr->peer);
49  }
50
51
52 static void _linphone_chat_room_send_message(LinphoneChatRoom *cr, LinphoneChatMessage* msg){
53         const char *route=NULL;
54         const char *identity=linphone_core_find_best_identity(cr->lc,cr->peer_url,&route);
55         SalOp *op=NULL;
56         LinphoneCall *call;
57         char* content_type;
58         
59         if (lp_config_get_int(cr->lc->config,"sip","chat_use_call_dialogs",1)){
60                 if((call = linphone_core_get_call_by_remote_address(cr->lc,cr->peer))!=NULL){
61                         if (call->state==LinphoneCallConnected ||
62                         call->state==LinphoneCallStreamsRunning ||
63                         call->state==LinphoneCallPaused ||
64                         call->state==LinphoneCallPausing ||
65                         call->state==LinphoneCallPausedByRemote){
66                                 ms_message("send SIP message through the existing call.");
67                                 op = call->op;
68                                 call->pending_message=msg;
69                         }
70                 }
71         }
72         if (op==NULL){
73                 /*sending out of calls*/
74                 op = sal_op_new(cr->lc->sal);
75                 sal_op_set_route(op,route);
76                 sal_op_set_user_pointer(op, msg); /*if out of call, directly store msg*/
77         }
78         if (msg->external_body_url) {
79                 content_type=ms_strdup_printf("message/external-body; access-type=URL; URL=\"%s\"",msg->external_body_url);
80                 sal_message_send(op,identity,cr->peer,content_type,NULL);
81                 ms_free(content_type);
82         } else {
83                 sal_text_send(op, identity, cr->peer, msg->message);
84         }
85         
86         
87 }
88
89 void linphone_chat_room_send_message(LinphoneChatRoom *cr, const char *msg) {
90         _linphone_chat_room_send_message(cr,linphone_chat_room_create_message(cr,msg));
91 }
92 bool_t linphone_chat_room_matches(LinphoneChatRoom *cr, const LinphoneAddress *from){
93         if (linphone_address_get_username(cr->peer_url) && linphone_address_get_username(from) && 
94                 strcmp(linphone_address_get_username(cr->peer_url),linphone_address_get_username(from))==0) return TRUE;
95         return FALSE;
96 }
97
98 void linphone_chat_room_message_received(LinphoneChatRoom *cr, LinphoneCore *lc, LinphoneChatMessage *msg){
99         if (msg->message)
100                 //legacy API
101                 if (lc->vtable.text_received!=NULL) lc->vtable.text_received(lc, cr, msg->from, msg->message);
102         if (lc->vtable.message_received!=NULL) lc->vtable.message_received(lc, cr,msg);
103         
104 }
105
106 void linphone_core_message_received(LinphoneCore *lc, const SalMessage *sal_msg){
107         MSList *elem;
108         LinphoneChatRoom *cr=NULL;
109         LinphoneAddress *addr;
110         char *cleanfrom;
111         LinphoneChatMessage* msg;
112         addr=linphone_address_new(sal_msg->from);
113         linphone_address_clean(addr);
114         for(elem=lc->chatrooms;elem!=NULL;elem=ms_list_next(elem)){
115                 cr=(LinphoneChatRoom*)elem->data;
116                 if (linphone_chat_room_matches(cr,addr)){
117                         break;
118                 }
119                 cr=NULL;
120         }
121         cleanfrom=linphone_address_as_string(addr);
122         if (cr==NULL){
123                 /* create a new chat room */
124                 cr=linphone_core_create_chat_room(lc,cleanfrom);
125         }
126         msg = linphone_chat_room_create_message(cr, sal_msg->text);
127         linphone_chat_message_set_from(msg, cr->peer_url);
128         msg->time=sal_msg->time;
129         
130         if (sal_msg->url) {
131                 linphone_chat_message_set_external_body_url(msg, sal_msg->url);
132         }
133         linphone_address_destroy(addr);
134         linphone_chat_room_message_received(cr,lc,msg);
135         ms_free(cleanfrom);
136 }
137
138 LinphoneCore* linphone_chat_room_get_lc(LinphoneChatRoom *cr){
139         return cr->lc;
140 }
141
142 LinphoneChatRoom* linphone_chat_message_get_chat_room(LinphoneChatMessage *msg){
143         return msg->chat_room;
144 }
145
146 void linphone_chat_room_set_user_data(LinphoneChatRoom *cr, void * ud){
147         cr->user_data=ud;
148 }
149 void * linphone_chat_room_get_user_data(LinphoneChatRoom *cr){
150         return cr->user_data;
151 }
152 const LinphoneAddress* linphone_chat_room_get_peer_address(LinphoneChatRoom *cr) {
153         return cr->peer_url;
154 }
155
156 LinphoneChatMessage* linphone_chat_room_create_message(const LinphoneChatRoom *cr,const char* message) {
157         LinphoneChatMessage* msg = ms_new0(LinphoneChatMessage,1);
158         msg->chat_room=(LinphoneChatRoom*)cr;
159         msg->message=message?ms_strdup(message):NULL;
160         return msg;
161 }
162
163 void linphone_chat_message_destroy(LinphoneChatMessage* msg) {
164         if (msg->message) ms_free(msg->message);
165         if (msg->external_body_url) ms_free(msg->external_body_url);
166         if (msg->from) linphone_address_destroy(msg->from);
167         ms_free(msg);
168 }
169
170 void linphone_chat_room_send_message2(LinphoneChatRoom *cr, LinphoneChatMessage* msg,LinphoneChatMessageStateChangeCb status_cb,void* ud) {
171         msg->cb=status_cb;
172         msg->cb_ud=ud;
173         _linphone_chat_room_send_message(cr, msg);
174 }
175
176 const char* linphone_chat_message_state_to_string(const LinphoneChatMessageState state) {
177         switch (state) {
178                 case LinphoneChatMessageStateIdle:return "LinphoneChatMessageStateIdle"; 
179                 case LinphoneChatMessageStateInProgress:return "LinphoneChatMessageStateInProgress";
180                 case LinphoneChatMessageStateDelivered:return "LinphoneChatMessageStateDelivered";
181                 case  LinphoneChatMessageStateNotDelivered:return "LinphoneChatMessageStateNotDelivered";
182                 default: return "Unknown state";
183         }
184         
185 }
186
187 char* linphone_chat_message_get_message(LinphoneChatMessage* msg) {
188         return msg->message;
189 }
190
191 const LinphoneAddress* linphone_chat_message_get_peer_address(LinphoneChatMessage *msg) {
192         return linphone_chat_room_get_peer_address(msg->chat_room);
193 }
194
195 /**
196  * user pointer set function
197  */
198 void linphone_chat_message_set_user_data(LinphoneChatMessage* message,void* ud) {
199         message->message_userdata=ud;
200 }
201 /**
202  * user pointer get function
203  */
204 void* linphone_chat_message_get_user_data(const LinphoneChatMessage* message) {
205         return message->message_userdata;
206 }
207
208 const char* linphone_chat_message_get_external_body_url(const LinphoneChatMessage* message) {
209         return message->external_body_url;
210 }
211
212 void linphone_chat_message_set_external_body_url(LinphoneChatMessage* message,const char* url) {
213         if (message->external_body_url) {
214                 ms_free(message->external_body_url);
215         }
216         message->external_body_url=url?ms_strdup(url):NULL;
217 }
218 void linphone_chat_message_set_from(LinphoneChatMessage* message, const LinphoneAddress* from) {
219         if(message->from) linphone_address_destroy(message->from);
220         message->from=linphone_address_clone(from);
221         
222 }
223 LinphoneAddress* linphone_chat_message_get_from(const LinphoneChatMessage* message) {
224         return message->from;
225 }
226
227 time_t linphone_chat_message_get_time(const LinphoneChatMessage* message) {
228         return message->time;
229 }
230
231 const char * linphone_chat_message_get_text(const LinphoneChatMessage* message) {
232         return message->message;
233 }
234 LinphoneChatMessage* linphone_chat_message_clone(const LinphoneChatMessage* msg) {
235         /*struct _LinphoneChatMessage {
236          char* message;
237          LinphoneChatRoom* chat_room;
238          LinphoneChatMessageStateChangeCb cb;
239          void* cb_ud;
240          void* message_userdata;
241          char* external_body_url;
242          LinphoneAddress* from;
243          };*/
244         LinphoneChatMessage* new_message = linphone_chat_room_create_message(msg->chat_room,msg->message);
245         if (msg->external_body_url) new_message->external_body_url=ms_strdup(msg->external_body_url);
246         new_message->cb=msg->cb;
247         new_message->cb_ud=msg->cb_ud;
248         new_message->message_userdata=msg->message_userdata;
249         new_message->cb=msg->cb;
250         if (msg->from) new_message->from=linphone_address_clone(msg->from);
251         return new_message;
252 }