]> sjero.net Git - linphone/blob - coreapi/proxy.c
add more dial plan support
[linphone] / coreapi / proxy.c
1 /*
2 linphone
3 Copyright (C) 2000  Simon MORLAT (simon.morlat@linphone.org)
4 */
5 /*
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU Library General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20  
21 #include "linphonecore.h"
22 #include "sipsetup.h"
23 #include "lpconfig.h"
24 #include "private.h"
25 #include "mediastreamer2/mediastream.h"
26
27 #include <ctype.h>
28
29
30 void linphone_proxy_config_write_all_to_config_file(LinphoneCore *lc){
31         MSList *elem;
32         int i;
33         if (!linphone_core_ready(lc)) return;
34         
35         for(elem=lc->sip_conf.proxies,i=0;elem!=NULL;elem=ms_list_next(elem),i++){
36                 LinphoneProxyConfig *cfg=(LinphoneProxyConfig*)elem->data;
37                 linphone_proxy_config_write_to_config_file(lc->config,cfg,i);
38         }
39         /*to ensure removed configs are erased:*/
40         linphone_proxy_config_write_to_config_file(lc->config,NULL,i);
41         lp_config_set_int(lc->config,"sip","default_proxy",linphone_core_get_default_proxy(lc,NULL));
42 }
43
44 static void linphone_proxy_config_init(LinphoneCore* lc,LinphoneProxyConfig *obj){
45         memset(obj,0,sizeof(LinphoneProxyConfig));
46         obj->magic=linphone_proxy_config_magic;
47         obj->expires=LP_CONFIG_DEFAULT_INT((lc?lc->config:NULL),"reg_expires",3600);
48         obj->dial_prefix=ms_strdup(LP_CONFIG_DEFAULT_STRING((lc?lc->config:NULL),"dial_prefix",'\0'));
49         obj->dial_escape_plus=LP_CONFIG_DEFAULT_INT((lc?lc->config:NULL),"dial_escape_plus",0);
50 }
51
52 /**
53  * @addtogroup proxies
54  * @{
55 **/
56
57 /**
58  * @deprecated, use #linphone_core_create_proxy_config instead
59  *Creates an empty proxy config.
60 **/
61 LinphoneProxyConfig *linphone_proxy_config_new() {
62         return linphone_core_create_proxy_config(NULL);
63 }
64 LinphoneProxyConfig * linphone_core_create_proxy_config(LinphoneCore *lc) {
65         LinphoneProxyConfig *obj=NULL;
66         obj=ms_new(LinphoneProxyConfig,1);
67         linphone_proxy_config_init(lc,obj);
68         return obj;
69 }
70
71
72
73 /**
74  * Destroys a proxy config.
75  * 
76  * @note: LinphoneProxyConfig that have been removed from LinphoneCore with
77  * linphone_core_remove_proxy_config() must not be freed.
78 **/
79 void linphone_proxy_config_destroy(LinphoneProxyConfig *obj){
80         if (obj->reg_proxy!=NULL) ms_free(obj->reg_proxy);
81         if (obj->reg_identity!=NULL) ms_free(obj->reg_identity);
82         if (obj->reg_route!=NULL) ms_free(obj->reg_route);
83         if (obj->ssctx!=NULL) sip_setup_context_free(obj->ssctx);
84         if (obj->realm!=NULL) ms_free(obj->realm);
85         if (obj->type!=NULL) ms_free(obj->type);
86         if (obj->dial_prefix!=NULL) ms_free(obj->dial_prefix);
87         if (obj->op) sal_op_release(obj->op);
88         if (obj->publish_op) sal_op_release(obj->publish_op);
89 }
90
91 /**
92  * Returns a boolean indicating that the user is sucessfully registered on the proxy.
93 **/
94 bool_t linphone_proxy_config_is_registered(const LinphoneProxyConfig *obj){
95         return obj->state == LinphoneRegistrationOk;
96 }
97
98 /**
99  * Sets the proxy address
100  *
101  * Examples of valid sip proxy address are:
102  * - IP address: sip:87.98.157.38
103  * - IP address with port: sip:87.98.157.38:5062
104  * - hostnames : sip:sip.example.net
105 **/
106 int linphone_proxy_config_set_server_addr(LinphoneProxyConfig *obj, const char *server_addr){
107         LinphoneAddress *addr=NULL;
108         char *modified=NULL;
109         
110         if (obj->reg_proxy!=NULL) ms_free(obj->reg_proxy);
111         obj->reg_proxy=NULL;
112         
113         if (server_addr!=NULL && strlen(server_addr)>0){
114                 if (strstr(server_addr,"sip:")==NULL){
115                         modified=ms_strdup_printf("sip:%s",server_addr);
116                         addr=linphone_address_new(modified);
117                         ms_free(modified);
118                 }
119                 if (addr==NULL)
120                         addr=linphone_address_new(server_addr);
121                 if (addr){
122                         obj->reg_proxy=linphone_address_as_string_uri_only(addr);
123                         linphone_address_destroy(addr);
124                 }else{
125                         ms_warning("Could not parse %s",server_addr);
126                         return -1;
127                 }
128         }
129         return 0;
130 }
131
132 /**
133  * Sets the user identity as a SIP address.
134  *
135  * This identity is normally formed with display name, username and domain, such 
136  * as:
137  * Alice <sip:alice@example.net>
138  * The REGISTER messages will have from and to set to this identity.
139  *
140 **/
141 int linphone_proxy_config_set_identity(LinphoneProxyConfig *obj, const char *identity){
142         LinphoneAddress *addr;
143         if (identity!=NULL && strlen(identity)>0){
144                 addr=linphone_address_new(identity);
145                 if (!addr || linphone_address_get_username(addr)==NULL){
146                         ms_warning("Invalid sip identity: %s",identity);
147                         if (addr)
148                                 linphone_address_destroy(addr);
149                         return -1;
150                 }else{
151                         if (obj->reg_identity!=NULL) {
152                                 ms_free(obj->reg_identity);
153                                 obj->reg_identity=NULL;
154                         }
155                         obj->reg_identity=ms_strdup(identity);
156                         if (obj->realm){
157                                 ms_free(obj->realm);
158                         }
159                         obj->realm=ms_strdup(linphone_address_get_domain(addr));
160                         linphone_address_destroy(addr);
161                         return 0;
162                 }
163         }
164         return -1;
165 }
166
167 const char *linphone_proxy_config_get_domain(const LinphoneProxyConfig *cfg){
168         return cfg->realm;
169 }
170
171 /**
172  * Sets a SIP route.
173  * When a route is set, all outgoing calls will go to the route's destination if this proxy
174  * is the default one (see linphone_core_set_default_proxy() ).
175 **/
176 int linphone_proxy_config_set_route(LinphoneProxyConfig *obj, const char *route)
177 {
178         if (obj->reg_route!=NULL){
179                 ms_free(obj->reg_route);
180                 obj->reg_route=NULL;
181         }
182         if (route!=NULL){
183                 SalAddress *addr;
184                 char *tmp;
185                 /*try to prepend 'sip:' */
186                 if (strstr(route,"sip:")==NULL){
187                         tmp=ms_strdup_printf("sip:%s",route);
188                 }else tmp=ms_strdup(route);
189                 addr=sal_address_new(tmp);
190                 if (addr!=NULL){
191                         sal_address_destroy(addr);
192                 }else{
193                         ms_free(tmp);
194                         tmp=NULL;
195                 }
196                 obj->reg_route=tmp;
197         }
198         return 0;
199 }
200
201 bool_t linphone_proxy_config_check(LinphoneCore *lc, LinphoneProxyConfig *obj){
202         if (obj->reg_proxy==NULL){
203                 if (lc->vtable.display_warning)
204                         lc->vtable.display_warning(lc,_("The sip proxy address you entered is invalid, it must start with \"sip:\""
205                                                 " followed by a hostname."));
206                 return FALSE;
207         }
208         if (obj->reg_identity==NULL){
209                 if (lc->vtable.display_warning)
210                         lc->vtable.display_warning(lc,_("The sip identity you entered is invalid.\nIt should look like "
211                                         "sip:username@proxydomain, such as sip:alice@example.net"));
212                 return FALSE;
213         }
214         return TRUE;
215 }
216
217 /**
218  * Indicates whether a REGISTER request must be sent to the proxy.
219 **/
220 void linphone_proxy_config_enableregister(LinphoneProxyConfig *obj, bool_t val){
221         obj->reg_sendregister=val;
222 }
223
224 /**
225  * Sets the registration expiration time in seconds.
226 **/
227 void linphone_proxy_config_expires(LinphoneProxyConfig *obj, int val){
228         if (val<0) val=600;
229         obj->expires=val;
230 }
231
232 void linphone_proxy_config_enable_publish(LinphoneProxyConfig *obj, bool_t val){
233         obj->publish=val;
234 }
235 /**
236  * Starts editing a proxy configuration.
237  *
238  * Because proxy configuration must be consistent, applications MUST
239  * call linphone_proxy_config_edit() before doing any attempts to modify
240  * proxy configuration (such as identity, proxy address and so on).
241  * Once the modifications are done, then the application must call
242  * linphone_proxy_config_done() to commit the changes.
243 **/
244 void linphone_proxy_config_edit(LinphoneProxyConfig *obj){
245         if (obj->reg_sendregister){
246                 /* unregister */
247                 if (obj->state != LinphoneRegistrationNone && obj->state != LinphoneRegistrationCleared) {
248                         sal_unregister(obj->op);
249                 }
250         }
251 }
252
253 void linphone_proxy_config_apply(LinphoneProxyConfig *obj,LinphoneCore *lc)
254 {
255         obj->lc=lc;
256         linphone_proxy_config_done(obj);
257 }
258
259 static char *guess_contact_for_register(LinphoneProxyConfig *obj){
260         LinphoneAddress *proxy=linphone_address_new(obj->reg_proxy);
261         char *ret=NULL;
262         const char *host;
263         if (proxy==NULL) return NULL;
264         host=linphone_address_get_domain (proxy);
265         if (host!=NULL){
266                 char localip[LINPHONE_IPADDR_SIZE];
267                 char *tmp;
268                 LCSipTransports tr;
269                 LinphoneAddress *contact;
270                 
271                 linphone_core_get_local_ip(obj->lc,host,localip);
272                 contact=linphone_address_new(obj->reg_identity);
273                 linphone_address_set_domain (contact,localip);
274                 linphone_address_set_port_int(contact,linphone_core_get_sip_port(obj->lc));
275                 linphone_address_set_display_name(contact,NULL);
276                 
277                 linphone_core_get_sip_transports(obj->lc,&tr);
278                 if (tr.udp_port <= 0) {
279                         if (tr.tcp_port>0) {
280                                 sal_address_set_param(contact,"transport","tcp");
281                         } else if (tr.tls_port>0) {
282                                 sal_address_set_param(contact,"transport","tls");
283                         }
284                 }
285                 tmp=linphone_address_as_string_uri_only(contact);
286                 if (obj->contact_params)
287                         ret=ms_strdup_printf("<%s;%s>",tmp,obj->contact_params);
288                 else ret=ms_strdup_printf("<%s>",tmp);
289                 linphone_address_destroy(contact);
290                 ms_free(tmp);
291         }
292         linphone_address_destroy (proxy);
293         return ret;
294 }
295
296 static void linphone_proxy_config_register(LinphoneProxyConfig *obj){
297         if (obj->reg_sendregister){
298                 char *contact;
299                 if (obj->op)
300                         sal_op_release(obj->op);
301                 obj->op=sal_op_new(obj->lc->sal);
302                 contact=guess_contact_for_register(obj);
303                 sal_op_set_contact(obj->op,contact);
304                 ms_free(contact);
305                 sal_op_set_user_pointer(obj->op,obj);
306                 if (sal_register(obj->op,obj->reg_proxy,obj->reg_identity,obj->expires)==0) {
307                         linphone_proxy_config_set_state(obj,LinphoneRegistrationProgress,"Registration in progress");
308                 } else {
309                         linphone_proxy_config_set_state(obj,LinphoneRegistrationFailed,"Registration failed");
310                 }
311         }
312 }
313
314 /**
315  * Refresh a proxy registration.
316  * This is useful if for example you resuming from suspend, thus IP address may have changed.
317 **/
318 void linphone_proxy_config_refresh_register(LinphoneProxyConfig *obj){
319         if (obj->reg_sendregister && obj->op){
320                 if (sal_register_refresh(obj->op,obj->expires) == 0) {
321                         linphone_proxy_config_set_state(obj,LinphoneRegistrationProgress, "Refresh registration");
322                 }
323         }
324 }
325
326
327 /**
328  * Sets a dialing prefix to be automatically prepended when inviting a number with 
329  * linphone_core_invite();
330  * This dialing prefix shall usually be the country code of the country where the user is living.
331  *
332 **/
333 void linphone_proxy_config_set_dial_prefix(LinphoneProxyConfig *cfg, const char *prefix){
334         if (cfg->dial_prefix!=NULL){
335                 ms_free(cfg->dial_prefix);
336                 cfg->dial_prefix=NULL;
337         }
338         if (prefix && prefix[0]!='\0') cfg->dial_prefix=ms_strdup(prefix);
339 }
340
341 /**
342  * Returns dialing prefix.
343  *
344  * 
345 **/
346 const char *linphone_proxy_config_get_dial_prefix(const LinphoneProxyConfig *cfg){
347         return cfg->dial_prefix;
348 }
349
350 /**
351  * Sets whether liblinphone should replace "+" by international calling prefix in dialed numbers (passed to
352  * #linphone_core_invite ).
353  *
354 **/
355 void linphone_proxy_config_set_dial_escape_plus(LinphoneProxyConfig *cfg, bool_t val){
356         cfg->dial_escape_plus=val;
357 }
358
359 /**
360  * Returns whether liblinphone should replace "+" by "00" in dialed numbers (passed to
361  * #linphone_core_invite ).
362  *
363 **/
364 bool_t linphone_proxy_config_get_dial_escape_plus(const LinphoneProxyConfig *cfg){
365         return cfg->dial_escape_plus;
366 }
367 /*
368  * http://en.wikipedia.org/wiki/Telephone_numbering_plan
369  * http://en.wikipedia.org/wiki/Telephone_numbers_in_Europe
370  */
371 typedef struct dial_plan{
372         const char *country;
373         const char* iso_country_code; /* ISO 3166-1 alpha-2 code, ex: FR for France*/
374         char  ccc[8]; /*country calling code*/
375         int nnl; /*maximum national number length*/
376         const char * icp; /*international call prefix, ex: 00 in europe*/
377         
378 }dial_plan_t;
379
380 /* TODO: fill with information for all countries over the world*/
381
382 static dial_plan_t const dial_plans[]={
383         {"Afghanistan"                  ,"AF"           , "93"      , 9         , "00"  },
384         {"Albania"                      ,"AL"           , "355"     , 9         , "00"  },
385         {"Algeria"                      ,"DZ"           , "213"     , 9         , "00"  },
386         {"American Samoa"               ,"AS"           , "1"       , 10        , "011" },
387         {"Andorra"                      ,"AD"           , "376"     , 6         , "00"  },
388         {"Angola"                       ,"AO"           , "244"     , 9         , "00"  },
389         {"Anguilla"                     ,"AI"           , "1"       , 10        , "011" },
390         {"Antigua and Barbuda"          ,"AG"           , "1"       , 10        , "011" },
391         {"Argentina"                    ,"AR"           , "54"      , 10        , "00"  },
392         {"Armenia"                      ,"AM"           , "374"     , 8         , "00"  },
393         {"Aruba"                        ,"AW"           , "297"     , 7         , "011" },
394         {"Australia"                    ,"AU"           , "61"      , 9     , "0011"},
395         {"Austria"                      ,"AT"           , "43"      , 10        , "00"  },
396         {"Azerbaijan"                   ,"AZ"       , "994"     , 9             , "00"  },
397         {"Bahamas"                      ,"BS"           , "1"       , 10    , "011"     },
398         {"Bahrain"                      ,"BH"           , "973"     , 8     , "00"  },
399         {"Bangladesh"                   ,"BD"           , "880"     , 10    , "00"  },
400         {"Barbados"                     ,"BB"           , "1"       , 10    , "011"     },
401     {"Belarus"                      ,"BY"               , "375"     , 9     , "00"  },
402         {"Belgium"                      ,"BE"           , "32"      , 9     , "00"  },
403         {"Belize"                       ,"BZ"           , "501"     , 7     , "00"  },
404         {"Benin"                        ,"BJ"           , "229"     , 8     , "00"      },
405         {"Bermuda"                      ,"BM"           , "1"       , 10    , "011" },
406         {"Bhutan"                       ,"BT"           , "975"     , 8     , "00"  },
407         {"Bolivia"                      ,"BO"           , "591"     , 8     , "00"      },
408         {"Bosnia and Herzegovina"       ,"BA"           , "387"     , 8     , "00"  },
409         {"Botswana"                     ,"BW"           , "267"     , 8     , "00"  },
410     {"Brazil"                       ,"BR"               , "55"      , 10        , "00"  },
411         {"Brunei Darussalam"            ,"BN"           , "673"     , 7         , "00"  },
412         {"Bulgaria"                     ,"BG"           , "359"     , 9         , "00"  },
413         {"Burkina Faso"                 ,"BF"           , "226"     , 8         , "00"  },
414         {"Burundi"                      ,"BI"           , "257"     , 8     , "011" },
415     {"Cambodia"                     ,"KH"               , "855"     , 9         , "00"  },
416         {"Cameroon"                     ,"CM"           , "237"     , 8         , "00"  },
417         {"Canada"                       ,"CA"           , "1"       , 10        , "011" },
418         {"Cape Verde"                   ,"CV"           , "238"     , 7         , "00"  },
419         {"Cayman Islands"               ,"KY"           , "1"       , 10        , "011" },
420         {"Central African Republic"     ,"CF"           , "236"     , 8     , "00"  },
421         {"Chad"                         ,"TD"           , "235"     , 8         , "00"  },
422         {"Chile"                        ,"CL"           , "56"      , 9     , "00"  },
423         {"China"                        ,"CN"           , "86"      , 11        , "00"  },
424     {"Colombia"                     ,"CO"       , "57"      , 10        , "00"  },
425     {"Comoros"                      ,"KM"               , "269"     , 7     , "00"      },
426     {"Congo"                        ,"CG"               , "242"     , 9         , "00"  },
427     {"Congo Democratic Republic"        ,"CD"           , "243"     , 9         , "00"  },
428     {"Cook Islands"                 ,"CK"               , "682"     , 5         , "00"  },
429     {"Costa Rica"                   ,"CR"               , "506"     , 8     , "00"      },
430     {"C\99te d'Ivoire"                ,"AD"               , "225"     , 8     , "00"  },
431     {"Croatia"                      ,"HR"               , "385"     , 9         , "00"  },
432     {"Cuba"                         ,"CU"               , "53"      , 8     , "119" },
433     {"Cyprus"                       ,"CY"               , "357"     , 8     , "00"      },
434     {"Czech Republic"               ,"CZ"               , "420"     , 9     , "00"  },
435     {"Denmark"                      ,"DK"               , "45"      , 8         , "00"  },
436     {"Djibouti"                     ,"DJ"               , "253"     , 8         , "00"  },
437     {"Dominica"                     ,"DM"               , "1"       , 10        , "011" },
438     {"Dominican Republic"               ,"DO"           , "1"       , 10        , "011" },
439     {"Ecuador"                      ,"EC"       , "593"     , 9         , "00"  },
440     {"Egypt"                        ,"EG"               , "20"      , 10        , "00"  },
441     {"El Salvador"                  ,"SV"               , "503"     , 8         , "00"  },
442     {"Equatorial Guinea"            ,"GQ"               , "240"     , 9         , "00"  },
443     {"Eritrea"                      ,"ER"               , "291"     , 7         , "00"  },
444     {"Estonia"                      ,"EE"               , "372"     , 8     , "00"      },
445     {"Ethiopia"                     ,"ET"               , "251"     , 9     , "00"  },
446     {"Falkland Islands"             ,"FK"               , "500"     , 5         , "00"  },
447     {"Faroe Islands"                ,"FO"               , "298"     , 6     , "00"  },
448     {"Fiji"                         ,"FJ"               , "679"     , 7     , "00"      },
449     {"Finland"                      ,"FI"               , "358"     , 9     , "00"  },
450     {"France"                       ,"FR"               , "33"      , 9         , "00"  },
451     {"French Guiana"                            ,"GF"           , "594"     , 9         , "00"  },
452     {"French Polynesia"             ,"PF"               , "689"     , 6     , "00"  },
453     {"Gabon"                        ,"GA"               , "241"     , 8     , "00"  },
454     {"Gambia"                       ,"GM"       , "220"     , 7         , "00"  },
455     {"Georgia"                      ,"GE"               , "995"     , 9     , "00"      },
456     {"Germany"                      ,"DE"               , "49"      , 11        , "00"  },
457     {"Ghana"                        ,"GH"               , "233"     , 9         , "00"  },
458     {"Gibraltar"                    ,"GI"               , "350"     , 8         , "00"  },
459     {"Greece"                       ,"GR"               , "30"      ,10     , "00"      },
460     {"Greenland"                    ,"GL"               , "299"     , 6         , "00"  },
461     {"Grenada"                      ,"GD"               , "1"       , 10        , "011" },
462     {"Guadeloupe"                   ,"GP"               , "590"     , 9     , "00"  },
463     {"Guam"                         ,"GU"               , "1"       , 10        , "011" },
464     {"Guatemala"                    ,"GT"               , "502"     , 8     , "00"  },
465     {"Guinea"                       ,"GN"               , "224"     , 8         , "00"  },
466     {"Guinea-Bissau"                            ,"GW"           , "245"     , 7         , "00"  },
467     {"Guyana"                       ,"GY"               , "592"     , 7     , "001" },
468     {"Haiti"                        ,"HT"               , "509"     , 8     , "00"  },
469     {"Honduras"                     ,"HN"       , "504"     , 8         , "00"  },
470     {"Hong Kong"                    ,"HK"               , "852"     , 8     , "001"     },
471     {"Hungary"                      ,"HU"               , "36"      , 9     , "00"  },
472     {"Iceland"                      ,"IS"               , "354"     , 9     , "00"  },
473     {"India"                        ,"IN"               , "91"      , 10    , "00"  },
474     {"Indonesia"                    ,"ID"               , "62"      , 10        , "001" },
475     {"Iran"                         ,"IR"               , "98"      , 10        , "00"  },
476     {"Iraq"                         ,"IQ"               , "964"     , 10        , "00"  },
477     {"Ireland"                      ,"IE"               , "353"     , 9         , "00"  },
478     {"Israel"                       ,"IL"               , "972"     , 9     , "00"      },
479     {"Italy"                        ,"IT"               , "39"      , 10        , "00"  },
480     {"Jamaica"                      ,"JM"               , "1"       , 10        , "011" },
481     {"Japan"                        ,"JP"               , "81"      , 10        , "010" },
482     {"Jordan"                       ,"JO"               , "962"     , 9     , "00"      },
483     {"Kazakhstan"                   ,"KZ"               , "7"       , 10    , "00"  },
484     {"Kenya"                        ,"KE"               , "254"     , 9         , "000" },
485     {"Kiribati"                     ,"KI"               , "686"     , 5         , "00"  },
486     {"Korea, North"                 ,"KP"               , "850"     , 12        , "99"  },
487     {"Korea, South"                 ,"KR"       , "82"      , 12        , "001" },
488     {"Kuwait"                       ,"KW"               , "965"     , 8     , "00"      },
489     {"Kyrgyzstan"                   ,"KG"               , "996"     , 9     , "00"  },
490     {"Laos"                         ,"LA"               , "856"     , 10    , "00"  },
491     {"Latvia"                       ,"LV"               , "371"     , 8     , "00"      },
492     {"Lebanon"                      ,"LB"               , "961"     , 7     , "00"      },
493     {"Lesotho"                      ,"LS"               , "266"     , 8         , "00"  },
494     {"Liberia"                      ,"LR"               , "231"     , 8         , "00"  },
495     {"Libya"                        ,"LY"               , "218"     , 8         , "00"  },
496     {"Liechtenstein"                ,"LI"               , "423"     , 7     , "00"      },
497     {"Lithuania"                    ,"LT"               , "370"     , 8         , "00"  },
498     {"Luxembourg"                   ,"LU"               , "352"     , 9         , "00"  },
499     {"Macau"                        ,"MO"               , "853"     , 8     , "00"  },
500     {"Macedonia"                    ,"MK"               , "389"     , 8     , "00"      },
501     {"Madagascar"                   ,"MG"               , "261"     , 9     , "00"  },
502     {"Malawi"                       ,"MW"               , "265"     , 9         , "00"  },
503     {"Malaysia"                     ,"MY"               , "60"      , 9         , "00"  },
504     {"Maldives"                     ,"MV"               , "960"     , 7     , "00"  },
505     {"Mali"                         ,"ML"               , "223"     , 8     , "00"  },
506     {"Malta"                        ,"MT"       , "356"     , 8         , "00"  },
507     {"Marshall Islands"                         ,"MH"           , "692"     , 7     , "011"     },
508     {"Martinique"                   ,"MQ"               , "596"     , 9     , "00"  },
509     {"Mauritania"                   ,"MR"               , "222"     , 8     , "00"  },
510     {"Mauritius"                    ,"MU"               , "230"     , 7     , "00"      },
511     {"Mayotte Island"               ,"YT"               , "262"     , 9     , "00"      },
512     {"Mexico"                       ,"MX"               , "52"      , 10        , "00"  },
513     {"Micronesia"                   ,"FM"               , "691"     , 7         , "011" },
514     {"Moldova"                      ,"MD"               , "373"     , 8         , "00"  },
515     {"Monaco"                       ,"MC"               , "377"     , 8     , "00"      },
516     {"Mongolia"                     ,"MN"               , "976"     , 8     , "001" },
517     {"Montenegro"                   ,"ME"               , "382"     , 8         , "00"  },
518     {"Montserrat"                   ,"MS"               , "664"     , 10        , "011" },
519     {"Morocco"                      ,"MA"               , "212"     , 9     , "00"      },
520     {"Mozambique"                   ,"MZ"               , "258"     , 9     , "00"  },
521     {"Myanmar"                      ,"MM"               , "95"      , 8         , "00"  },
522     {"Namibia"                      ,"NA"               , "264"     , 9         , "00"  },
523     {"Nauru"                        ,"NR"               , "674"     , 7     , "00"  },
524     {"Nepal"                        ,"NP"               , "43"      , 10        , "00"  },
525     {"Netherlands"                  ,"NL"       , "31"      , 9         , "00"  },
526     {"New Caledonia"                            ,"NC"           , "687"     , 6     , "00"      },
527     {"New Zealand"                  ,"NZ"               , "64"      , 10        , "00"  },
528     {"Nicaragua"                    ,"NI"               , "505"     , 8     , "00"  },
529     {"Niger"                        ,"NE"               , "227"     , 8     , "00"      },
530     {"Nigeria"                      ,"NG"               , "234"     , 10        , "009" },
531     {"Niue"                         ,"NU"               , "683"     , 4         , "00"  },
532     {"Norfolk Island"               ,"NF"               , "672"     , 5         , "00"  },
533     {"Northern Mariana Islands"     ,"MP"               , "1"       , 10        , "011" },
534     {"Norway"                       ,"NO"               , "47"      , 8     , "00"      },
535     {"Oman"                         ,"OM"               , "968"     , 8         , "00"  },
536     {"Pakistan"                     ,"PK"               , "92"      , 10        , "00"  },
537     {"Palau"                        ,"PW"               , "680"     , 7     , "011" },
538     {"Palestine"                    ,"PS"               , "970"     , 9     , "00"      },
539     {"Panama"                       ,"PA"               , "507"     , 8     , "00"  },
540     {"Papua New Guinea"             ,"PG"               , "675"     , 8         , "00"  },
541     {"Paraguay"                     ,"PY"               , "595"     , 9         , "00"  },
542     {"Peru"                         ,"PE"               , "51"      , 9     , "00"  },
543     {"Philippines"                  ,"PH"               , "63"      , 10        , "00"  },
544     {"Poland"                       ,"PL"       , "48"      , 9         , "00"  },
545     {"Portugal"                     ,"PT"               , "351"     , 9     , "00"      },
546     {"Puerto Rico"                  ,"PR"               , "1"       , 10        , "011" },
547     {"Qatar"                        ,"QA"               , "974"     , 8     , "00"  },
548     {"R\8eunion Island"                           ,"RE"           , "262"     , 9     , "011"     },
549     {"Romania"                      ,"RO"               , "40"      , 9     , "00"      },
550     {"Russian Federation"           ,"RU"               , "7"       , 10        , "8"   },
551     {"Rwanda"                       ,"RW"               , "250"     , 9         , "00"  },
552     {"Saint Helena"                 ,"SH"               , "290"     , 4         , "00"  },
553     {"Saint Kitts and Nevis"            ,"KN"           , "1"       , 10        , "011" },
554     {"Saint Lucia"                  ,"LC"               , "1"       , 10        , "011" },
555     {"Saint Pierre and Miquelon"    ,"PM"               , "508"     , 6         , "00"  },
556     {"Saint Vincent and the Grenadines","VC"    , "1"       , 10        , "011" },
557     {"Samoa"                        ,"WS"               , "685"     , 7     , "0"       },
558     {"San Marino"                   ,"SM"               , "378"     , 10        , "00"  },
559     {"S\8bo Tom\8e and Pr\92ncipe"        ,"ST"               , "239"     , 7         , "00"  },
560     {"Saudi Arabia"                 ,"SA"               , "966"     , 9         , "00"  },
561     {"Senegal"                      ,"SN"               , "221"     , 9     , "00"  },
562     {"Serbia"                       ,"RS"               , "381"     , 9     , "00"  },
563     {"Seychelles"                   ,"SC"       , "248"     , 7         , "00"  },
564     {"Sierra Leone"                 ,"SL"               , "232"     , 8     , "00"      },
565     {"Singapore"                    ,"SG"               , "65"      , 8     , "001" },
566     {"Slovakia"                     ,"SK"               , "421"     , 9     , "00"  },
567     {"Slovenia"                     ,"SI"               , "386"     , 8     , "00"      },
568     {"Solomon Islands"              ,"SB"               , "677"     , 7     , "00"      },
569     {"Somalia"                      ,"SO"               , "252"     , 8         , "00"  },
570     {"South Africa"                 ,"ZA"               , "27"      , 9         , "00"  },
571     {"Spain"                        ,"ES"               , "34"      , 9         , "00"  },
572     {"Sri Lanka"                    ,"LK"               , "94"      , 9     , "00"      },
573     {"Sudan"                        ,"SD"               , "249"     , 9         , "00"  },
574     {"Suriname"                     ,"SR"               , "597"     , 7         , "00"  },
575     {"Swaziland"                    ,"SZ"               , "268"     , 8     , "00"  },
576     {"Sweden"                       ,"SE"               , "1"       , 9     , "00"      },
577     {"Switzerland"                  ,"XK"               , "41"      , 9         , "00"  },
578     {"Syria"                        ,"SY"               , "963"     , 9         , "00"  },
579     {"Taiwan"                       ,"TW"               , "886"     , 9         , "810" },
580     {"Tajikistan"                   ,"TJ"               , "992"     , 9     , "002" },
581     {"Tanzania"                     ,"TZ"               , "255"     , 9     , "000" },
582     {"Thailand"                     ,"TH"       , "66"      , 9         , "001" },
583     {"Togo"                         ,"TG"               , "228"     , 8     , "00"      },
584     {"Tokelau"                      ,"TK"               , "690"     , 4     , "00"  },
585     {"Tonga"                        ,"TO"               , "676"     , 5     , "00"  },
586     {"Trinidad and Tobago"                      ,"TT"           , "1"       , 10    , "011"     },
587     {"Tunisia"                      ,"TN"               , "216"     , 8     , "00"      },
588     {"Turkey"                       ,"TR"               , "90"      , 10        , "00"  },
589     {"Turkmenistan"                 ,"TM"               , "993"     , 8         , "00"  },
590     {"Turks and Caicos Islands"     ,"TC"               , "1"       , 7         , "0"   },
591     {"Tuvalu"                       ,"TV"               , "688"     , 5     , "00"      },
592     {"Uganda"                       ,"UG"               , "256"     , 9     , "000" },
593     {"Ukraine"                      ,"UA"               , "380"     , 9         , "00"  },
594     {"United Arab Emirates"             ,"AE"           , "971"     , 9     , "00"  },
595     {"United Kingdom"               ,"UK"               , "44"      , 10        , "00"  },
596     {"United States"                ,"US"               , "1"       , 10        , "011" },
597     {"Uruguay"                      ,"UY"               , "598"     , 8         , "00"  },
598     {"Uzbekistan"                   ,"UZ"               , "998"     , 9         , "8"   },
599     {"Vanuatu"                      ,"VU"               , "678"     , 7     , "00"  },
600     {"Venezuela"                    ,"VE"               , "58"      , 10        , "00"  },
601     {"Vietnam"                      ,"VN"               , "84"      , 9     , "00"  },
602     {"Wallis and Futuna"                ,"WF"           , "681"     , 5         , "00"  },
603     {"Yemen"                        ,"YE"               , "967"     , 9     , "00"  },
604     {"Zambia"                       ,"ZM"               , "260"     , 9     , "00"      },
605     {"Zimbabwe"                     ,"ZW"               , "263"     , 9     , "00"  },
606         {NULL                           ,NULL       ,  ""       , 0     , NULL  }
607 };
608 static dial_plan_t most_common_dialplan={ "generic" ,"", "", 10, "00"};
609
610 int linphone_dial_plan_lookup_ccc_from_iso(const char* iso) {
611         dial_plan_t* dial_plan;
612         for (dial_plan=(dial_plan_t*)dial_plans; dial_plan->country!=NULL; dial_plan++) {
613                 if (strcmp(iso, dial_plan->iso_country_code)==0) {
614                         return atoi(dial_plan->ccc);
615                 }
616         }
617         return -1;
618 }
619
620 static void lookup_dial_plan(const char *ccc, dial_plan_t *plan){
621         int i;
622         for(i=0;dial_plans[i].country!=NULL;++i){
623                 if (strcmp(ccc,dial_plans[i].ccc)==0){
624                         *plan=dial_plans[i];
625                         return;
626                 }
627         }
628         /*else return a generic "most common" dial plan*/
629         *plan=most_common_dialplan;
630         strcpy(plan->ccc,ccc);
631 }
632
633 static bool_t is_a_phone_number(const char *username){
634         const char *p;
635         for(p=username;*p!='\0';++p){
636                 if (isdigit(*p) || 
637                     *p==' ' ||
638                     *p=='.' ||
639                     *p=='-' ||
640                     *p==')' ||
641                         *p=='(' ||
642                         *p=='/' ||
643                         *p=='+') continue;
644                 else return FALSE;
645         }
646         return TRUE;
647 }
648
649 static char *flatten_number(const char *number){
650         char *result=ms_malloc0(strlen(number)+1);
651         char *w=result;
652         const char *r;
653         for(r=number;*r!='\0';++r){
654                 if (*r=='+' || isdigit(*r)){
655                         *w++=*r;
656                 }
657         }
658         *w++='\0';
659         return result;
660 }
661
662 static void replace_plus(const char *src, char *dest, size_t destlen, const char *icp){
663         int i=0;
664         
665         if (icp && src[0]=='+' && (destlen>(i=strlen(icp))) ){
666                 src++;
667                 strcpy(dest,icp);
668         }
669         
670         for(;(i<destlen-1) && *src!='\0';++i){
671                 dest[i]=*src;
672                 src++;
673         }
674         dest[i]='\0';
675 }
676
677
678 int linphone_proxy_config_normalize_number(LinphoneProxyConfig *proxy, const char *username, char *result, size_t result_len){
679         int numlen;
680         if (is_a_phone_number(username)){
681                 char *flatten;
682                 flatten=flatten_number(username);
683                 ms_message("Flattened number is '%s'",flatten);
684                 
685                 if (proxy->dial_prefix==NULL || proxy->dial_prefix[0]=='\0'){
686                         /*no prefix configured, nothing else to do*/
687                         strncpy(result,flatten,result_len);
688                         ms_free(flatten);
689                         return 0;
690                 }else{
691                         dial_plan_t dialplan;
692                         lookup_dial_plan(proxy->dial_prefix,&dialplan);
693                         ms_message("Using dialplan '%s'",dialplan.country);
694                         if (flatten[0]=='+' || strstr(flatten,dialplan.icp)==flatten){
695                                 /* the number has international prefix or +, so nothing to do*/
696                                 ms_message("Prefix already present.");
697                                 /*eventually replace the plus*/
698                                 replace_plus(flatten,result,result_len,proxy->dial_escape_plus ? dialplan.icp : NULL);
699                                 ms_free(flatten);
700                                 return 0;
701                         }else{
702                                 int i=0;
703                                 int skip;
704                                 numlen=strlen(flatten);
705                                 /*keep at most national number significant digits */
706                                 skip=numlen-dialplan.nnl;
707                                 if (skip<0) skip=0;
708                                 /*first prepend internation calling prefix or +*/
709                                 if (proxy->dial_escape_plus){
710                                         strncpy(result,dialplan.icp,result_len);
711                                         i+=strlen(dialplan.icp);
712                                 }else{
713                                         strncpy(result,"+",result_len);
714                                         i+=1;
715                                 }
716                                 /*add prefix*/
717                                 if (result_len-i>strlen(dialplan.ccc)){
718                                         strcpy(result+i,dialplan.ccc);
719                                         i+=strlen(dialplan.ccc);
720                                 }
721                                 /*add user digits */
722                                 strncpy(result+i,flatten+skip,result_len-i-1);
723                                 ms_free(flatten);
724                         }
725                 }
726         }else strncpy(result,username,result_len);
727         return 0;
728 }
729
730 /**
731  * Commits modification made to the proxy configuration.
732 **/
733 int linphone_proxy_config_done(LinphoneProxyConfig *obj)
734 {
735         if (!linphone_proxy_config_check(obj->lc,obj)) return -1;
736         obj->commit=TRUE;
737         linphone_proxy_config_write_all_to_config_file(obj->lc);
738         return 0;
739 }
740
741 void linphone_proxy_config_set_realm(LinphoneProxyConfig *cfg, const char *realm)
742 {
743         if (cfg->realm!=NULL) {
744                 ms_free(cfg->realm);
745                 cfg->realm=NULL;
746         }
747         if (realm!=NULL) cfg->realm=ms_strdup(realm);
748 }
749
750 int linphone_proxy_config_send_publish(LinphoneProxyConfig *proxy,
751                                LinphoneOnlineStatus presence_mode){
752         int err;
753         SalOp *op=sal_op_new(proxy->lc->sal);
754         err=sal_publish(op,linphone_proxy_config_get_identity(proxy),
755             linphone_proxy_config_get_identity(proxy),linphone_online_status_to_sal(presence_mode));
756         if (proxy->publish_op!=NULL)
757                 sal_op_release(proxy->publish_op);
758         proxy->publish_op=op;
759         return err;
760 }
761
762 /**
763  * Returns the route set for this proxy configuration.
764 **/
765 const char *linphone_proxy_config_get_route(const LinphoneProxyConfig *obj){
766         return obj->reg_route;
767 }
768
769 /**
770  * Returns the SIP identity that belongs to this proxy configuration.
771  *
772  * The SIP identity is a SIP address (Display Name <sip:username@@domain> )
773 **/
774 const char *linphone_proxy_config_get_identity(const LinphoneProxyConfig *obj){
775         return obj->reg_identity;
776 }
777
778 /**
779  * Returns TRUE if PUBLISH request is enabled for this proxy.
780 **/
781 bool_t linphone_proxy_config_publish_enabled(const LinphoneProxyConfig *obj){
782         return obj->publish;
783 }
784
785 /**
786  * Returns the proxy's SIP address.
787 **/
788 const char *linphone_proxy_config_get_addr(const LinphoneProxyConfig *obj){
789         return obj->reg_proxy;
790 }
791
792 /**
793  * Returns the duration of registration.
794 **/
795 int linphone_proxy_config_get_expires(const LinphoneProxyConfig *obj){
796         return obj->expires;
797 }
798
799 /**
800  * Returns TRUE if registration to the proxy is enabled.
801 **/
802 bool_t linphone_proxy_config_register_enabled(const LinphoneProxyConfig *obj){
803         return obj->reg_sendregister;
804 }
805
806 /**
807  * Set optional contact parameters that will be added to the contact information sent in the registration.
808  * @param obj the proxy config object
809  * @param contact_params a string contaning the additional parameters in text form, like "myparam=something;myparam2=something_else"
810  *
811  * The main use case for this function is provide the proxy additional information regarding the user agent, like for example unique identifier or apple push id.
812  * As an example, the contact address in the SIP register sent will look like <sip:joe@15.128.128.93:50421;apple-push-id=43143-DFE23F-2323-FA2232>.
813 **/
814 void linphone_proxy_config_set_contact_parameters(LinphoneProxyConfig *obj, const char *contact_params){
815         if (obj->contact_params) {
816                 ms_free(obj->contact_params);
817                 obj->contact_params=NULL;
818         }
819         if (contact_params){
820                 obj->contact_params=ms_strdup(contact_params);
821         }
822 }
823
824 /**
825  * Returns previously set contact parameters.
826 **/
827 const char *linphone_proxy_config_get_contact_parameters(const LinphoneProxyConfig *obj){
828         return obj->contact_params;
829 }
830
831 struct _LinphoneCore * linphone_proxy_config_get_core(const LinphoneProxyConfig *obj){
832         return obj->lc;
833 }
834
835 /**
836  * Add a proxy configuration.
837  * This will start registration on the proxy, if registration is enabled.
838 **/
839 int linphone_core_add_proxy_config(LinphoneCore *lc, LinphoneProxyConfig *cfg){
840         if (!linphone_proxy_config_check(lc,cfg)) {
841                 return -1;
842         }
843         if (ms_list_find(lc->sip_conf.proxies,cfg)!=NULL){
844                 ms_warning("ProxyConfig already entered, ignored.");
845                 return 0;
846         }
847         lc->sip_conf.proxies=ms_list_append(lc->sip_conf.proxies,(void *)cfg);
848         linphone_proxy_config_apply(cfg,lc);
849         return 0;
850 }
851
852 /**
853  * Removes a proxy configuration.
854  *
855  * LinphoneCore will then automatically unregister and place the proxy configuration
856  * on a deleted list. For that reason, a removed proxy does NOT need to be freed.
857 **/
858 void linphone_core_remove_proxy_config(LinphoneCore *lc, LinphoneProxyConfig *cfg){
859         /* check this proxy config is in the list before doing more*/
860         if (ms_list_find(lc->sip_conf.proxies,cfg)==NULL){
861                 ms_error("linphone_core_remove_proxy_config: LinphoneProxyConfig %p is not known by LinphoneCore (programming error?)",cfg);
862                 return;
863         }
864         lc->sip_conf.proxies=ms_list_remove(lc->sip_conf.proxies,(void *)cfg);
865         /* add to the list of destroyed proxies, so that the possible unREGISTER request can succeed authentication */
866         lc->sip_conf.deleted_proxies=ms_list_append(lc->sip_conf.deleted_proxies,(void *)cfg);
867         cfg->deletion_date=ms_time(NULL);
868         if (cfg->state==LinphoneRegistrationOk){
869                 /* this will unREGISTER */
870                 linphone_proxy_config_edit(cfg);
871         }
872         if (lc->default_proxy==cfg){
873                 lc->default_proxy=NULL;
874         }
875         linphone_proxy_config_write_all_to_config_file(lc);
876 }
877 /**
878  * Erase all proxies from config.
879  *
880  * @ingroup proxy
881 **/
882 void linphone_core_clear_proxy_config(LinphoneCore *lc){
883         MSList* list=ms_list_copy(linphone_core_get_proxy_config_list((const LinphoneCore*)lc));
884         MSList* copy=list;
885         for(;list!=NULL;list=list->next){
886                 linphone_core_remove_proxy_config(lc,(LinphoneProxyConfig *)list->data);
887         }
888         ms_list_free(copy);
889         linphone_proxy_config_write_all_to_config_file(lc);
890 }
891 /**
892  * Sets the default proxy.
893  *
894  * This default proxy must be part of the list of already entered LinphoneProxyConfig.
895  * Toggling it as default will make LinphoneCore use the identity associated with
896  * the proxy configuration in all incoming and outgoing calls.
897 **/
898 void linphone_core_set_default_proxy(LinphoneCore *lc, LinphoneProxyConfig *config){
899         /* check if this proxy is in our list */
900         if (config!=NULL){
901                 if (ms_list_find(lc->sip_conf.proxies,config)==NULL){
902                         ms_warning("Bad proxy address: it is not in the list !");
903                         lc->default_proxy=NULL;
904                         return ;
905                 }
906         }
907         lc->default_proxy=config;
908         if (linphone_core_ready(lc))
909                 lp_config_set_int(lc->config,"sip","default_proxy",linphone_core_get_default_proxy(lc,NULL));
910 }       
911
912 void linphone_core_set_default_proxy_index(LinphoneCore *lc, int index){
913         if (index<0) linphone_core_set_default_proxy(lc,NULL);
914         else linphone_core_set_default_proxy(lc,ms_list_nth_data(lc->sip_conf.proxies,index));
915 }
916
917 /**
918  * Returns the default proxy configuration, that is the one used to determine the current identity.
919 **/
920 int linphone_core_get_default_proxy(LinphoneCore *lc, LinphoneProxyConfig **config){
921         int pos=-1;
922         if (config!=NULL) *config=lc->default_proxy;
923         if (lc->default_proxy!=NULL){
924                 pos=ms_list_position(lc->sip_conf.proxies,ms_list_find(lc->sip_conf.proxies,(void *)lc->default_proxy));
925         }
926         return pos;
927 }
928
929 /**
930  * Returns an unmodifiable list of entered proxy configurations.
931 **/
932 const MSList *linphone_core_get_proxy_config_list(const LinphoneCore *lc){
933         return lc->sip_conf.proxies;
934 }
935
936 void linphone_proxy_config_write_to_config_file(LpConfig *config, LinphoneProxyConfig *obj, int index)
937 {
938         char key[50];
939
940         sprintf(key,"proxy_%i",index);
941         lp_config_clean_section(config,key);
942         if (obj==NULL){
943                 return;
944         }
945         if (obj->type!=NULL){
946                 lp_config_set_string(config,key,"type",obj->type);
947         }
948         if (obj->reg_proxy!=NULL){
949                 lp_config_set_string(config,key,"reg_proxy",obj->reg_proxy);
950         }
951         if (obj->reg_route!=NULL){
952                 lp_config_set_string(config,key,"reg_route",obj->reg_route);
953         }
954         if (obj->reg_identity!=NULL){
955                 lp_config_set_string(config,key,"reg_identity",obj->reg_identity);
956         }
957         if (obj->contact_params!=NULL){
958                 lp_config_set_string(config,key,"contact_params",obj->contact_params);
959         }
960         lp_config_set_int(config,key,"reg_expires",obj->expires);
961         lp_config_set_int(config,key,"reg_sendregister",obj->reg_sendregister);
962         lp_config_set_int(config,key,"publish",obj->publish);
963         lp_config_set_int(config,key,"dial_escape_plus",obj->dial_escape_plus);
964         lp_config_set_string(config,key,"dial_prefix",obj->dial_prefix);
965 }
966
967
968
969 LinphoneProxyConfig *linphone_proxy_config_new_from_config_file(LpConfig *config, int index)
970 {
971         const char *tmp;
972         const char *identity;
973         const char *proxy;
974         LinphoneProxyConfig *cfg;
975         char key[50];
976         
977         sprintf(key,"proxy_%i",index);
978
979         if (!lp_config_has_section(config,key)){
980                 return NULL;
981         }
982
983         cfg=linphone_proxy_config_new();
984
985         identity=lp_config_get_string(config,key,"reg_identity",NULL);  
986         proxy=lp_config_get_string(config,key,"reg_proxy",NULL);
987         
988         linphone_proxy_config_set_identity(cfg,identity);
989         linphone_proxy_config_set_server_addr(cfg,proxy);
990         
991         tmp=lp_config_get_string(config,key,"reg_route",NULL);
992         if (tmp!=NULL) linphone_proxy_config_set_route(cfg,tmp);
993
994         linphone_proxy_config_set_contact_parameters(cfg,lp_config_get_string(config,key,"contact_parameters",NULL));
995         
996         linphone_proxy_config_expires(cfg,lp_config_get_int(config,key,"reg_expires",LP_CONFIG_DEFAULT_INT(config,"reg_expires",600)));
997         linphone_proxy_config_enableregister(cfg,lp_config_get_int(config,key,"reg_sendregister",0));
998         
999         linphone_proxy_config_enable_publish(cfg,lp_config_get_int(config,key,"publish",0));
1000
1001         linphone_proxy_config_set_dial_escape_plus(cfg,lp_config_get_int(config,key,"dial_escape_plus",LP_CONFIG_DEFAULT_INT(config,"dial_escape_plus",0)));
1002         linphone_proxy_config_set_dial_prefix(cfg,lp_config_get_string(config,key,"dial_prefix",LP_CONFIG_DEFAULT_STRING(config,"dial_prefix",NULL)));
1003         
1004         tmp=lp_config_get_string(config,key,"type",NULL);
1005         if (tmp!=NULL && strlen(tmp)>0) 
1006                 linphone_proxy_config_set_sip_setup(cfg,tmp);
1007
1008         return cfg;
1009 }
1010
1011 static void linphone_proxy_config_activate_sip_setup(LinphoneProxyConfig *cfg){
1012         SipSetupContext *ssc;
1013         SipSetup *ss=sip_setup_lookup(cfg->type);
1014         LinphoneCore *lc=linphone_proxy_config_get_core(cfg);
1015         unsigned int caps;
1016         if (!ss) return ;
1017         ssc=sip_setup_context_new(ss,cfg);
1018         cfg->ssctx=ssc;
1019         if (cfg->reg_identity==NULL){
1020                 ms_error("Invalid identity for this proxy configuration.");
1021                 return;
1022         }
1023         caps=sip_setup_context_get_capabilities(ssc);
1024         if (caps & SIP_SETUP_CAP_ACCOUNT_MANAGER){
1025                 if (sip_setup_context_login_account(ssc,cfg->reg_identity,NULL)!=0){
1026                         if (lc->vtable.display_warning){
1027                                 char *tmp=ms_strdup_printf(_("Could not login as %s"),cfg->reg_identity);
1028                                 lc->vtable.display_warning(lc,tmp);
1029                                 ms_free(tmp);
1030                         }
1031                         return;
1032                 }
1033         }
1034         if (caps & SIP_SETUP_CAP_PROXY_PROVIDER){
1035                 char proxy[256];
1036                 if (sip_setup_context_get_proxy(ssc,NULL,proxy,sizeof(proxy))==0){
1037                         linphone_proxy_config_set_server_addr(cfg,proxy);
1038                 }else{
1039                         ms_error("Could not retrieve proxy uri !");
1040                 }
1041         }
1042         
1043 }
1044
1045 SipSetup *linphone_proxy_config_get_sip_setup(LinphoneProxyConfig *cfg){
1046         if (cfg->ssctx!=NULL) return cfg->ssctx->funcs;
1047         if (cfg->type!=NULL){
1048                 return sip_setup_lookup(cfg->type);
1049         }
1050         return NULL;
1051 }
1052
1053 void linphone_proxy_config_update(LinphoneProxyConfig *cfg){
1054         LinphoneCore *lc=cfg->lc;
1055         if (cfg->commit){
1056                 if (cfg->type && cfg->ssctx==NULL){
1057                         linphone_proxy_config_activate_sip_setup(cfg);
1058                 }
1059                 if (!lc->sip_conf.register_only_when_network_is_up || lc->network_reachable)
1060                         linphone_proxy_config_register(cfg);
1061                 if (cfg->publish && cfg->publish_op==NULL){
1062                         linphone_proxy_config_send_publish(cfg,lc->presence_mode);
1063                 }
1064                 cfg->commit=FALSE;
1065         }
1066 }
1067
1068 void linphone_proxy_config_set_sip_setup(LinphoneProxyConfig *cfg, const char *type){
1069         if (cfg->type)
1070                 ms_free(cfg->type);
1071         cfg->type=ms_strdup(type);
1072         if (linphone_proxy_config_get_addr(cfg)==NULL){
1073                 /*put a placeholder so that the sip setup gets saved into the config */
1074                 linphone_proxy_config_set_server_addr(cfg,"sip:undefined");
1075         }
1076 }
1077
1078 SipSetupContext *linphone_proxy_config_get_sip_setup_context(LinphoneProxyConfig *cfg){
1079         return cfg->ssctx;
1080 }
1081
1082 /**
1083  * @}
1084 **/
1085
1086 LinphoneAccountCreator *linphone_account_creator_new(struct _LinphoneCore *core, const char *type){
1087         LinphoneAccountCreator *obj;
1088         LinphoneProxyConfig *cfg;
1089         SipSetup *ss=sip_setup_lookup(type);
1090         SipSetupContext *ssctx;
1091         if (!ss){
1092                 return NULL;
1093         }
1094         if (!(sip_setup_get_capabilities(ss) & SIP_SETUP_CAP_ACCOUNT_MANAGER)){
1095                 ms_error("%s cannot manage accounts.",type);
1096                 return NULL;
1097         }
1098         obj=ms_new0(LinphoneAccountCreator,1);
1099         cfg=linphone_proxy_config_new();
1100         ssctx=sip_setup_context_new(ss,cfg);
1101         obj->lc=core;
1102         obj->ssctx=ssctx;
1103         set_string(&obj->domain,sip_setup_context_get_domains(ssctx)[0]);
1104         cfg->lc=core;
1105         return obj;
1106 }
1107
1108 void linphone_account_creator_set_username(LinphoneAccountCreator *obj, const char *username){
1109         set_string(&obj->username,username);
1110 }
1111
1112 void linphone_account_creator_set_password(LinphoneAccountCreator *obj, const char *password){
1113         set_string(&obj->password,password);
1114 }
1115
1116 void linphone_account_creator_set_domain(LinphoneAccountCreator *obj, const char *domain){
1117         set_string(&obj->domain,domain);
1118 }
1119
1120 void linphone_account_creator_set_route(LinphoneAccountCreator *obj, const char *route) {
1121         set_string(&obj->route,route);
1122 }
1123
1124 void linphone_account_creator_set_email(LinphoneAccountCreator *obj, const char *email) {
1125         set_string(&obj->email,email);
1126 }
1127
1128 void linphone_account_creator_set_suscribe(LinphoneAccountCreator *obj, int suscribe) {
1129         obj->suscribe = suscribe;
1130 }
1131
1132 const char * linphone_account_creator_get_username(LinphoneAccountCreator *obj){
1133         return obj->username;
1134 }
1135
1136 const char * linphone_account_creator_get_domain(LinphoneAccountCreator *obj){
1137         return obj->domain;
1138 }
1139
1140 int linphone_account_creator_test_existence(LinphoneAccountCreator *obj){
1141         SipSetupContext *ssctx=obj->ssctx;
1142         char *uri=ms_strdup_printf("%s@%s",obj->username,obj->domain);
1143         int err=sip_setup_context_account_exists(ssctx,uri);
1144         ms_free(uri);
1145         return err;
1146 }
1147
1148 int linphone_account_creator_test_validation(LinphoneAccountCreator *obj) {
1149         SipSetupContext *ssctx=obj->ssctx;
1150         int err=sip_setup_context_account_validated(ssctx,obj->username);
1151         return err;
1152 }
1153
1154 LinphoneProxyConfig * linphone_account_creator_validate(LinphoneAccountCreator *obj){
1155         SipSetupContext *ssctx=obj->ssctx;
1156         char *uri=ms_strdup_printf("%s@%s",obj->username,obj->domain);
1157         int err=sip_setup_context_create_account(ssctx, uri, obj->password, obj->email, obj->suscribe);
1158         ms_free(uri);
1159         if (err==0) {
1160                 obj->succeeded=TRUE;
1161                 return sip_setup_context_get_proxy_config(ssctx);
1162         }
1163         return NULL;
1164 }
1165
1166 void linphone_account_creator_destroy(LinphoneAccountCreator *obj){
1167         if (obj->username)
1168                 ms_free(obj->username);
1169         if (obj->password)
1170                 ms_free(obj->password);
1171         if (obj->domain)
1172                 ms_free(obj->domain);
1173         if (!obj->succeeded){
1174                 linphone_proxy_config_destroy(sip_setup_context_get_proxy_config(obj->ssctx));
1175         }
1176 }
1177
1178 void linphone_proxy_config_set_user_data(LinphoneProxyConfig *cr, void * ud) {
1179         cr->user_data=ud;
1180 }
1181
1182 void * linphone_proxy_config_get_user_data(LinphoneProxyConfig *cr) {
1183         return cr->user_data;
1184 }
1185
1186 void linphone_proxy_config_set_state(LinphoneProxyConfig *cfg, LinphoneRegistrationState state, const char *message){
1187         LinphoneCore *lc=cfg->lc;
1188         cfg->state=state;
1189         if (lc && lc->vtable.registration_state_changed){
1190                 lc->vtable.registration_state_changed(lc,cfg,state,message);
1191         }
1192 }
1193
1194 LinphoneRegistrationState linphone_proxy_config_get_state(const LinphoneProxyConfig *cfg){
1195         return cfg->state;
1196 }
1197
1198  const char *linphone_registration_state_to_string(LinphoneRegistrationState cs){
1199          switch(cs){
1200                 case LinphoneRegistrationCleared:
1201                          return "LinphoneRegistrationCleared";
1202                 break;
1203                 case LinphoneRegistrationNone:
1204                          return "LinphoneRegistrationNone";
1205                 break;
1206                 case LinphoneRegistrationProgress:
1207                         return "LinphoneRegistrationProgress";
1208                 break;
1209                 case LinphoneRegistrationOk:
1210                          return "LinphoneRegistrationOk";
1211                 break;
1212                 case LinphoneRegistrationFailed:
1213                          return "LinphoneRegistrationFailed";
1214                 break;
1215          }
1216          return NULL;
1217  }
1218
1219 LinphoneReason linphone_proxy_config_get_error(const LinphoneProxyConfig *cfg) {
1220         return cfg->error;
1221 }
1222
1223 void linphone_proxy_config_set_error(LinphoneProxyConfig *cfg,LinphoneReason error) {
1224         cfg->error = error;
1225 }
1226
1227