]> sjero.net Git - linphone/blob - coreapi/siplogin.c
purge out p2pproxy
[linphone] / coreapi / siplogin.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 #include <ctype.h>
26
27 static void sip_login_init_instance(SipSetupContext *ctx){
28         LinphoneProxyConfig *cfg=sip_setup_context_get_proxy_config(ctx);
29         /*disable registration until the user logs in*/
30         linphone_proxy_config_enable_register(cfg,FALSE);
31 }
32
33 static void guess_display_name(LinphoneAddress *from){
34         char *dn=(char*)ms_malloc(strlen(linphone_address_get_username(from))+3);
35         const char *it;
36         char *wptr=dn;
37         bool_t begin=TRUE;
38         bool_t surname=0;
39         for(it=linphone_address_get_username(from);*it!='\0';++it){
40                 if (begin){
41                         *wptr=toupper(*it);
42                         begin=FALSE;
43                 }else if (*it=='.'){
44                         if (surname) break;
45                         *wptr=' ';
46                         begin=TRUE;
47                         surname=TRUE;
48                 }else *wptr=*it;
49                 wptr++;
50         }
51         linphone_address_set_display_name(from,dn);
52         ms_free(dn);
53 }
54
55 static int sip_login_do_login(SipSetupContext * ctx, const char *uri, const char *passwd){
56         LinphoneProxyConfig *cfg=sip_setup_context_get_proxy_config(ctx);
57         LinphoneCore *lc=linphone_proxy_config_get_core(cfg);
58         LinphoneAuthInfo *auth;
59         LinphoneAddress *parsed_uri;
60         char *tmp;
61
62         parsed_uri=linphone_address_new(uri);
63         if (parsed_uri==NULL){
64                 return -1;
65         }
66         if (linphone_address_get_display_name(parsed_uri)!=NULL){
67                 guess_display_name(parsed_uri);
68         }
69         tmp=linphone_address_as_string(parsed_uri);
70         linphone_proxy_config_set_identity(cfg,tmp);
71         if (passwd ) {
72                 auth=linphone_auth_info_new(linphone_address_get_username(parsed_uri),NULL,passwd,NULL,NULL);
73                 linphone_core_add_auth_info(lc,auth);
74         }
75         linphone_proxy_config_enable_register(cfg,TRUE);
76         linphone_proxy_config_done(cfg);
77         ms_free(tmp);
78         linphone_address_destroy(parsed_uri);
79         ms_message("SipLogin: done");
80         return 0;
81 }
82
83 static int sip_login_do_logout(SipSetupContext * ctx){
84         LinphoneProxyConfig *cfg=sip_setup_context_get_proxy_config(ctx);
85         linphone_proxy_config_enable_register(cfg,FALSE);
86         linphone_proxy_config_done(cfg);
87         return 0;
88 }
89
90 /* a simple SipSetup built-in plugin to allow specify the user/password for proxy config at runtime*/
91
92 #ifndef _MSC_VER
93
94 SipSetup linphone_sip_login={
95         .name="SipLogin",
96         .capabilities=SIP_SETUP_CAP_LOGIN,
97         .init_instance=sip_login_init_instance,
98         .login_account=sip_login_do_login,
99         .logout_account=sip_login_do_logout
100 };
101
102 #else
103 SipSetup linphone_sip_login={
104         "SipLogin",
105         SIP_SETUP_CAP_LOGIN,
106         0,
107         NULL,
108         NULL,
109         sip_login_init_instance,
110         NULL,
111         NULL,
112         NULL,
113         sip_login_do_login,
114         NULL,
115         NULL,
116         NULL,
117         NULL,
118         NULL,
119         NULL,
120         NULL,
121         NULL,
122         sip_login_do_logout
123 };
124
125
126
127 #endif