session-android/src/org/thoughtcrime/securesms/VerifyIdentityActivity.java

181 lines
5.7 KiB
Java
Raw Normal View History

/**
2011-12-20 19:20:44 +01:00
* Copyright (C) 2011 Whisper Systems
* Copyright (C) 2013 Open Whisper Systems
*
2011-12-20 19:20:44 +01:00
* 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 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 General Public License for more details.
*
2011-12-20 19:20:44 +01:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.thoughtcrime.securesms;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.Toast;
import org.thoughtcrime.securesms.crypto.IdentityKeyUtil;
import org.thoughtcrime.securesms.recipients.Recipient;
import org.thoughtcrime.securesms.util.DynamicLanguage;
import org.thoughtcrime.securesms.util.DynamicTheme;
import org.thoughtcrime.securesms.util.MemoryCleaner;
import org.whispersystems.libaxolotl.IdentityKey;
import org.whispersystems.textsecure.crypto.IdentityKeyParcelable;
import org.whispersystems.textsecure.crypto.MasterSecret;
import org.whispersystems.textsecure.storage.Session;
2011-12-20 19:20:44 +01:00
/**
* Activity for verifying identity keys.
*
2011-12-20 19:20:44 +01:00
* @author Moxie Marlinspike
*/
public class VerifyIdentityActivity extends KeyScanningActivity {
private Recipient recipient;
2011-12-20 19:20:44 +01:00
private MasterSecret masterSecret;
2011-12-20 19:20:44 +01:00
private TextView localIdentityFingerprint;
private TextView remoteIdentityFingerprint;
private final DynamicTheme dynamicTheme = new DynamicTheme ();
private final DynamicLanguage dynamicLanguage = new DynamicLanguage();
2011-12-20 19:20:44 +01:00
@Override
public void onCreate(Bundle state) {
dynamicTheme.onCreate(this);
dynamicLanguage.onCreate(this);
2011-12-20 19:20:44 +01:00
super.onCreate(state);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
2011-12-20 19:20:44 +01:00
setContentView(R.layout.verify_identity_activity);
2011-12-20 19:20:44 +01:00
initializeResources();
initializeFingerprints();
}
@Override
public void onResume() {
super.onResume();
dynamicTheme.onResume(this);
dynamicLanguage.onResume(this);
getSupportActionBar().setTitle(R.string.AndroidManifest__verify_identity);
}
2011-12-20 19:20:44 +01:00
@Override
protected void onDestroy() {
MemoryCleaner.clean(masterSecret);
super.onDestroy();
}
2011-12-20 19:20:44 +01:00
private void initializeLocalIdentityKey() {
2014-04-10 05:02:46 +02:00
if (!IdentityKeyUtil.hasIdentityKey(this)) {
localIdentityFingerprint.setText(R.string.VerifyIdentityActivity_you_do_not_have_an_identity_key);
2011-12-20 19:20:44 +01:00
return;
}
2014-04-10 05:02:46 +02:00
localIdentityFingerprint.setText(IdentityKeyUtil.getIdentityKey(this).getFingerprint());
2011-12-20 19:20:44 +01:00
}
private void initializeRemoteIdentityKey() {
IdentityKeyParcelable identityKeyParcelable = getIntent().getParcelableExtra("remote_identity");
IdentityKey identityKey = null;
if (identityKeyParcelable != null) {
identityKey = identityKeyParcelable.get();
}
if (identityKey == null) {
identityKey = Session.getRemoteIdentityKey(this, masterSecret, recipient);
}
2011-12-20 19:20:44 +01:00
if (identityKey == null) {
remoteIdentityFingerprint.setText(R.string.VerifyIdentityActivity_recipient_has_no_identity_key);
2011-12-20 19:20:44 +01:00
} else {
remoteIdentityFingerprint.setText(identityKey.getFingerprint());
}
}
2011-12-20 19:20:44 +01:00
private void initializeFingerprints() {
initializeLocalIdentityKey();
initializeRemoteIdentityKey();
}
2011-12-20 19:20:44 +01:00
private void initializeResources() {
this.localIdentityFingerprint = (TextView)findViewById(R.id.you_read);
this.remoteIdentityFingerprint = (TextView)findViewById(R.id.friend_reads);
this.recipient = this.getIntent().getParcelableExtra("recipient");
this.masterSecret = this.getIntent().getParcelableExtra("master_secret");
2011-12-20 19:20:44 +01:00
}
@Override
protected void initiateDisplay() {
2014-04-10 05:02:46 +02:00
if (!IdentityKeyUtil.hasIdentityKey(this)) {
Toast.makeText(this,
R.string.VerifyIdentityActivity_you_don_t_have_an_identity_key_exclamation,
Toast.LENGTH_LONG).show();
2011-12-20 19:20:44 +01:00
return;
}
2011-12-20 19:20:44 +01:00
super.initiateDisplay();
}
2011-12-20 19:20:44 +01:00
@Override
protected void initiateScan() {
IdentityKey identityKey = Session.getRemoteIdentityKey(this, masterSecret, recipient);
2011-12-20 19:20:44 +01:00
if (identityKey == null) {
Toast.makeText(this, R.string.VerifyIdentityActivity_recipient_has_no_identity_key_exclamation,
Toast.LENGTH_LONG).show();
2011-12-20 19:20:44 +01:00
} else {
super.initiateScan();
}
2011-12-20 19:20:44 +01:00
}
2011-12-20 19:20:44 +01:00
@Override
protected String getScanString() {
return getString(R.string.VerifyIdentityActivity_scan_their_key_to_compare);
2011-12-20 19:20:44 +01:00
}
@Override
protected String getDisplayString() {
return getString(R.string.VerifyIdentityActivity_get_my_key_scanned);
2011-12-20 19:20:44 +01:00
}
@Override
protected IdentityKey getIdentityKeyToCompare() {
return Session.getRemoteIdentityKey(this, masterSecret, recipient);
2011-12-20 19:20:44 +01:00
}
@Override
protected IdentityKey getIdentityKeyToDisplay() {
2014-04-10 05:02:46 +02:00
return IdentityKeyUtil.getIdentityKey(this);
2011-12-20 19:20:44 +01:00
}
@Override
protected String getNotVerifiedMessage() {
return getString(R.string.VerifyIdentityActivity_warning_the_scanned_key_does_not_match_please_check_the_fingerprint_text_carefully);
2011-12-20 19:20:44 +01:00
}
@Override
protected String getNotVerifiedTitle() {
return getString(R.string.VerifyIdentityActivity_not_verified_exclamation);
2011-12-20 19:20:44 +01:00
}
@Override
protected String getVerifiedMessage() {
return getString(R.string.VerifyIdentityActivity_their_key_is_correct_it_is_also_necessary_to_verify_your_key_with_them_as_well);
2011-12-20 19:20:44 +01:00
}
@Override
protected String getVerifiedTitle() {
return getString(R.string.VerifyIdentityActivity_verified_exclamation);
2011-12-20 19:20:44 +01:00
}
}