use LiveData in ViewKeyKeybaseFragment
This commit is contained in:
@@ -22,17 +22,13 @@ import java.util.ArrayList;
|
|||||||
import java.util.Hashtable;
|
import java.util.Hashtable;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import android.arch.lifecycle.ViewModelProviders;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.database.Cursor;
|
|
||||||
import android.graphics.Typeface;
|
import android.graphics.Typeface;
|
||||||
import android.net.Uri;
|
|
||||||
import android.os.AsyncTask;
|
import android.os.AsyncTask;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.support.annotation.NonNull;
|
import android.support.annotation.NonNull;
|
||||||
import android.support.v4.app.Fragment;
|
import android.support.v4.app.Fragment;
|
||||||
import android.support.v4.app.LoaderManager;
|
|
||||||
import android.support.v4.content.CursorLoader;
|
|
||||||
import android.support.v4.content.Loader;
|
|
||||||
import android.text.SpannableStringBuilder;
|
import android.text.SpannableStringBuilder;
|
||||||
import android.text.Spanned;
|
import android.text.Spanned;
|
||||||
import android.text.method.LinkMovementMethod;
|
import android.text.method.LinkMovementMethod;
|
||||||
@@ -51,52 +47,37 @@ import com.textuality.keybase.lib.KeybaseQuery;
|
|||||||
import com.textuality.keybase.lib.Proof;
|
import com.textuality.keybase.lib.Proof;
|
||||||
import com.textuality.keybase.lib.User;
|
import com.textuality.keybase.lib.User;
|
||||||
import org.sufficientlysecure.keychain.R;
|
import org.sufficientlysecure.keychain.R;
|
||||||
|
import org.sufficientlysecure.keychain.model.SubKey.UnifiedKeyInfo;
|
||||||
import org.sufficientlysecure.keychain.network.OkHttpKeybaseClient;
|
import org.sufficientlysecure.keychain.network.OkHttpKeybaseClient;
|
||||||
import org.sufficientlysecure.keychain.network.orbot.OrbotHelper;
|
import org.sufficientlysecure.keychain.network.orbot.OrbotHelper;
|
||||||
import org.sufficientlysecure.keychain.operations.results.KeybaseVerificationResult;
|
import org.sufficientlysecure.keychain.operations.results.KeybaseVerificationResult;
|
||||||
import org.sufficientlysecure.keychain.provider.KeychainContract.KeyRings;
|
|
||||||
import org.sufficientlysecure.keychain.service.KeybaseVerificationParcel;
|
import org.sufficientlysecure.keychain.service.KeybaseVerificationParcel;
|
||||||
import org.sufficientlysecure.keychain.ui.base.CryptoOperationHelper;
|
import org.sufficientlysecure.keychain.ui.base.CryptoOperationHelper;
|
||||||
|
import org.sufficientlysecure.keychain.ui.keyview.UnifiedKeyInfoViewModel;
|
||||||
import org.sufficientlysecure.keychain.ui.util.KeyFormattingUtils;
|
import org.sufficientlysecure.keychain.ui.util.KeyFormattingUtils;
|
||||||
import org.sufficientlysecure.keychain.util.ParcelableProxy;
|
import org.sufficientlysecure.keychain.util.ParcelableProxy;
|
||||||
import org.sufficientlysecure.keychain.util.Preferences;
|
import org.sufficientlysecure.keychain.util.Preferences;
|
||||||
|
|
||||||
public class ViewKeyKeybaseFragment extends Fragment implements
|
public class ViewKeyKeybaseFragment extends Fragment implements
|
||||||
LoaderManager.LoaderCallbacks<Cursor>,
|
|
||||||
CryptoOperationHelper.Callback<KeybaseVerificationParcel, KeybaseVerificationResult> {
|
CryptoOperationHelper.Callback<KeybaseVerificationParcel, KeybaseVerificationResult> {
|
||||||
|
|
||||||
public static final String ARG_MASTER_KEY_ID = "master_key_id";
|
|
||||||
|
|
||||||
private TextView mReportHeader;
|
private TextView mReportHeader;
|
||||||
private TableLayout mProofListing;
|
private TableLayout mProofListing;
|
||||||
private LayoutInflater mInflater;
|
private LayoutInflater mInflater;
|
||||||
private View mProofVerifyHeader;
|
private View mProofVerifyHeader;
|
||||||
private TextView mProofVerifyDetail;
|
private TextView mProofVerifyDetail;
|
||||||
|
|
||||||
private static final int LOADER_ID_DATABASE = 1;
|
|
||||||
|
|
||||||
// for retrieving the key we’re working on
|
|
||||||
private long masterKeyId;
|
|
||||||
|
|
||||||
private Proof mProof;
|
private Proof mProof;
|
||||||
|
|
||||||
// for CryptoOperationHelper,Callback
|
// for CryptoOperationHelper,Callback
|
||||||
private String mKeybaseProof;
|
private String mKeybaseProof;
|
||||||
private String mKeybaseFingerprint;
|
private String mKeybaseFingerprint;
|
||||||
private CryptoOperationHelper<KeybaseVerificationParcel, KeybaseVerificationResult>
|
private CryptoOperationHelper<KeybaseVerificationParcel, KeybaseVerificationResult> mKeybaseOpHelper;
|
||||||
mKeybaseOpHelper;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates new instance of this fragment
|
* Creates new instance of this fragment
|
||||||
*/
|
*/
|
||||||
public static ViewKeyKeybaseFragment newInstance(long masterKeyId) {
|
public static ViewKeyKeybaseFragment newInstance() {
|
||||||
ViewKeyKeybaseFragment frag = new ViewKeyKeybaseFragment();
|
return new ViewKeyKeybaseFragment();
|
||||||
Bundle args = new Bundle();
|
|
||||||
args.putLong(ARG_MASTER_KEY_ID, masterKeyId);
|
|
||||||
|
|
||||||
frag.setArguments(args);
|
|
||||||
|
|
||||||
return frag;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -120,57 +101,16 @@ public class ViewKeyKeybaseFragment extends Fragment implements
|
|||||||
public void onActivityCreated(Bundle savedInstanceState) {
|
public void onActivityCreated(Bundle savedInstanceState) {
|
||||||
super.onActivityCreated(savedInstanceState);
|
super.onActivityCreated(savedInstanceState);
|
||||||
|
|
||||||
masterKeyId = getArguments().getLong(ARG_MASTER_KEY_ID);
|
UnifiedKeyInfoViewModel viewKeyViewModel = ViewModelProviders.of(requireActivity()).get(UnifiedKeyInfoViewModel.class);
|
||||||
if (masterKeyId == 0L) {
|
viewKeyViewModel.getUnifiedKeyInfoLiveData(requireContext()).observe(this, this::onLoadUnifiedKeyInfo);
|
||||||
throw new IllegalArgumentException();
|
|
||||||
}
|
|
||||||
|
|
||||||
// retrieve the key from the database
|
|
||||||
getLoaderManager().initLoader(LOADER_ID_DATABASE, null, this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static final String[] TRUST_PROJECTION = new String[]{
|
private void onLoadUnifiedKeyInfo(UnifiedKeyInfo unifiedKeyInfo) {
|
||||||
KeyRings._ID, KeyRings.FINGERPRINT, KeyRings.IS_REVOKED, KeyRings.IS_EXPIRED,
|
if (unifiedKeyInfo == null) {
|
||||||
KeyRings.HAS_ANY_SECRET, KeyRings.VERIFIED
|
|
||||||
};
|
|
||||||
static final int INDEX_TRUST_FINGERPRINT = 1;
|
|
||||||
static final int INDEX_TRUST_IS_REVOKED = 2;
|
|
||||||
static final int INDEX_TRUST_IS_EXPIRED = 3;
|
|
||||||
static final int INDEX_UNIFIED_HAS_ANY_SECRET = 4;
|
|
||||||
static final int INDEX_VERIFIED = 5;
|
|
||||||
|
|
||||||
public Loader<Cursor> onCreateLoader(int id, Bundle args) {
|
|
||||||
switch (id) {
|
|
||||||
case LOADER_ID_DATABASE: {
|
|
||||||
Uri baseUri = KeyRings.buildUnifiedKeyRingUri(masterKeyId);
|
|
||||||
return new CursorLoader(getActivity(), baseUri, TRUST_PROJECTION, null, null, null);
|
|
||||||
}
|
|
||||||
// decided to just use an AsyncTask for keybase, but maybe later
|
|
||||||
default:
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
|
|
||||||
/* TODO better error handling? May cause problems when a key is deleted,
|
|
||||||
* because the notification triggers faster than the activity closes.
|
|
||||||
*/
|
|
||||||
// Avoid NullPointerExceptions...
|
|
||||||
if (data.getCount() == 0) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
String fingerprint = KeyFormattingUtils.convertFingerprintToHex(unifiedKeyInfo.fingerprint());
|
||||||
boolean nothingSpecial = true;
|
startSearch(fingerprint);
|
||||||
|
|
||||||
// Swap the new cursor in. (The framework will take care of closing the
|
|
||||||
// old cursor once we return.)
|
|
||||||
if (data.moveToFirst()) {
|
|
||||||
|
|
||||||
final byte[] fp = data.getBlob(INDEX_TRUST_FINGERPRINT);
|
|
||||||
final String fingerprint = KeyFormattingUtils.convertFingerprintToHex(fp);
|
|
||||||
|
|
||||||
startSearch(fingerprint);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void startSearch(final String fingerprint) {
|
private void startSearch(final String fingerprint) {
|
||||||
@@ -200,19 +140,11 @@ public class ViewKeyKeybaseFragment extends Fragment implements
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* This is called when the last Cursor provided to onLoadFinished() above is about to be closed.
|
|
||||||
* We need to make sure we are no longer using it.
|
|
||||||
*/
|
|
||||||
public void onLoaderReset(Loader<Cursor> loader) {
|
|
||||||
// no-op in this case I think
|
|
||||||
}
|
|
||||||
|
|
||||||
class ResultPage {
|
class ResultPage {
|
||||||
String mHeader;
|
String mHeader;
|
||||||
final List<CharSequence> mProofs;
|
final List<CharSequence> mProofs;
|
||||||
|
|
||||||
public ResultPage(String header, List<CharSequence> proofs) {
|
ResultPage(String header, List<CharSequence> proofs) {
|
||||||
mHeader = header;
|
mHeader = header;
|
||||||
mProofs = proofs;
|
mProofs = proofs;
|
||||||
}
|
}
|
||||||
@@ -224,7 +156,7 @@ public class ViewKeyKeybaseFragment extends Fragment implements
|
|||||||
private class DescribeKey extends AsyncTask<String, Void, ResultPage> {
|
private class DescribeKey extends AsyncTask<String, Void, ResultPage> {
|
||||||
ParcelableProxy mParcelableProxy;
|
ParcelableProxy mParcelableProxy;
|
||||||
|
|
||||||
public DescribeKey(ParcelableProxy parcelableProxy) {
|
DescribeKey(ParcelableProxy parcelableProxy) {
|
||||||
mParcelableProxy = parcelableProxy;
|
mParcelableProxy = parcelableProxy;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -232,8 +164,8 @@ public class ViewKeyKeybaseFragment extends Fragment implements
|
|||||||
protected ResultPage doInBackground(String... args) {
|
protected ResultPage doInBackground(String... args) {
|
||||||
String fingerprint = args[0];
|
String fingerprint = args[0];
|
||||||
|
|
||||||
final ArrayList<CharSequence> proofList = new ArrayList<CharSequence>();
|
final ArrayList<CharSequence> proofList = new ArrayList<>();
|
||||||
final Hashtable<Integer, ArrayList<Proof>> proofs = new Hashtable<Integer, ArrayList<Proof>>();
|
final Hashtable<Integer, ArrayList<Proof>> proofs = new Hashtable<>();
|
||||||
try {
|
try {
|
||||||
KeybaseQuery keybaseQuery = new KeybaseQuery(new OkHttpKeybaseClient());
|
KeybaseQuery keybaseQuery = new KeybaseQuery(new OkHttpKeybaseClient());
|
||||||
keybaseQuery.setProxy(mParcelableProxy.getProxy());
|
keybaseQuery.setProxy(mParcelableProxy.getProxy());
|
||||||
@@ -285,7 +217,7 @@ public class ViewKeyKeybaseFragment extends Fragment implements
|
|||||||
return ssb;
|
return ssb;
|
||||||
}
|
}
|
||||||
|
|
||||||
private SpannableStringBuilder appendProofLinks(SpannableStringBuilder ssb, final String fingerprint, final Proof proof) throws KeybaseException {
|
private void appendProofLinks(SpannableStringBuilder ssb, final String fingerprint, final Proof proof) throws KeybaseException {
|
||||||
int startAt = ssb.length();
|
int startAt = ssb.length();
|
||||||
String handle = proof.getHandle();
|
String handle = proof.getHandle();
|
||||||
ssb.append(handle);
|
ssb.append(handle);
|
||||||
@@ -307,7 +239,6 @@ public class ViewKeyKeybaseFragment extends Fragment implements
|
|||||||
ssb.setSpan(clicker, startAt, startAt + verify.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
ssb.setSpan(clicker, startAt, startAt + verify.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||||
ssb.append("]");
|
ssb.append("]");
|
||||||
}
|
}
|
||||||
return ssb;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -319,7 +250,7 @@ public class ViewKeyKeybaseFragment extends Fragment implements
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (result.mProofs.isEmpty()) {
|
if (result.mProofs.isEmpty()) {
|
||||||
result.mHeader = getActivity().getString(R.string.key_trust_no_cloud_evidence);
|
result.mHeader = requireActivity().getString(R.string.key_trust_no_cloud_evidence);
|
||||||
}
|
}
|
||||||
|
|
||||||
mReportHeader.setVisibility(View.VISIBLE);
|
mReportHeader.setVisibility(View.VISIBLE);
|
||||||
@@ -374,10 +305,10 @@ public class ViewKeyKeybaseFragment extends Fragment implements
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void appendIfOK(Hashtable<Integer, ArrayList<Proof>> table, Integer proofType, Proof proof) throws KeybaseException {
|
private void appendIfOK(Hashtable<Integer, ArrayList<Proof>> table, Integer proofType, Proof proof) {
|
||||||
ArrayList<Proof> list = table.get(proofType);
|
ArrayList<Proof> list = table.get(proofType);
|
||||||
if (list == null) {
|
if (list == null) {
|
||||||
list = new ArrayList<Proof>();
|
list = new ArrayList<>();
|
||||||
table.put(proofType, list);
|
table.put(proofType, list);
|
||||||
}
|
}
|
||||||
list.add(proof);
|
list.add(proof);
|
||||||
@@ -504,7 +435,6 @@ public class ViewKeyKeybaseFragment extends Fragment implements
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCryptoOperationError(KeybaseVerificationResult result) {
|
public void onCryptoOperationError(KeybaseVerificationResult result) {
|
||||||
|
|
||||||
result.createNotify(getActivity()).show();
|
result.createNotify(getActivity()).show();
|
||||||
|
|
||||||
SpannableStringBuilder ssb = new SpannableStringBuilder();
|
SpannableStringBuilder ssb = new SpannableStringBuilder();
|
||||||
|
|||||||
@@ -285,11 +285,8 @@ public class ViewKeyActivity extends BaseSecurityTokenActivity implements
|
|||||||
manager.beginTransaction().replace(R.id.view_key_fragment, frag, "view_key_fragment").commit();
|
manager.beginTransaction().replace(R.id.view_key_fragment, frag, "view_key_fragment").commit();
|
||||||
|
|
||||||
if (Preferences.getPreferences(this).getExperimentalEnableKeybase()) {
|
if (Preferences.getPreferences(this).getExperimentalEnableKeybase()) {
|
||||||
manager = getSupportFragmentManager();
|
final ViewKeyKeybaseFragment keybaseFrag = ViewKeyKeybaseFragment.newInstance();
|
||||||
final ViewKeyKeybaseFragment keybaseFrag = ViewKeyKeybaseFragment.newInstance(masterKeyId);
|
manager.beginTransaction().replace(R.id.view_key_keybase_fragment, keybaseFrag).commit();
|
||||||
manager.beginTransaction()
|
|
||||||
.replace(R.id.view_key_keybase_fragment, keybaseFrag)
|
|
||||||
.commit();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user