Commit a50e2d73 authored by JC Brand's avatar JC Brand

Various bugfixes after testing OTR converse2converse

Previously only tested pidgin2converse
parent 08d25643
...@@ -137,9 +137,9 @@ ...@@ -137,9 +137,9 @@
converse.log('Connected'); converse.log('Connected');
converse.onConnected(); converse.onConnected();
} else if (status === Strophe.Status.DISCONNECTED) { } else if (status === Strophe.Status.DISCONNECTED) {
if ($button) { $button.show().siblings('span').remove(); } //if ($button) { $button.show().siblings('span').remove(); }
converse.giveFeedback(__('Disconnected'), 'error'); converse.giveFeedback(__('Disconnected'), 'error');
converse.connection.connect(connection.jid, connection.pass, converse.onConnect); //converse.connection.connect(connection.jid, connection.pass, converse.onConnect);
} else if (status === Strophe.Status.Error) { } else if (status === Strophe.Status.Error) {
if ($button) { $button.show().siblings('span').remove(); } if ($button) { $button.show().siblings('span').remove(); }
converse.giveFeedback(__('Error'), 'error'); converse.giveFeedback(__('Error'), 'error');
...@@ -155,6 +155,7 @@ ...@@ -155,6 +155,7 @@
converse.giveFeedback(__('Authentication Failed'), 'error'); converse.giveFeedback(__('Authentication Failed'), 'error');
} else if (status === Strophe.Status.DISCONNECTING) { } else if (status === Strophe.Status.DISCONNECTING) {
converse.giveFeedback(__('Disconnecting'), 'error'); converse.giveFeedback(__('Disconnecting'), 'error');
converse.connection.connect(connection.jid, connection.pass, converse.onConnect);
} else if (status === Strophe.Status.ATTACHED) { } else if (status === Strophe.Status.ATTACHED) {
converse.log('Attached'); converse.log('Attached');
converse.onConnected(); converse.onConnected();
...@@ -295,30 +296,30 @@ ...@@ -295,30 +296,30 @@
} }
}, },
getPrivateKey: function (callback) { getSession: function (callback) {
var savedKey = this.get('priv_key'); var saved_key = this.get('priv_key');
var passCheck = this.get('pass_check');
var cipher = crypto.lib.PasswordBasedCipher; var cipher = crypto.lib.PasswordBasedCipher;
var pass = converse.connection.pass; var pass = converse.connection.pass;
var myKey, decrypted, ciphertextParams; if (saved_key) {
if (savedKey) { var decrypted = cipher.decrypt(crypto.algo.AES, saved_key, pass);
decrypted = cipher.decrypt(crypto.algo.AES, savedKey, pass); var key = otr.DSA.parsePrivate(decrypted.toString(crypto.enc.Latin1));
myKey = otr.DSA.parsePrivate(decrypted.toString(crypto.enc.Latin1)); if (cipher.decrypt(crypto.algo.AES, this.get('pass_check'), pass).toString(crypto.enc.Latin1) === 'match') {
if (cipher.decrypt(crypto.algo.AES, passCheck, pass).toString(crypto.enc.Latin1) === 'match') {
// Verified that the user's password is still the same // Verified that the user's password is still the same
return callback(myKey); return callback(key, this.get('instance_tag'));
} }
} }
this.trigger('showHelpMessages', [__('Please wait, generating private key...')]); this.trigger('showHelpMessages', [__('Please wait, generating private key...')]);
setTimeout($.proxy(function () { setTimeout($.proxy(function () {
// Couldn't get stored key, generate a new one. // Couldn't get stored key, generate a new one.
myKey = new otr.DSA(); var key = new otr.DSA();
var instance_tag = otr.OTR.makeInstanceTag();
this.trigger('showHelpMessages', [__('Private key generated.')]); this.trigger('showHelpMessages', [__('Private key generated.')]);
this.save({ this.save({
'priv_key': cipher.encrypt(crypto.algo.AES, myKey.packPrivate(), pass).toString(), 'priv_key': cipher.encrypt(crypto.algo.AES, key.packPrivate(), pass).toString(),
'pass_check': cipher.encrypt(crypto.algo.AES, 'match', pass).toString() 'pass_check': cipher.encrypt(crypto.algo.AES, 'match', pass).toString(),
'instance_tag': instance_tag
}); });
return callback(myKey); return callback(key, instance_tag);
}, this)); }, this));
}, },
...@@ -353,6 +354,10 @@ ...@@ -353,6 +354,10 @@
if (this.otr.trust === true) { if (this.otr.trust === true) {
this.save({'otr_status': VERIFIED}); this.save({'otr_status': VERIFIED});
} else { } else {
this.trigger(
'showHelpMessages',
[__("Could not verify identify via the Socialist's Millionaire Protocol.")],
'error');
this.save({'otr_status': UNVERIFIED}); this.save({'otr_status': UNVERIFIED});
} }
break; break;
...@@ -361,12 +366,19 @@ ...@@ -361,12 +366,19 @@
} }
}, },
initiateOTR: function () { initiateOTR: function (query_msg) {
this.getPrivateKey($.proxy(function (key) { // Sets up an OTR object through which we can send and receive
// encrypted messages.
//
// If 'query_msg' is passed in, it means there is an alread incoming
// query message from our buddy. Otherwise, it is us who will
// send the query message to them.
this.getSession($.proxy(function (key, instance_tag) {
this.otr = new otr.OTR({ this.otr = new otr.OTR({
fragment_size: 140, fragment_size: 140,
send_interval: 200, send_interval: 200,
priv: key, priv: key,
instance_tag: instance_tag,
debug: this.debug debug: this.debug
}); });
this.otr.on('status', $.proxy(this.updateOTRStatus, this)); this.otr.on('status', $.proxy(this.updateOTRStatus, this));
...@@ -381,7 +393,12 @@ ...@@ -381,7 +393,12 @@
this.otr.on('error', $.proxy(function (msg) { this.otr.on('error', $.proxy(function (msg) {
this.trigger('showOTRError', msg); this.trigger('showOTRError', msg);
}, this)); }, this));
this.otr.sendQueryMsg();
if (query_msg) {
this.otr.receiveMsg(query_msg);
} else {
this.otr.sendQueryMsg();
}
}, this)); }, this));
}, },
...@@ -433,21 +450,12 @@ ...@@ -433,21 +450,12 @@
if (_.contains([UNVERIFIED, VERIFIED], this.get('otr_status'))) { if (_.contains([UNVERIFIED, VERIFIED], this.get('otr_status'))) {
this.otr.receiveMsg(text); this.otr.receiveMsg(text);
} else { } else {
if (text.match(/^\?OTR(.*\?)/)) { if (text.match(/^\?OTR/)) {
// They want to initiate OTR // They want to initiate OTR
if (!this.otr) { if (!this.otr) {
this.trigger('buddyStartsOTR'); this.initiateOTR(text);
}
} else if (text.match(/^\?OTR\:/)) {
if (this.otr) {
// This is an encrypted message, but we don't
// appear to have an encrypted session. Send to OTR
// anyway, they'll complain.
this.otr.receiveMsg(text);
} else { } else {
this.showHelpMessages( this.otr.receiveMsg(text);
[__('We received an encrypted message, but you are not set up for encryption yet.')],
'error');
} }
} else { } else {
// Normal unencrypted message. // Normal unencrypted message.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment