2014-05-04 08:34:13 +02:00
|
|
|
/*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 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 Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-01-10 08:48:05 +01:00
|
|
|
function codeMatches() {
|
|
|
|
var match = $('#code').val().match(/[0-9]{3}-?[0-9]{3}/g)
|
|
|
|
return match != null && match.length == 1 && match[0] == $('#code').val();
|
|
|
|
}
|
|
|
|
|
|
|
|
function numberMatches() {
|
2014-01-12 08:32:13 +01:00
|
|
|
var country_code = $('#countrycode').val().replace(/\D/g, '');
|
|
|
|
return $('#number').val().replace(/\D/g, '').length > 5 && country_code.length > 0 && country_code.length < 4;
|
2014-01-10 08:48:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$('#code').on('change', function() {
|
|
|
|
if (!codeMatches())
|
|
|
|
$('#code').attr('style', 'background-color:#ff6666;');
|
|
|
|
else
|
|
|
|
$('#code').attr('style', '');
|
|
|
|
});
|
|
|
|
|
2014-01-11 08:58:58 +01:00
|
|
|
$('#number').on('change', function() {//TODO
|
2014-01-10 08:48:05 +01:00
|
|
|
if (!numberMatches())
|
|
|
|
$('#number').attr('style', 'background-color:#ff6666;');
|
|
|
|
else
|
|
|
|
$('#number').attr('style', '');
|
2014-01-12 08:32:13 +01:00
|
|
|
});
|
2014-01-10 08:48:05 +01:00
|
|
|
|
2014-03-20 08:20:54 +01:00
|
|
|
var single_device = false;
|
2014-05-11 23:44:32 +02:00
|
|
|
var signaling_key = window.crypto.getRandomBytes(32 + 20);
|
|
|
|
var password = btoa(getString(window.crypto.getRandomBytes(16)));
|
2014-01-17 07:08:33 +01:00
|
|
|
password = password.substring(0, password.length - 2);
|
2014-05-14 05:07:31 +02:00
|
|
|
var registrationId = new Uint16Array(window.crypto.getRandomBytes(2))[0];
|
|
|
|
registrationId = registrationId & 0x3fff;
|
2014-01-17 07:08:33 +01:00
|
|
|
|
|
|
|
$('#init-go-single-client').click(function() {
|
|
|
|
if (numberMatches()) {
|
|
|
|
var number = "+" + $('#countrycode').val().replace(/\D/g, '') + $('#number').val().replace(/\D/g, '');
|
|
|
|
|
|
|
|
$('#init-go').html('Setup');
|
|
|
|
$('#countrycode').prop('disabled', 'disabled');
|
|
|
|
$('#number').prop('disabled', 'disabled');
|
|
|
|
$('#init-go-single-client').prop('disabled', 'disabled');
|
|
|
|
|
|
|
|
single_device = true;
|
|
|
|
|
2014-03-11 09:21:28 +01:00
|
|
|
API.requestVerificationCode(number,
|
|
|
|
function(response) { },
|
|
|
|
function(code) {
|
2014-01-17 07:08:33 +01:00
|
|
|
alert("Failed to send key?" + code); //TODO
|
|
|
|
}
|
2014-03-11 09:21:28 +01:00
|
|
|
);
|
2014-01-17 07:08:33 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-01-10 08:48:05 +01:00
|
|
|
$('#init-go').click(function() {
|
|
|
|
if (codeMatches() && numberMatches()) {
|
2014-01-12 08:32:13 +01:00
|
|
|
var number = "+" + $('#countrycode').val().replace(/\D/g, '') + $('#number').val().replace(/\D/g, '');
|
2014-01-10 08:48:05 +01:00
|
|
|
|
|
|
|
$('#init-setup').hide();
|
|
|
|
$('#verify1done').html('');
|
2014-01-17 07:08:33 +01:00
|
|
|
$('#verify2').hide();
|
2014-01-10 08:48:05 +01:00
|
|
|
$('#verify3done').html('');
|
2014-01-17 07:08:33 +01:00
|
|
|
$('#verify4done').html('');
|
2014-01-10 08:48:05 +01:00
|
|
|
$('#verify').show();
|
|
|
|
|
2014-05-14 05:07:31 +02:00
|
|
|
API.confirmCode($('#code').val(), number, password, signaling_key, registrationId, single_device,
|
2014-03-11 09:21:28 +01:00
|
|
|
function(response) {
|
2014-01-17 07:08:33 +01:00
|
|
|
if (single_device)
|
|
|
|
response = 1;
|
2014-01-11 08:58:58 +01:00
|
|
|
var number_id = number + "." + response;
|
2014-01-12 08:32:13 +01:00
|
|
|
storage.putEncrypted("password", password);
|
|
|
|
storage.putEncrypted('signaling_key', signaling_key);
|
2014-01-12 09:49:46 +01:00
|
|
|
storage.putUnencrypted("number_id", number_id);
|
|
|
|
$('#verify1done').html('done');
|
2014-01-12 08:32:13 +01:00
|
|
|
|
2014-01-17 07:08:33 +01:00
|
|
|
var register_keys_func = function() {
|
|
|
|
$('#verify2done').html('done');
|
2014-05-13 10:40:29 +02:00
|
|
|
crypto.generateKeys().then(function(keys) {
|
2014-01-22 07:23:41 +01:00
|
|
|
$('#verify3done').html('done');
|
2014-03-11 09:21:28 +01:00
|
|
|
API.registerKeys(keys,
|
|
|
|
function(response) {
|
2014-01-22 07:23:41 +01:00
|
|
|
$('#complete-number').html(number);
|
|
|
|
$('#verify').hide();
|
|
|
|
$('#setup-complete').show();
|
|
|
|
registrationDone();
|
2014-03-11 09:21:28 +01:00
|
|
|
}, function(code) {
|
2014-01-22 07:23:41 +01:00
|
|
|
alert(code); //TODO
|
|
|
|
}
|
2014-03-11 09:21:28 +01:00
|
|
|
);
|
2014-01-17 07:08:33 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!single_device) {
|
2014-05-13 21:15:45 +02:00
|
|
|
getKeysForNumber(number).then(function(identityKey) {
|
2014-01-17 07:08:33 +01:00
|
|
|
subscribeToPush(function(message) {
|
|
|
|
//TODO receive shared identity key
|
|
|
|
register_keys_func();
|
2014-01-12 08:32:13 +01:00
|
|
|
});
|
2014-01-17 07:08:33 +01:00
|
|
|
requestIdentityPrivKeyFromMasterDevice(number);
|
2014-05-13 21:15:45 +02:00
|
|
|
}).catch(function(error) {
|
|
|
|
alert(error); //TODO
|
2014-01-12 09:49:46 +01:00
|
|
|
});
|
2014-01-17 07:08:33 +01:00
|
|
|
} else {
|
|
|
|
register_keys_func();
|
|
|
|
}
|
2014-03-11 09:21:28 +01:00
|
|
|
}, function(code) {
|
2014-01-10 08:48:05 +01:00
|
|
|
var error;
|
|
|
|
switch(code) {
|
|
|
|
case 403:
|
|
|
|
error = "Invalid code, please try again.";
|
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
error = "Error connecting to server, please check your network connection.";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error = "Unknown error, please try again later.";
|
|
|
|
console.log("Got error code " + code);
|
|
|
|
}
|
|
|
|
alert(error); //TODO
|
2014-01-12 09:49:46 +01:00
|
|
|
}
|
2014-03-11 09:21:28 +01:00
|
|
|
);
|
2014-01-10 08:48:05 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-01-22 07:23:41 +01:00
|
|
|
registerOnLoadFunction(function() {
|
|
|
|
if (!isRegistrationDone()) {
|
|
|
|
$('#init-setup').show();
|
|
|
|
} else {
|
|
|
|
$('#complete-number').html(storage.getUnencrypted("number_id").split(".")[0]);
|
|
|
|
$('#setup-complete').show();
|
|
|
|
}
|
|
|
|
});
|