Handle case where buddy starts OTR better.
This commit is contained in:
parent
48b6898a2e
commit
ccfccfb2cf
55
converse.js
55
converse.js
@ -305,14 +305,13 @@
|
|||||||
return myKey;
|
return myKey;
|
||||||
},
|
},
|
||||||
|
|
||||||
initiateOTR: function (myKey) {
|
initiateOTR: function () {
|
||||||
var options = {
|
this.otr = new otr.OTR({
|
||||||
fragment_size: 140,
|
fragment_size: 140,
|
||||||
send_interval: 200,
|
send_interval: 200,
|
||||||
priv: myKey,
|
priv: this.getPrivateKey(),
|
||||||
debug: true
|
debug: this.debug
|
||||||
};
|
});
|
||||||
this.otr = new otr.OTR(options);
|
|
||||||
this.otr.on('ui', $.proxy(function (msg) {
|
this.otr.on('ui', $.proxy(function (msg) {
|
||||||
this.trigger('showReceivedOTRMessage', msg);
|
this.trigger('showReceivedOTRMessage', msg);
|
||||||
}, this));
|
}, this));
|
||||||
@ -378,10 +377,8 @@
|
|||||||
if (match) {
|
if (match) {
|
||||||
// They want to initiate OTR
|
// They want to initiate OTR
|
||||||
if (!this.otr) {
|
if (!this.otr) {
|
||||||
// FIXME: this isn't yet correct...
|
this.trigger('buddyStartsOTR');
|
||||||
this.initiateOTR();
|
|
||||||
}
|
}
|
||||||
this.otr.receiveMsg(match[0]);
|
|
||||||
} else {
|
} else {
|
||||||
// Normal unencrypted message.
|
// Normal unencrypted message.
|
||||||
this.createMessage(message);
|
this.createMessage(message);
|
||||||
@ -403,7 +400,7 @@
|
|||||||
'click .close-chatbox-button': 'closeChat',
|
'click .close-chatbox-button': 'closeChat',
|
||||||
'keypress textarea.chat-textarea': 'keyPressed',
|
'keypress textarea.chat-textarea': 'keyPressed',
|
||||||
'click .toggle-otr': 'toggleOTRMenu',
|
'click .toggle-otr': 'toggleOTRMenu',
|
||||||
'click .start-otr': 'startOTR',
|
'click .start-otr': 'startOTRFromToolbar',
|
||||||
'click .end-otr': 'endOTR',
|
'click .end-otr': 'endOTR',
|
||||||
'click .auth-otr': 'authOTR'
|
'click .auth-otr': 'authOTR'
|
||||||
},
|
},
|
||||||
@ -420,7 +417,7 @@
|
|||||||
'<form class="sendXMPPMessage" action="" method="post">' +
|
'<form class="sendXMPPMessage" action="" method="post">' +
|
||||||
'<ul class="chat-toolbar no-text-select">'+
|
'<ul class="chat-toolbar no-text-select">'+
|
||||||
'<li class="toggle-otr not-private" title="Turn on \'off-the-record\' chat encryption">'+
|
'<li class="toggle-otr not-private" title="Turn on \'off-the-record\' chat encryption">'+
|
||||||
'<span class="chat-toolbar-text">Not private</span>'+
|
'<span class="chat-toolbar-text">Unencrypted</span>'+
|
||||||
'<span class="icon-unlocked"></span>'+
|
'<span class="icon-unlocked"></span>'+
|
||||||
'<ul>'+
|
'<ul>'+
|
||||||
'<li><a class="start-otr" href="#">Start private conversation</a></li>'+
|
'<li><a class="start-otr" href="#">Start private conversation</a></li>'+
|
||||||
@ -457,6 +454,7 @@
|
|||||||
this.model.on('show', this.show, this);
|
this.model.on('show', this.show, this);
|
||||||
this.model.on('destroy', this.hide, this);
|
this.model.on('destroy', this.hide, this);
|
||||||
this.model.on('change', this.onChange, this);
|
this.model.on('change', this.onChange, this);
|
||||||
|
this.model.on('buddyStartsOTR', this.buddyStartsOTR, this);
|
||||||
this.model.on('sendMessageStanza', this.sendMessageStanza, this);
|
this.model.on('sendMessageStanza', this.sendMessageStanza, this);
|
||||||
this.model.on('showSentOTRMessage', function (text) {
|
this.model.on('showSentOTRMessage', function (text) {
|
||||||
this.showOTRMessage(text, 'me');
|
this.showOTRMessage(text, 'me');
|
||||||
@ -683,28 +681,33 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
startOTR: function (ev) {
|
startOTR: function (message) {
|
||||||
$(ev.target).parent().parent().slideUp();
|
this.showHelpMessages([
|
||||||
ev.stopPropagation();
|
message,
|
||||||
msgs = [
|
__('Hold on, generating private key.')
|
||||||
__('Initializing OTR.'),
|
]);
|
||||||
__('Generating private key'),
|
|
||||||
__('...this might take a few seconds.')
|
|
||||||
];
|
|
||||||
this.showHelpMessages(msgs);
|
|
||||||
setTimeout($.proxy(function () {
|
setTimeout($.proxy(function () {
|
||||||
var privKey = this.model.getPrivateKey();
|
this.model.initiateOTR();
|
||||||
msgs = [
|
this.showHelpMessages([__('Private key generated.')]);
|
||||||
__('Private key generated.')
|
|
||||||
];
|
|
||||||
this.showHelpMessages(msgs);
|
|
||||||
this.model.initiateOTR(privKey);
|
|
||||||
}, this));
|
}, this));
|
||||||
// TODO: UI must be updated to show new status... most likely
|
// TODO: UI must be updated to show new status... most likely
|
||||||
// "unverified" but we also need to figure out to know whether
|
// "unverified" but we also need to figure out to know whether
|
||||||
// the status is verified or unverified (and how to verify).
|
// the status is verified or unverified (and how to verify).
|
||||||
},
|
},
|
||||||
|
|
||||||
|
buddyStartsOTR: function (ev) {
|
||||||
|
this.showHelpMessages([
|
||||||
|
__(this.model.get('fullname') + ' has requested an encrypted session.')
|
||||||
|
]);
|
||||||
|
this.startOTR();
|
||||||
|
},
|
||||||
|
|
||||||
|
startOTRFromToolbar: function (ev) {
|
||||||
|
$(ev.target).parent().parent().slideUp();
|
||||||
|
ev.stopPropagation();
|
||||||
|
this.startOTR();
|
||||||
|
},
|
||||||
|
|
||||||
endOTR: function (ev) {
|
endOTR: function (ev) {
|
||||||
alert('to be done');
|
alert('to be done');
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user