mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
956 lines
41 KiB
C
956 lines
41 KiB
C
/*
|
|
linphone
|
|
Copyright (C) 2010-2015 Belledonne Communications SARL
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "linphone/account_creator.h"
|
|
#include "private.h"
|
|
#if !_WIN32
|
|
#include "regex.h"
|
|
#endif
|
|
|
|
#include <bctoolbox/crypto.h>
|
|
|
|
BELLE_SIP_DECLARE_NO_IMPLEMENTED_INTERFACES(LinphoneAccountCreatorCbs);
|
|
|
|
BELLE_SIP_INSTANCIATE_VPTR(LinphoneAccountCreatorCbs, belle_sip_object_t,
|
|
NULL, // destroy
|
|
NULL, // clone
|
|
NULL, // marshal
|
|
FALSE
|
|
);
|
|
|
|
static const char* ha1_for_passwd(const char* username, const char* realm, const char* passwd) {
|
|
static char ha1[33];
|
|
sal_auth_compute_ha1(username, realm, passwd, ha1);
|
|
return ha1;
|
|
}
|
|
|
|
static LinphoneAccountCreatorCbs * linphone_account_creator_cbs_new(void) {
|
|
return belle_sip_object_new(LinphoneAccountCreatorCbs);
|
|
}
|
|
|
|
LinphoneAccountCreatorCbs * linphone_account_creator_cbs_ref(LinphoneAccountCreatorCbs *cbs) {
|
|
belle_sip_object_ref(cbs);
|
|
return cbs;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_unref(LinphoneAccountCreatorCbs *cbs) {
|
|
belle_sip_object_unref(cbs);
|
|
}
|
|
|
|
void *linphone_account_creator_cbs_get_user_data(const LinphoneAccountCreatorCbs *cbs) {
|
|
return cbs->user_data;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_set_user_data(LinphoneAccountCreatorCbs *cbs, void *ud) {
|
|
cbs->user_data = ud;
|
|
}
|
|
|
|
LinphoneAccountCreatorCbsStatusCb linphone_account_creator_cbs_get_update_hash(const LinphoneAccountCreatorCbs *cbs) {
|
|
return cbs->update_hash;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_set_update_hash(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb) {
|
|
cbs->update_hash = cb;
|
|
}
|
|
|
|
LinphoneAccountCreatorCbsStatusCb linphone_account_creator_cbs_get_is_account_used(const LinphoneAccountCreatorCbs *cbs) {
|
|
return cbs->is_account_used;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_set_is_account_used(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb) {
|
|
cbs->is_account_used = cb;
|
|
}
|
|
|
|
LinphoneAccountCreatorCbsStatusCb linphone_account_creator_cbs_get_create_account(const LinphoneAccountCreatorCbs *cbs) {
|
|
return cbs->create_account;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_set_create_account(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb) {
|
|
cbs->create_account = cb;
|
|
}
|
|
|
|
LinphoneAccountCreatorCbsStatusCb linphone_account_creator_cbs_get_activate_account(const LinphoneAccountCreatorCbs *cbs) {
|
|
return cbs->activate_account;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_set_activate_account(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb) {
|
|
cbs->activate_account = cb;
|
|
}
|
|
|
|
LinphoneAccountCreatorCbsStatusCb linphone_account_creator_cbs_get_link_phone_number_with_account(const LinphoneAccountCreatorCbs *cbs) {
|
|
return cbs->link_phone_number_with_account;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_set_link_phone_number_with_account(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb) {
|
|
cbs->link_phone_number_with_account = cb;
|
|
}
|
|
|
|
LinphoneAccountCreatorCbsStatusCb linphone_account_creator_cbs_get_activate_phone_number_link(const LinphoneAccountCreatorCbs *cbs) {
|
|
return cbs->activate_phone_number_link;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_set_activate_phone_number_link(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb) {
|
|
cbs->activate_phone_number_link = cb;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_set_is_account_linked(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb) {
|
|
cbs->is_account_linked = cb;
|
|
}
|
|
|
|
LinphoneAccountCreatorCbsStatusCb linphone_account_creator_cbs_get_is_account_linked(const LinphoneAccountCreatorCbs *cbs) {
|
|
return cbs->is_account_linked;
|
|
}
|
|
|
|
LinphoneAccountCreatorCbsStatusCb linphone_account_creator_cbs_get_is_account_activated(const LinphoneAccountCreatorCbs *cbs) {
|
|
return cbs->is_account_activated;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_set_is_account_activated(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb) {
|
|
cbs->is_account_activated = cb;
|
|
}
|
|
|
|
LinphoneAccountCreatorCbsStatusCb linphone_account_creator_cbs_get_recover_phone_account(const LinphoneAccountCreatorCbs *cbs) {
|
|
return cbs->recover_phone_account;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_set_recover_phone_account(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb) {
|
|
cbs->recover_phone_account = cb;
|
|
}
|
|
|
|
LinphoneAccountCreatorCbsStatusCb linphone_account_creator_cbs_get_is_phone_number_used(const LinphoneAccountCreatorCbs *cbs) {
|
|
return cbs->is_phone_number_used;
|
|
}
|
|
|
|
void linphone_account_creator_cbs_set_is_phone_number_used(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb) {
|
|
cbs->is_phone_number_used = cb;
|
|
}
|
|
|
|
|
|
static void _linphone_account_creator_destroy(LinphoneAccountCreator *creator) {
|
|
linphone_xml_rpc_session_release(creator->xmlrpc_session); /*this will drop all pending requests if any*/
|
|
linphone_account_creator_cbs_unref(creator->callbacks);
|
|
if (creator->username) ms_free(creator->username);
|
|
if (creator->password) ms_free(creator->password);
|
|
if (creator->ha1) ms_free(creator->ha1);
|
|
if (creator->domain) ms_free(creator->domain);
|
|
if (creator->route) ms_free(creator->route);
|
|
if (creator->email) ms_free(creator->email);
|
|
if (creator->display_name) ms_free(creator->display_name);
|
|
if (creator->phone_country_code) ms_free(creator->phone_country_code);
|
|
if (creator->activation_code) ms_free(creator->activation_code);
|
|
if (creator->language) ms_free(creator->language);
|
|
}
|
|
|
|
BELLE_SIP_DECLARE_NO_IMPLEMENTED_INTERFACES(LinphoneAccountCreator);
|
|
|
|
BELLE_SIP_INSTANCIATE_VPTR(LinphoneAccountCreator, belle_sip_object_t,
|
|
(belle_sip_object_destroy_t)_linphone_account_creator_destroy,
|
|
NULL, // clone
|
|
NULL, // marshal
|
|
FALSE
|
|
);
|
|
|
|
|
|
LinphoneAccountCreator * linphone_account_creator_new(LinphoneCore *core, const char *xmlrpc_url) {
|
|
LinphoneAccountCreator *creator;
|
|
const char* domain = lp_config_get_string(core->config, "assistant", "domain", NULL);
|
|
creator = belle_sip_object_new(LinphoneAccountCreator);
|
|
creator->callbacks = linphone_account_creator_cbs_new();
|
|
creator->core = core;
|
|
creator->xmlrpc_session = linphone_xml_rpc_session_new(core, xmlrpc_url);
|
|
if (domain) {
|
|
linphone_account_creator_set_domain(creator, domain);
|
|
}
|
|
return creator;
|
|
}
|
|
|
|
LinphoneAccountCreator * linphone_account_creator_ref(LinphoneAccountCreator *creator) {
|
|
belle_sip_object_ref(creator);
|
|
return creator;
|
|
}
|
|
|
|
void linphone_account_creator_unref(LinphoneAccountCreator *creator) {
|
|
belle_sip_object_unref(creator);
|
|
}
|
|
|
|
void *linphone_account_creator_get_user_data(const LinphoneAccountCreator *creator) {
|
|
return creator->user_data;
|
|
}
|
|
|
|
void linphone_account_creator_set_user_data(LinphoneAccountCreator *creator, void *ud) {
|
|
creator->user_data = ud;
|
|
}
|
|
|
|
static LinphoneAccountCreatorStatus validate_uri(const char* username, const char* domain, const char* route, const char* display_name) {
|
|
LinphoneAddress* addr;
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorOK;
|
|
LinphoneProxyConfig* proxy = linphone_proxy_config_new();
|
|
linphone_proxy_config_set_identity(proxy, "sip:userame@domain.com");
|
|
|
|
if (route && linphone_proxy_config_set_route(proxy, route) != 0) {
|
|
status = LinphoneAccountCreatorRouteInvalid;
|
|
goto end;
|
|
}
|
|
|
|
if (username) {
|
|
addr = linphone_proxy_config_normalize_sip_uri(proxy, username);
|
|
} else {
|
|
addr = linphone_address_clone(linphone_proxy_config_get_identity_address(proxy));
|
|
}
|
|
|
|
if (addr == NULL) {
|
|
status = LinphoneAccountCreatorUsernameInvalid;
|
|
goto end;
|
|
}
|
|
|
|
if (domain && linphone_address_set_domain(addr, domain) != 0) {
|
|
status = LinphoneAccountCreatorDomainInvalid;
|
|
}
|
|
|
|
if (display_name && (!strlen(display_name) || linphone_address_set_display_name(addr, display_name) != 0)) {
|
|
status = LinphoneAccountCreatorDisplayNameInvalid;
|
|
}
|
|
linphone_address_unref(addr);
|
|
end:
|
|
linphone_proxy_config_destroy(proxy);
|
|
return status;
|
|
}
|
|
|
|
static char* _get_identity(const LinphoneAccountCreator *creator) {
|
|
char *identity = NULL;
|
|
if ((creator->username || creator->phone_number) && creator->domain) {
|
|
//we must escape username
|
|
LinphoneProxyConfig* proxy = linphone_proxy_config_new();
|
|
LinphoneAddress* addr;
|
|
// creator->domain may contain some port or some transport (eg. toto.org:443;transport=tcp),
|
|
// we will accept that
|
|
char * tmpidentity = ms_strdup_printf("sip:username@%s", creator->domain);
|
|
linphone_proxy_config_set_identity(proxy, tmpidentity);
|
|
ms_free(tmpidentity);
|
|
addr = linphone_proxy_config_normalize_sip_uri(proxy, creator->username ? creator->username : creator->phone_number);
|
|
|
|
identity = linphone_address_as_string(addr);
|
|
linphone_address_unref(addr);
|
|
linphone_proxy_config_destroy(proxy);
|
|
}
|
|
return identity;
|
|
}
|
|
|
|
static bool_t is_matching_regex(const char *entry, const char* regex) {
|
|
#if _WIN32
|
|
return TRUE;
|
|
#else
|
|
regex_t regex_pattern;
|
|
char err_msg[256];
|
|
int res;
|
|
res = regcomp(®ex_pattern, regex, REG_EXTENDED | REG_NOSUB);
|
|
if(res != 0) {
|
|
regerror(res, ®ex_pattern, err_msg, sizeof(err_msg));
|
|
ms_error("Could not compile regex '%s: %s", regex, err_msg);
|
|
return FALSE;
|
|
}
|
|
res = regexec(®ex_pattern, entry, 0, NULL, 0);
|
|
regfree(®ex_pattern);
|
|
return (res != REG_NOMATCH);
|
|
#endif
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_set_username(LinphoneAccountCreator *creator, const char *username) {
|
|
int min_length = lp_config_get_int(creator->core->config, "assistant", "username_min_length", -1);
|
|
int fixed_length = lp_config_get_int(creator->core->config, "assistant", "username_length", -1);
|
|
int max_length = lp_config_get_int(creator->core->config, "assistant", "username_max_length", -1);
|
|
bool_t use_phone_number = lp_config_get_int(creator->core->config, "assistant", "use_phone_number", 0);
|
|
const char* regex = lp_config_get_string(creator->core->config, "assistant", "username_regex", 0);
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorOK;
|
|
if (!username) {
|
|
creator->username = NULL;
|
|
return LinphoneAccountCreatorOK;
|
|
} else if (min_length > 0 && strlen(username) < (size_t)min_length) {
|
|
return LinphoneAccountCreatorUsernameTooShort;
|
|
} else if (max_length > 0 && strlen(username) > (size_t)max_length) {
|
|
return LinphoneAccountCreatorUsernameTooLong;
|
|
} else if (fixed_length > 0 && strlen(username) != (size_t)fixed_length) {
|
|
return LinphoneAccountCreatorUsernameInvalidSize;
|
|
} else if (use_phone_number && !linphone_proxy_config_is_phone_number(NULL, username)) {
|
|
return LinphoneAccountCreatorUsernameInvalid;
|
|
} else if (regex && !is_matching_regex(username, regex)) {
|
|
return LinphoneAccountCreatorUsernameInvalid;
|
|
} else if ((status = validate_uri(username, NULL, NULL, NULL)) != LinphoneAccountCreatorOK) {
|
|
return status;
|
|
}
|
|
|
|
set_string(&creator->username, username, TRUE);
|
|
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
const char * linphone_account_creator_get_username(const LinphoneAccountCreator *creator) {
|
|
return creator->username;
|
|
}
|
|
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_set_phone_number(LinphoneAccountCreator *creator, const char *phone_number, const char *country_code) {
|
|
char *normalized_phone_number;
|
|
LinphoneAccountCreatorStatus return_status;
|
|
if (!phone_number || !country_code) {
|
|
if (!phone_number && !country_code) {
|
|
creator->phone_number = NULL;
|
|
creator->phone_country_code = NULL;
|
|
return LinphoneAccountCreatorOK;
|
|
} else {
|
|
return LinphoneAccountCreatorPhoneNumberInvalid;
|
|
}
|
|
} else {
|
|
LinphoneProxyConfig *numCfg = linphone_proxy_config_new();
|
|
creator->phone_country_code = ms_strdup(country_code[0] == '+' ? &country_code[1] : country_code);
|
|
linphone_proxy_config_set_dial_prefix(numCfg, creator->phone_country_code);
|
|
normalized_phone_number = linphone_proxy_config_normalize_phone_number(numCfg, phone_number);
|
|
linphone_proxy_config_destroy(numCfg);
|
|
if (!normalized_phone_number) {
|
|
return LinphoneAccountCreatorPhoneNumberInvalid;
|
|
}
|
|
|
|
// if phone is valid, we lastly want to check that length is OK
|
|
{
|
|
const LinphoneDialPlan* plan = linphone_dial_plan_by_ccc(creator->phone_country_code);
|
|
int size = (int)strlen(phone_number);
|
|
if (linphone_dial_plan_is_generic(plan)) {
|
|
return_status = LinphoneAccountCreatorCountryCodeInvalid;
|
|
goto end;
|
|
}
|
|
if (size < plan->nnl - 1) {
|
|
return_status = LinphoneAccountCreatorPhoneNumberTooShort;
|
|
goto end;
|
|
} else if (size > plan->nnl + 1) {
|
|
return_status = LinphoneAccountCreatorPhoneNumberTooLong;
|
|
goto end;
|
|
}
|
|
}
|
|
}
|
|
set_string(&creator->phone_number, normalized_phone_number, TRUE);
|
|
return_status = LinphoneAccountCreatorOK;
|
|
|
|
end:
|
|
ms_free(normalized_phone_number);
|
|
return return_status;
|
|
}
|
|
|
|
const char * linphone_account_creator_get_phone_number(const LinphoneAccountCreator *creator) {
|
|
return creator->phone_number;
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_set_password(LinphoneAccountCreator *creator, const char *password){
|
|
int min_length = lp_config_get_int(creator->core->config, "assistant", "password_min_length", -1);
|
|
int max_length = lp_config_get_int(creator->core->config, "assistant", "password_max_length", -1);
|
|
if (!password) {
|
|
creator->password = NULL;
|
|
return LinphoneAccountCreatorPasswordTooShort;
|
|
}
|
|
if (min_length > 0 && strlen(password) < (size_t)min_length) {
|
|
return LinphoneAccountCreatorPasswordTooShort;
|
|
} else if (max_length > 0 && strlen(password) > (size_t)max_length) {
|
|
return LinphoneAccountCreatorPasswordTooLong;
|
|
}
|
|
set_string(&creator->password, password, FALSE);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
const char * linphone_account_creator_get_password(const LinphoneAccountCreator *creator) {
|
|
return creator->password;
|
|
}
|
|
|
|
static void _password_updated_cb(LinphoneXmlRpcRequest *request) {
|
|
LinphoneAccountCreator *creator = (LinphoneAccountCreator *)linphone_xml_rpc_request_get_user_data(request);
|
|
if (creator->callbacks->update_hash != NULL) {
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorReqFailed;
|
|
const char* resp = linphone_xml_rpc_request_get_string_response(request);
|
|
if (linphone_xml_rpc_request_get_status(request) == LinphoneXmlRpcStatusOk) {
|
|
if (strcmp(resp, "OK") == 0) {
|
|
status = LinphoneAccountCreatorOK;
|
|
} else if (strcmp(resp, "ERROR_PASSWORD_DOESNT_MATCH") == 0) {
|
|
status = LinphoneAccountCreatorAccountNotExist;
|
|
} else {
|
|
status = LinphoneAccountCreatorErrorServer;
|
|
}
|
|
}
|
|
creator->callbacks->update_hash(creator, status, resp);
|
|
}
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_update_password(LinphoneAccountCreator *creator, const char *new_pwd){
|
|
LinphoneXmlRpcRequest *request;
|
|
char *identity = _get_identity(creator);
|
|
if (!identity || (!creator->username && !creator->phone_number
|
|
&& !creator->domain && (!creator->password || !creator->ha1))) {
|
|
if (creator->callbacks->update_hash != NULL) {
|
|
creator->callbacks->update_hash(creator, LinphoneAccountCreatorReqFailed, "Missing required parameters");
|
|
}
|
|
return LinphoneAccountCreatorReqFailed;
|
|
}
|
|
|
|
const char * username = creator->username ? creator->username : creator->phone_number;
|
|
const char * ha1 = ms_strdup(creator->ha1 ? creator->ha1 : ha1_for_passwd(username, creator->domain, creator->password) );
|
|
const char * new_ha1 = ms_strdup(ha1_for_passwd(username, creator->domain, new_pwd));
|
|
|
|
request = linphone_xml_rpc_request_new_with_args("update_hash", LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, username,
|
|
LinphoneXmlRpcArgString, ha1,
|
|
LinphoneXmlRpcArgString, new_ha1,
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgNone);
|
|
|
|
linphone_xml_rpc_request_set_user_data(request, creator);
|
|
linphone_xml_rpc_request_cbs_set_response(linphone_xml_rpc_request_get_callbacks(request), _password_updated_cb);
|
|
linphone_xml_rpc_session_send_request(creator->xmlrpc_session, request);
|
|
linphone_xml_rpc_request_unref(request);
|
|
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_set_ha1(LinphoneAccountCreator *creator, const char *ha1){
|
|
set_string(&creator->ha1, ha1, FALSE);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
const char * linphone_account_creator_get_ha1(const LinphoneAccountCreator *creator) {
|
|
return creator->ha1;
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_set_activation_code(LinphoneAccountCreator *creator, const char *activation_code){
|
|
set_string(&creator->activation_code, activation_code, FALSE);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_set_language(LinphoneAccountCreator *creator, const char *lang) {
|
|
set_string(&creator->language, lang, FALSE);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_set_transport(LinphoneAccountCreator *creator, LinphoneTransportType transport){
|
|
if (!linphone_core_sip_transport_supported(creator->core, transport)) {
|
|
return LinphoneAccountCreatorTransportNotSupported;
|
|
}
|
|
creator->transport = transport;
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
LinphoneTransportType linphone_account_creator_get_transport(const LinphoneAccountCreator *creator) {
|
|
return creator->transport;
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_set_domain(LinphoneAccountCreator *creator, const char *domain){
|
|
if (validate_uri(NULL, domain, NULL, NULL) != 0) {
|
|
return LinphoneAccountCreatorDomainInvalid;
|
|
}
|
|
set_string(&creator->domain, domain, TRUE);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
const char * linphone_account_creator_get_domain(const LinphoneAccountCreator *creator) {
|
|
return creator->domain;
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_set_route(LinphoneAccountCreator *creator, const char *route) {
|
|
if (validate_uri(NULL, NULL, route, NULL) != 0) {
|
|
return LinphoneAccountCreatorRouteInvalid;
|
|
}
|
|
set_string(&creator->route, route, TRUE);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
const char * linphone_account_creator_get_route(const LinphoneAccountCreator *creator) {
|
|
return creator->route;
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_set_display_name(LinphoneAccountCreator *creator, const char *display_name) {
|
|
if (validate_uri(NULL, NULL, NULL, display_name) != 0) {
|
|
return LinphoneAccountCreatorDisplayNameInvalid;
|
|
}
|
|
set_string(&creator->display_name, display_name, FALSE);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
const char * linphone_account_creator_get_display_name(const LinphoneAccountCreator *creator) {
|
|
return creator->display_name;
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_set_email(LinphoneAccountCreator *creator, const char *email) {
|
|
if (!is_matching_regex(email, "^.+@.+\\.[A-Za-z]{2}[A-Za-z]*$")) {
|
|
return LinphoneAccountCreatorEmailInvalid;
|
|
}
|
|
set_string(&creator->email, email, TRUE);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
const char * linphone_account_creator_get_email(const LinphoneAccountCreator *creator) {
|
|
return creator->email;
|
|
}
|
|
|
|
LinphoneAccountCreatorCbs * linphone_account_creator_get_callbacks(const LinphoneAccountCreator *creator) {
|
|
return creator->callbacks;
|
|
}
|
|
|
|
LinphoneProxyConfig * linphone_account_creator_configure(const LinphoneAccountCreator *creator) {
|
|
LinphoneAuthInfo *info;
|
|
LinphoneProxyConfig *cfg = linphone_core_create_proxy_config(creator->core);
|
|
char *identity_str = _get_identity(creator);
|
|
LinphoneAddress *identity = linphone_address_new(identity_str);
|
|
char *route = NULL;
|
|
char *domain = NULL;
|
|
ms_free(identity_str);
|
|
if (creator->display_name) {
|
|
linphone_address_set_display_name(identity, creator->display_name);
|
|
}
|
|
if (creator->route) {
|
|
route = ms_strdup_printf("%s;transport=%s", creator->route, linphone_transport_to_string(creator->transport));
|
|
}
|
|
if (creator->domain) {
|
|
domain = ms_strdup_printf("%s;transport=%s", creator->domain, linphone_transport_to_string(creator->transport));
|
|
}
|
|
linphone_proxy_config_set_identity_address(cfg, identity);
|
|
if (creator->phone_country_code) {
|
|
linphone_proxy_config_set_dial_prefix(cfg, creator->phone_country_code);
|
|
} else if (creator->phone_number) {
|
|
int dial_prefix_number = linphone_dial_plan_lookup_ccc_from_e164(creator->phone_number);
|
|
char buff[4];
|
|
snprintf(buff, sizeof(buff), "%d", dial_prefix_number);
|
|
linphone_proxy_config_set_dial_prefix(cfg, buff);
|
|
}
|
|
if (linphone_proxy_config_get_server_addr(cfg) == NULL)
|
|
linphone_proxy_config_set_server_addr(cfg, domain);
|
|
if (linphone_proxy_config_get_route(cfg) == NULL)
|
|
linphone_proxy_config_set_route(cfg, route);
|
|
linphone_proxy_config_enable_publish(cfg, FALSE);
|
|
linphone_proxy_config_enable_register(cfg, TRUE);
|
|
|
|
if (strcmp(creator->domain, "sip.linphone.org") == 0) {
|
|
linphone_proxy_config_enable_avpf(cfg, TRUE);
|
|
// If account created on sip.linphone.org, we configure linphone to use TLS by default
|
|
if (linphone_core_sip_transport_supported(creator->core, LinphoneTransportTls)) {
|
|
LinphoneAddress *addr = linphone_address_new(linphone_proxy_config_get_server_addr(cfg));
|
|
char *tmp;
|
|
linphone_address_set_transport(addr, LinphoneTransportTls);
|
|
tmp = linphone_address_as_string(addr);
|
|
linphone_proxy_config_set_server_addr(cfg, tmp);
|
|
linphone_proxy_config_set_route(cfg, tmp);
|
|
ms_free(tmp);
|
|
linphone_address_unref(addr);
|
|
}
|
|
linphone_core_set_stun_server(creator->core, "stun.linphone.org");
|
|
linphone_core_set_firewall_policy(creator->core, LinphonePolicyUseIce);
|
|
}
|
|
|
|
info = linphone_auth_info_new(linphone_address_get_username(identity), // username
|
|
NULL, //user id
|
|
creator->password, // passwd
|
|
creator->password ? NULL : creator->ha1, // ha1
|
|
!creator->password && creator->ha1 ? linphone_address_get_domain(identity) : NULL, // realm - assumed to be domain
|
|
linphone_address_get_domain(identity) // domain
|
|
);
|
|
linphone_core_add_auth_info(creator->core, info);
|
|
linphone_address_unref(identity);
|
|
|
|
if (linphone_core_add_proxy_config(creator->core, cfg) != -1) {
|
|
linphone_core_set_default_proxy(creator->core, cfg);
|
|
return cfg;
|
|
}
|
|
|
|
linphone_core_remove_auth_info(creator->core, info);
|
|
linphone_proxy_config_unref(cfg);
|
|
return NULL;
|
|
}
|
|
|
|
/****************** START OF ACCOUNT USED SECTION *****************************/
|
|
static void _is_account_used_cb(LinphoneXmlRpcRequest *request) {
|
|
LinphoneAccountCreator *creator = (LinphoneAccountCreator *)linphone_xml_rpc_request_get_user_data(request);
|
|
if (creator->callbacks->is_account_used != NULL) {
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorReqFailed;
|
|
const char* resp = linphone_xml_rpc_request_get_string_response(request);
|
|
if (linphone_xml_rpc_request_get_status(request) == LinphoneXmlRpcStatusOk) {
|
|
status = (strcmp(resp, "ERROR_ACCOUNT_DOESNT_EXIST") == 0) ? LinphoneAccountCreatorAccountNotExist : (
|
|
(strcmp(resp, "ERROR_ALIAS_DOESNT_EXIST") == 0) ? LinphoneAccountCreatorAccountExist :
|
|
LinphoneAccountCreatorAccountExistWithAlias);
|
|
if (status == LinphoneAccountCreatorAccountExistWithAlias) {
|
|
set_string(&creator->phone_number, resp, FALSE);
|
|
}
|
|
}
|
|
creator->callbacks->is_account_used(creator, status, resp);
|
|
}
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_is_account_used(LinphoneAccountCreator *creator) {
|
|
LinphoneXmlRpcRequest *request;
|
|
if (!creator->username && !creator->phone_number) {
|
|
if (creator->callbacks->is_account_used != NULL) {
|
|
creator->callbacks->is_account_used(creator, LinphoneAccountCreatorReqFailed, "Missing required parameters");
|
|
}
|
|
return LinphoneAccountCreatorReqFailed;
|
|
}
|
|
|
|
request = linphone_xml_rpc_request_new_with_args("get_phone_number_for_account", LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, creator->username ? creator->username : creator->phone_number,
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgNone);
|
|
|
|
linphone_xml_rpc_request_set_user_data(request, creator);
|
|
linphone_xml_rpc_request_cbs_set_response(linphone_xml_rpc_request_get_callbacks(request), _is_account_used_cb);
|
|
linphone_xml_rpc_session_send_request(creator->xmlrpc_session, request);
|
|
linphone_xml_rpc_request_unref(request);
|
|
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
/****************** END OF CREATE ACCOUNT USED SECTION ************************/
|
|
|
|
/****************** START OF CREATE ACCOUNT SECTION ***************************/
|
|
static void _create_account_cb(LinphoneXmlRpcRequest *request) {
|
|
LinphoneAccountCreator *creator = (LinphoneAccountCreator *)linphone_xml_rpc_request_get_user_data(request);
|
|
if (creator->callbacks->create_account != NULL) {
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorReqFailed;
|
|
const char* resp = linphone_xml_rpc_request_get_string_response(request);
|
|
if (linphone_xml_rpc_request_get_status(request) == LinphoneXmlRpcStatusOk) {
|
|
status = (strcmp(resp, "OK") == 0) ? LinphoneAccountCreatorAccountCreated
|
|
: (strcmp(resp, "ERROR_CANNOT_SEND_SMS") == 0) ? LinphoneAccountCreatorErrorServer
|
|
: (strcmp(resp, "ERROR_ACCOUNT_ALREADY_IN_USE") == 0) ? LinphoneAccountCreatorAccountExist
|
|
: (strcmp(resp, "ERROR_ALIAS_ALREADY_IN_USE") == 0) ? LinphoneAccountCreatorAccountExistWithAlias
|
|
:LinphoneAccountCreatorAccountNotCreated;
|
|
}
|
|
creator->callbacks->create_account(creator, status, resp);
|
|
}
|
|
}
|
|
|
|
static LinphoneXmlRpcRequest * _create_account_with_phone(LinphoneAccountCreator *creator) {
|
|
LinphoneXmlRpcRequest *request;
|
|
if (!creator->phone_number) {
|
|
return NULL;
|
|
}
|
|
request = linphone_xml_rpc_request_new_with_args("create_phone_account", LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, creator->phone_number,
|
|
LinphoneXmlRpcArgString, creator->username ? creator->username : creator->phone_number,
|
|
LinphoneXmlRpcArgString, creator->password ? ha1_for_passwd(creator->username ? creator->username : creator->phone_number, creator->domain, creator->password) : "",
|
|
LinphoneXmlRpcArgString, linphone_core_get_user_agent(creator->core),
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgString, creator->language,
|
|
LinphoneXmlRpcArgNone);
|
|
return request;
|
|
}
|
|
|
|
static LinphoneXmlRpcRequest * _create_account_with_email(LinphoneAccountCreator *creator) {
|
|
LinphoneXmlRpcRequest *request;
|
|
if (!creator->username || !creator->email) {
|
|
return NULL;
|
|
}
|
|
request = linphone_xml_rpc_request_new_with_args("create_email_account", LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, creator->username,
|
|
LinphoneXmlRpcArgString, creator->email,
|
|
LinphoneXmlRpcArgString, ha1_for_passwd(creator->username ? creator->username : creator->phone_number, creator->domain, creator->password),
|
|
LinphoneXmlRpcArgString, linphone_core_get_user_agent(creator->core),
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgNone);
|
|
return request;
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_create_account(LinphoneAccountCreator *creator) {
|
|
LinphoneXmlRpcRequest *request;
|
|
char *identity = _get_identity(creator);
|
|
if (!identity || (!(request = _create_account_with_phone(creator))
|
|
&& !(request = _create_account_with_email(creator)))) {
|
|
if (creator->callbacks->create_account != NULL) {
|
|
creator->callbacks->create_account(creator, LinphoneAccountCreatorReqFailed, "Missing required parameters");
|
|
}
|
|
if (identity) ms_free(identity);
|
|
return LinphoneAccountCreatorReqFailed;
|
|
}
|
|
|
|
linphone_xml_rpc_request_set_user_data(request, creator);
|
|
linphone_xml_rpc_request_cbs_set_response(linphone_xml_rpc_request_get_callbacks(request), _create_account_cb);
|
|
linphone_xml_rpc_session_send_request(creator->xmlrpc_session, request);
|
|
linphone_xml_rpc_request_unref(request);
|
|
ms_free(identity);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
/****************** END OF CREATE ACCOUNT SECTION *****************************/
|
|
|
|
/****************** START OF VALIDATE ACCOUNT SECTION *************************/
|
|
static void _activate_account_cb(LinphoneXmlRpcRequest *request) {
|
|
LinphoneAccountCreator *creator = (LinphoneAccountCreator *)linphone_xml_rpc_request_get_user_data(request);
|
|
if (creator->callbacks->activate_account != NULL) {
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorReqFailed;
|
|
const char* resp = linphone_xml_rpc_request_get_string_response(request);
|
|
if (linphone_xml_rpc_request_get_status(request) == LinphoneXmlRpcStatusOk) {
|
|
if (strcmp(resp, "ERROR_ACCOUNT_ALREADY_ACTIVATED") == 0) {
|
|
status = LinphoneAccountCreatorAccountAlreadyActivated;
|
|
} else if (strstr(resp, "ERROR_") == resp) {
|
|
status = LinphoneAccountCreatorAccountNotActivated;
|
|
} else {
|
|
status = LinphoneAccountCreatorAccountActivated;
|
|
set_string(&creator->ha1, resp, FALSE);
|
|
}
|
|
}
|
|
creator->callbacks->activate_account(creator, status, resp);
|
|
}
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_activate_account(LinphoneAccountCreator *creator) {
|
|
LinphoneXmlRpcRequest *request;
|
|
char *identity = _get_identity(creator);
|
|
if (!identity || !creator->activation_code) {
|
|
if (creator->callbacks->is_account_activated != NULL) {
|
|
creator->callbacks->is_account_activated(creator, LinphoneAccountCreatorReqFailed, "Missing required parameters");
|
|
}
|
|
return LinphoneAccountCreatorReqFailed;
|
|
}
|
|
|
|
if (creator->phone_number) {
|
|
request = linphone_xml_rpc_request_new_with_args("activate_phone_account", LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, creator->phone_number,
|
|
LinphoneXmlRpcArgString, creator->username ? creator->username : creator->phone_number,
|
|
LinphoneXmlRpcArgString, creator->activation_code,
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgNone);
|
|
} else {
|
|
request = linphone_xml_rpc_request_new_with_args("activate_email_account", LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, creator->username,
|
|
LinphoneXmlRpcArgString, creator->activation_code,
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgNone);
|
|
}
|
|
linphone_xml_rpc_request_set_user_data(request, creator);
|
|
linphone_xml_rpc_request_cbs_set_response(linphone_xml_rpc_request_get_callbacks(request), _activate_account_cb);
|
|
linphone_xml_rpc_session_send_request(creator->xmlrpc_session, request);
|
|
linphone_xml_rpc_request_unref(request);
|
|
ms_free(identity);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
/****************** END OF CREATE VALIDATE ACCOUNT SECTION ********************/
|
|
|
|
/****************** START OF ACCOUNT VALIDATED SECTION ************************/
|
|
static void _is_account_activated_cb(LinphoneXmlRpcRequest *request) {
|
|
LinphoneAccountCreator *creator = (LinphoneAccountCreator *)linphone_xml_rpc_request_get_user_data(request);
|
|
if (creator->callbacks->is_account_activated != NULL) {
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorReqFailed;
|
|
const char* resp = linphone_xml_rpc_request_get_string_response(request);
|
|
if (linphone_xml_rpc_request_get_status(request) == LinphoneXmlRpcStatusOk) {
|
|
status = (strcmp(resp, "OK") == 0) ? LinphoneAccountCreatorAccountActivated : LinphoneAccountCreatorAccountNotActivated;
|
|
}
|
|
creator->callbacks->is_account_activated(creator, status, resp);
|
|
}
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_is_account_activated(LinphoneAccountCreator *creator) {
|
|
LinphoneXmlRpcRequest *request;
|
|
char *identity = _get_identity(creator);
|
|
if (!identity) {
|
|
if (creator->callbacks->is_account_activated != NULL) {
|
|
creator->callbacks->is_account_activated(creator, LinphoneAccountCreatorReqFailed, "Missing required parameters");
|
|
}
|
|
return LinphoneAccountCreatorReqFailed;
|
|
}
|
|
request = linphone_xml_rpc_request_new_with_args("is_account_activated", LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, creator->username ? creator->username : creator->phone_number,
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgNone);
|
|
linphone_xml_rpc_request_set_user_data(request, creator);
|
|
linphone_xml_rpc_request_cbs_set_response(linphone_xml_rpc_request_get_callbacks(request), _is_account_activated_cb);
|
|
linphone_xml_rpc_session_send_request(creator->xmlrpc_session, request);
|
|
linphone_xml_rpc_request_unref(request);
|
|
ms_free(identity);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
/****************** END OF CREATE ACCOUNT VALIDATED SECTION********************/
|
|
|
|
/****************** START OF PHONE NUMBER VALIDATED SECTION *******************/
|
|
|
|
static void _is_phone_number_used_cb(LinphoneXmlRpcRequest *request) {
|
|
LinphoneAccountCreator *creator = (LinphoneAccountCreator *)linphone_xml_rpc_request_get_user_data(request);
|
|
if (creator->callbacks->is_phone_number_used != NULL) {
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorReqFailed;
|
|
const char* resp = linphone_xml_rpc_request_get_string_response(request);
|
|
if (linphone_xml_rpc_request_get_status(request) == LinphoneXmlRpcStatusOk) {
|
|
status = (strcmp(resp, "OK_ACCOUNT") == 0) ? LinphoneAccountCreatorPhoneNumberUsedAccount
|
|
: (strcmp(resp, "OK_ALIAS") == 0) ? LinphoneAccountCreatorPhoneNumberUsedAlias
|
|
: LinphoneAccountCreatorPhoneNumberNotUsed;
|
|
}
|
|
creator->callbacks->is_phone_number_used(creator, status, resp);
|
|
}
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_is_phone_number_used(LinphoneAccountCreator *creator) {
|
|
LinphoneXmlRpcRequest *request;
|
|
char *identity = _get_identity(creator);
|
|
if (!identity) {
|
|
if (creator->callbacks->is_phone_number_used != NULL) {
|
|
creator->callbacks->is_phone_number_used(creator, LinphoneAccountCreatorReqFailed, "Missing required parameters");
|
|
}
|
|
return LinphoneAccountCreatorReqFailed;
|
|
}
|
|
request = linphone_xml_rpc_request_new_with_args("is_phone_number_used", LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, creator->phone_number,
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgNone);
|
|
linphone_xml_rpc_request_set_user_data(request, creator);
|
|
linphone_xml_rpc_request_cbs_set_response(linphone_xml_rpc_request_get_callbacks(request), _is_phone_number_used_cb);
|
|
linphone_xml_rpc_session_send_request(creator->xmlrpc_session, request);
|
|
linphone_xml_rpc_request_unref(request);
|
|
ms_free(identity);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
/****************** END OF PHONE NUMBER VALIDATED SECTION *********************/
|
|
|
|
/****************** START OF LINK PHONE NUMBER WITH ACCOUNT SECTION ***********/
|
|
static void _link_phone_number_with_account_cb(LinphoneXmlRpcRequest *request) {
|
|
LinphoneAccountCreator *creator = (LinphoneAccountCreator *)linphone_xml_rpc_request_get_user_data(request);
|
|
if (creator->callbacks->link_phone_number_with_account != NULL) {
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorReqFailed;
|
|
const char* resp = linphone_xml_rpc_request_get_string_response(request);
|
|
if (linphone_xml_rpc_request_get_status(request) == LinphoneXmlRpcStatusOk) {
|
|
status = (strcmp(resp, "OK") == 0) ? LinphoneAccountCreatorOK : LinphoneAccountCreatorReqFailed;
|
|
}
|
|
creator->callbacks->link_phone_number_with_account(creator, status, resp);
|
|
}
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_link_phone_number_with_account(LinphoneAccountCreator *creator) {
|
|
LinphoneXmlRpcRequest *request;
|
|
if (!creator->phone_number || !creator->username) {
|
|
if (creator->callbacks->link_phone_number_with_account != NULL) {
|
|
creator->callbacks->link_phone_number_with_account(creator, LinphoneAccountCreatorReqFailed, "Missing required parameters");
|
|
}
|
|
return LinphoneAccountCreatorReqFailed;
|
|
}
|
|
request = linphone_xml_rpc_request_new_with_args("link_phone_number_with_account", LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, creator->phone_number,
|
|
LinphoneXmlRpcArgString, creator->username,
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgString, creator->language,
|
|
LinphoneXmlRpcArgNone);
|
|
linphone_xml_rpc_request_set_user_data(request, creator);
|
|
linphone_xml_rpc_request_cbs_set_response(linphone_xml_rpc_request_get_callbacks(request), _link_phone_number_with_account_cb);
|
|
linphone_xml_rpc_session_send_request(creator->xmlrpc_session, request);
|
|
linphone_xml_rpc_request_unref(request);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
|
|
static void _get_phone_number_for_account_cb(LinphoneXmlRpcRequest *request) {
|
|
LinphoneAccountCreator *creator = (LinphoneAccountCreator *)linphone_xml_rpc_request_get_user_data(request);
|
|
if (creator->callbacks->is_account_linked != NULL) {
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorReqFailed;
|
|
const char* resp = linphone_xml_rpc_request_get_string_response(request);
|
|
if (linphone_xml_rpc_request_get_status(request) == LinphoneXmlRpcStatusOk) {
|
|
status = (strcmp(resp, "ERROR_USERNAME_PARAMETER_NOT_FOUND") == 0
|
|
|| strcmp(resp, "ERROR_ACCOUNT_DOESNT_EXIST") == 0
|
|
|| strcmp(resp, "ERROR_ALIAS_DOESNT_EXIST") == 0) ? LinphoneAccountCreatorAccountNotLinked : LinphoneAccountCreatorAccountLinked;
|
|
}
|
|
creator->callbacks->link_phone_number_with_account(creator, status, resp);
|
|
}
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_is_account_linked(LinphoneAccountCreator *creator) {
|
|
LinphoneXmlRpcRequest *request;
|
|
if (!creator->username || !creator->domain) {
|
|
return LinphoneAccountCreatorReqFailed;
|
|
}
|
|
request = linphone_xml_rpc_request_new_with_args("get_phone_number_for_account",LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, creator->username,
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgNone);
|
|
linphone_xml_rpc_request_set_user_data(request, creator);
|
|
linphone_xml_rpc_request_cbs_set_response(linphone_xml_rpc_request_get_callbacks(request), _get_phone_number_for_account_cb);
|
|
linphone_xml_rpc_session_send_request(creator->xmlrpc_session, request);
|
|
linphone_xml_rpc_request_unref(request);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
/****************** END OF LINK PHONE NUMBER WITH ACCOUNT SECTION *************/
|
|
|
|
/****************** START OF ACTIVE PHONE NUMBER LINK **************************/
|
|
static void _activate_phone_number_link_cb(LinphoneXmlRpcRequest *request) {
|
|
LinphoneAccountCreator *creator = (LinphoneAccountCreator *)linphone_xml_rpc_request_get_user_data(request);
|
|
if (creator->callbacks->activate_phone_number_link != NULL) {
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorReqFailed;
|
|
const char* resp = linphone_xml_rpc_request_get_string_response(request);
|
|
if (linphone_xml_rpc_request_get_status(request) == LinphoneXmlRpcStatusOk) {
|
|
status = (strstr(resp, "ERROR_") == resp) ? LinphoneAccountCreatorReqFailed : LinphoneAccountCreatorOK;
|
|
}
|
|
creator->callbacks->activate_phone_number_link(creator, status, resp);
|
|
}
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_activate_phone_number_link(LinphoneAccountCreator *creator) {
|
|
LinphoneXmlRpcRequest *request;
|
|
if (!creator->phone_number || !creator->username || !creator->activation_code || (!creator->password && !creator->ha1) || !creator->domain) {
|
|
if (creator->callbacks->activate_phone_number_link != NULL) {
|
|
creator->callbacks->activate_phone_number_link(creator, LinphoneAccountCreatorReqFailed, "Missing required parameters");
|
|
}
|
|
return LinphoneAccountCreatorReqFailed;
|
|
}
|
|
request = linphone_xml_rpc_request_new_with_args("activate_phone_number_link", LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, creator->phone_number,
|
|
LinphoneXmlRpcArgString, creator->username,
|
|
LinphoneXmlRpcArgString, creator->activation_code,
|
|
LinphoneXmlRpcArgString, creator->ha1 ? creator->ha1 : ha1_for_passwd(creator->username, creator->domain, creator->password),
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgNone);
|
|
linphone_xml_rpc_request_set_user_data(request, creator);
|
|
linphone_xml_rpc_request_cbs_set_response(linphone_xml_rpc_request_get_callbacks(request), _activate_phone_number_link_cb);
|
|
linphone_xml_rpc_session_send_request(creator->xmlrpc_session, request);
|
|
linphone_xml_rpc_request_unref(request);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
/****************** END OF ACTIVE PHONE NUMBER LINK **************************/
|
|
|
|
/****************** START OF ACTIVE PHONE NUMBER LINK **************************/
|
|
static void _recover_phone_account_cb(LinphoneXmlRpcRequest *request) {
|
|
LinphoneAccountCreator *creator = (LinphoneAccountCreator *)linphone_xml_rpc_request_get_user_data(request);
|
|
if (creator->callbacks->recover_phone_account != NULL) {
|
|
LinphoneAccountCreatorStatus status = LinphoneAccountCreatorReqFailed;
|
|
const char* resp = linphone_xml_rpc_request_get_string_response(request);
|
|
if (linphone_xml_rpc_request_get_status(request) == LinphoneXmlRpcStatusOk) {
|
|
if (strstr(resp, "ERROR_") == resp) {
|
|
status = (strstr(resp, "ERROR_CANNOT_SEND_SMS") == resp) ? LinphoneAccountCreatorErrorServer
|
|
: (strstr(resp, "ERROR_ACCOUNT_DOESNT_EXIST") == resp) ? LinphoneAccountCreatorAccountNotExist
|
|
: LinphoneAccountCreatorReqFailed;
|
|
} else {
|
|
status = LinphoneAccountCreatorOK;
|
|
set_string(&creator->username, resp, FALSE);
|
|
}
|
|
}
|
|
creator->callbacks->recover_phone_account(creator, status, resp);
|
|
}
|
|
}
|
|
|
|
LinphoneAccountCreatorStatus linphone_account_creator_recover_phone_account(LinphoneAccountCreator *creator) {
|
|
LinphoneXmlRpcRequest *request;
|
|
if (!creator->phone_number) {
|
|
if (creator->callbacks->recover_phone_account != NULL) {
|
|
creator->callbacks->recover_phone_account(creator, LinphoneAccountCreatorReqFailed, "Missing required parameters");
|
|
}
|
|
return LinphoneAccountCreatorReqFailed;
|
|
}
|
|
request = linphone_xml_rpc_request_new_with_args("recover_phone_account", LinphoneXmlRpcArgString,
|
|
LinphoneXmlRpcArgString, creator->phone_number,
|
|
LinphoneXmlRpcArgString, creator->domain,
|
|
LinphoneXmlRpcArgString, creator->language,
|
|
LinphoneXmlRpcArgNone);
|
|
linphone_xml_rpc_request_set_user_data(request, creator);
|
|
linphone_xml_rpc_request_cbs_set_response(linphone_xml_rpc_request_get_callbacks(request), _recover_phone_account_cb);
|
|
linphone_xml_rpc_session_send_request(creator->xmlrpc_session, request);
|
|
linphone_xml_rpc_request_unref(request);
|
|
return LinphoneAccountCreatorOK;
|
|
}
|
|
/****************** END OF ACTIVE PHONE NUMBER LINK **************************/
|