]> sjero.net Git - linphone/blob - coreapi/sipsetup.c
Merge branch 'master' into dev_sal
[linphone] / coreapi / sipsetup.c
1 /*
2 linphone
3 Copyright (C) 2009  Simon MORLAT (simon.morlat@linphone.org)
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
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.
14
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.
18 */
19
20 #ifdef HAVE_CONFIG_H
21 #include "../config.h"
22 #endif
23
24 #include "linphonecore.h"
25
26 extern SipSetup linphone_sip_login;
27
28 static SipSetup *all_sip_setups[]={
29         &linphone_sip_login,
30         NULL
31 };
32
33 static MSList *registered_sip_setups=NULL;
34
35 void sip_setup_register(SipSetup *ss){
36         registered_sip_setups=ms_list_append(registered_sip_setups,ss);
37 }
38
39 void sip_setup_register_all(void){
40         SipSetup **p=all_sip_setups;
41         ms_load_plugins(LINPHONE_PLUGINS_DIR);
42         while(*p!=NULL){
43                 sip_setup_register(*p);
44                 p++;
45         }
46 }
47
48 const MSList * linphone_core_get_sip_setups(LinphoneCore *lc){
49         return registered_sip_setups;
50 }
51
52 SipSetup *sip_setup_lookup(const char *type_name){
53         MSList *elem;
54         for(elem=registered_sip_setups;elem!=NULL;elem=elem->next){
55                 SipSetup *ss=(SipSetup*)elem->data;
56                 if ( strcasecmp(ss->name,type_name)==0){
57                         if (!ss->initialized){
58                                 if (ss->init!=NULL) ss->init();
59                                 ss->initialized=TRUE;
60                                 if (ss->capabilities==0){
61                                         ms_error("%s SipSetup isn't capable of anything ?",ss->name);
62                                 }
63                         }
64                         return ss;
65                 }
66         }
67         ms_warning("no %s setup manager declared.",type_name);
68         return NULL;
69 }
70
71 void sip_setup_unregister_all(void){
72         MSList *elem;
73         for(elem=registered_sip_setups;elem!=NULL;elem=elem->next){
74                 SipSetup *ss=(SipSetup*)elem->data;
75                 if (ss->initialized){
76                         if (ss->exit) ss->exit();
77                         ss->initialized=FALSE;
78                 }
79         }
80 }
81
82 void buddy_lookup_request_set_key(BuddyLookupRequest *req, const char *key){
83         if (req->key!=NULL) {
84                 ms_free(req->key);
85                 req->key=NULL;
86         }
87         if (key) req->key=ms_strdup(key);
88 }
89
90 void buddy_lookup_request_set_max_results(BuddyLookupRequest *req, int ncount){
91         req->max_results=ncount;
92 }
93
94 void buddy_lookup_request_free(BuddyLookupRequest *req){
95         if (req->key) ms_free(req->key);
96         if (req->results){
97                 ms_list_for_each(req->results,(void (*)(void*))buddy_info_free);
98                 ms_list_free(req->results);
99         }
100         ms_free(req);
101 }
102
103 LinphoneProxyConfig *sip_setup_context_get_proxy_config(const SipSetupContext *ctx){
104         return ctx->cfg;
105 }
106
107 SipSetupContext *sip_setup_context_new(SipSetup *s, struct _LinphoneProxyConfig *cfg){
108         SipSetupContext *obj=(SipSetupContext*)ms_new0(SipSetupContext,1);
109         obj->funcs=s;
110         obj->data=NULL;
111         obj->cfg=cfg;
112         if (obj->funcs->init_instance){
113                 obj->funcs->init_instance(obj);
114         }
115         return obj;
116 }
117
118 unsigned int sip_setup_get_capabilities(SipSetup *s){
119         return s->capabilities;
120 }
121
122 int sip_setup_context_get_capabilities(SipSetupContext *ctx){
123         return ctx->funcs->capabilities;
124 }
125
126 int sip_setup_context_create_account(SipSetupContext * ctx, const char *uri, const char *passwd){
127         if (ctx->funcs->create_account)
128                 return ctx->funcs->create_account(ctx,uri, passwd);
129         else return -1;
130 }
131
132 int sip_setup_context_account_exists(SipSetupContext *ctx, const char *uri){
133         if (ctx->funcs->account_exists)
134                 return ctx->funcs->account_exists(ctx,uri);
135         return -1;
136 }
137
138 int sip_setup_context_login_account(SipSetupContext * ctx, const char *uri, const char *passwd){
139         LinphoneAddress *from=linphone_address_new(uri);
140         if (from==NULL) {
141                 ms_warning("Fail to parse %s",uri);
142                 return -1;
143         }
144         strncpy(ctx->domain,linphone_address_get_domain(from),sizeof(ctx->domain));
145         strncpy(ctx->username,linphone_address_get_username(from),sizeof(ctx->username));
146         linphone_address_destroy(from);
147         if (ctx->funcs->login_account)
148                 return ctx->funcs->login_account(ctx,uri,passwd);
149         return -1;
150 }
151
152 int sip_setup_context_get_proxy(SipSetupContext *ctx, const char *domain, char *proxy, size_t sz){
153         if (ctx->funcs->get_proxy)
154                 return ctx->funcs->get_proxy(ctx,domain ? domain : ctx->domain,proxy,sz);
155         return -1;
156 }
157
158 int sip_setup_context_get_stun_servers(SipSetupContext *ctx, char *stun1, char *stun2, size_t size){
159         if (ctx->funcs->get_stun_servers)
160                 return ctx->funcs->get_stun_servers(ctx,stun1,stun2,size);
161         return -1;
162 }
163
164 int sip_setup_context_get_relay(SipSetupContext *ctx,char *relay, size_t size){
165         if (ctx->funcs->get_relay)
166                 return ctx->funcs->get_relay(ctx,relay,size);
167         return -1;
168 }
169
170 BuddyLookupRequest *sip_setup_context_create_buddy_lookup_request(SipSetupContext *ctx){
171         if (ctx->funcs->buddy_lookup_funcs)
172                 return ctx->funcs->buddy_lookup_funcs->request_create(ctx);
173         return NULL;
174 }
175
176 int sip_setup_context_buddy_lookup_submit(SipSetupContext *ctx , BuddyLookupRequest *req){
177         if (ctx->funcs->buddy_lookup_funcs)
178                 return ctx->funcs->buddy_lookup_funcs->request_submit(ctx,req);
179         return -1;
180 }
181
182 int sip_setup_context_buddy_lookup_free(SipSetupContext *ctx , BuddyLookupRequest *req){
183         if (ctx->funcs->buddy_lookup_funcs)
184                 return ctx->funcs->buddy_lookup_funcs->request_free(ctx,req);
185         return -1;
186 }
187
188 const char * sip_setup_context_get_notice(SipSetupContext *ctx){
189         if (ctx->funcs->get_notice)
190                 return ctx->funcs->get_notice(ctx);
191         return NULL;
192 }
193
194 const char ** sip_setup_context_get_domains(SipSetupContext *ctx){
195         if (ctx->funcs->get_domains)
196                 return ctx->funcs->get_domains(ctx);
197         return NULL;
198 }
199
200
201 int sip_setup_context_logout(SipSetupContext *ctx){
202         if (ctx->funcs->logout_account){
203                 return ctx->funcs->logout_account(ctx);
204         }
205         return -1;
206 }
207
208 void sip_setup_context_free(SipSetupContext *ctx){
209         if (ctx->funcs->uninit_instance){
210                 ctx->funcs->uninit_instance(ctx);
211         }
212         ms_free(ctx);
213 }
214
215
216 BuddyInfo *buddy_info_new(){
217         return ms_new0(BuddyInfo,1);
218 }
219
220 void buddy_info_free(BuddyInfo *info){
221         if (info->image_data!=NULL)
222                 ms_free(info->image_data);
223         ms_free(info);
224 }