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