@ -12,18 +12,20 @@
'click button.verify' : 'toggleVerified' ,
} ,
initialize : function ( options ) {
this . our _n umber = textsecure . storage . user . getNumber ( ) ;
this . our N umber = textsecure . storage . user . getNumber ( ) ;
if ( options . newKey ) {
this . their _k ey = options . newKey ;
this . their K ey = options . newKey ;
}
Promise . all ( [
this . loadKeys ( ) . then ( function ( ) {
this . listenTo ( this . model , 'change' , this . render ) ;
} . bind ( this ) ) ;
} ,
loadKeys : function ( ) {
return Promise . all ( [
this . loadTheirKey ( ) ,
this . loadOurKey ( ) ,
] ) . then ( this . generateSecurityNumber . bind ( this ) )
. then ( function ( ) {
this . listenTo ( this . model , 'change' , this . render ) ;
} . bind ( this ) )
. then ( this . render . bind ( this ) ) ;
//.then(this.makeQRCode.bind(this));
} ,
@ -31,40 +33,59 @@
// Per Lilia: We can't turn this on until it generates a Latin1 string, as is
// required by the mobile clients.
new QRCode ( this . $ ( '.qr' ) [ 0 ] ) . makeCode (
dcodeIO . ByteBuffer . wrap ( this . our _k ey) . toString ( 'base64' )
dcodeIO . ByteBuffer . wrap ( this . our K ey) . toString ( 'base64' )
) ;
} ,
loadTheirKey : function ( ) {
if ( this . their _key ) {
return Promise . resolve ( this . their _key ) ;
} else {
return textsecure . storage . protocol . loadIdentityKey (
this . model . id
) . then ( function ( their _key ) {
this . their _key = their _key ;
} . bind ( this ) ) ;
}
return textsecure . storage . protocol . loadIdentityKey (
this . model . id
) . then ( function ( theirKey ) {
this . theirKey = theirKey ;
} . bind ( this ) ) ;
} ,
loadOurKey : function ( ) {
if ( this . our _key ) {
return Promise . resolve ( this . our _key ) ;
} else {
return textsecure . storage . protocol . loadIdentityKey (
this . our _number
) . then ( function ( our _key ) {
this . our _key = our _key ;
} . bind ( this ) ) ;
}
return textsecure . storage . protocol . loadIdentityKey (
this . ourNumber
) . then ( function ( ourKey ) {
this . ourKey = ourKey ;
} . bind ( this ) ) ;
} ,
generateSecurityNumber : function ( ) {
return new libsignal . FingerprintGenerator ( 5200 ) . createFor (
this . our _number , this . our _k ey, this . model . id , this . their _k ey
this . ourNumber , this . ourKey , this . model . id , this . theirKey
) . then ( function ( securityNumber ) {
this . securityNumber = securityNumber ;
} . bind ( this ) ) ;
} ,
onSafetyNumberChanged : function ( ) {
this . model . getProfiles ( ) . then ( this . loadKeys . bind ( this ) ) ;
var dialog = new Whisper . ConfirmationDialogView ( {
message : i18n ( 'changedRightAfterVerify' , this . model . getTitle ( ) , this . model . getTitle ( ) ) ,
resolve : function ( ) { } ,
} ) ;
dialog . $el . insertBefore ( this . el ) ;
dialog . focusCancel ( ) ;
} ,
toggleVerified : function ( ) {
this . model . toggleVerified ( ) ;
this . $ ( 'button.verify' ) . attr ( 'disabled' , true ) ;
this . model . toggleVerified ( ) . catch ( function ( result ) {
if ( result instanceof Error ) {
if ( result . name === 'OutgoingIdentityKeyError' ) {
this . onSafetyNumberChanged ( ) ;
}
} else {
var keyError = _ . some ( result . errors , function ( error ) {
return error . name === 'OutgoingIdentityKeyError' ;
} ) ;
if ( keyError ) {
this . onSafetyNumberChanged ( ) ;
}
}
} . bind ( this ) ) . then ( function ( ) {
this . $ ( 'button.verify' ) . removeAttr ( 'disabled' ) ;
} . bind ( this ) ) ;
} ,
render _attributes : function ( ) {
var s = this . securityNumber ;
@ -80,11 +101,11 @@
return {
learnMore : i18n ( 'learnMore' ) ,
their _key _unknown : i18n ( 'theirIdentityUnknown' ) ,
their KeyUnknown : i18n ( 'theirIdentityUnknown' ) ,
yourSafetyNumberWith : i18n ( 'yourSafetyNumberWith' , this . model . getTitle ( ) ) ,
verifyHelp : i18n ( 'verifyHelp' , this . model . getTitle ( ) ) ,
verifyButton : verifyButton ,
has _their _key : this . their _k ey !== undefined ,
has TheirKey : this . theirK ey !== undefined ,
chunks : chunks ,
isVerified : isVerified ,
verifiedStatus : verifiedStatus