mirror of
https://github.com/moparisthebest/open-keychain
synced 2025-01-12 05:58:07 -05:00
Add highlighting to keyserver/keybase search
This commit is contained in:
parent
ab81d8903a
commit
69ce66be94
@ -237,6 +237,7 @@ public class HkpKeyServer extends KeyServer {
|
|||||||
final Matcher matcher = PUB_KEY_LINE.matcher(data);
|
final Matcher matcher = PUB_KEY_LINE.matcher(data);
|
||||||
while (matcher.find()) {
|
while (matcher.find()) {
|
||||||
final ImportKeysListEntry entry = new ImportKeysListEntry();
|
final ImportKeysListEntry entry = new ImportKeysListEntry();
|
||||||
|
entry.setQuery(query);
|
||||||
|
|
||||||
entry.setBitStrength(Integer.parseInt(matcher.group(3)));
|
entry.setBitStrength(Integer.parseInt(matcher.group(3)));
|
||||||
|
|
||||||
|
@ -51,6 +51,7 @@ public class ImportKeysListEntry implements Serializable, Parcelable {
|
|||||||
public boolean secretKey;
|
public boolean secretKey;
|
||||||
public String mPrimaryUserId;
|
public String mPrimaryUserId;
|
||||||
private String mExtraData;
|
private String mExtraData;
|
||||||
|
private String mQuery;
|
||||||
|
|
||||||
private boolean mSelected;
|
private boolean mSelected;
|
||||||
|
|
||||||
@ -209,6 +210,14 @@ public class ImportKeysListEntry implements Serializable, Parcelable {
|
|||||||
mExtraData = extraData;
|
mExtraData = extraData;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getQuery() {
|
||||||
|
return mQuery;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setQuery(String query) {
|
||||||
|
mQuery = query;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor for later querying from keyserver
|
* Constructor for later querying from keyserver
|
||||||
*/
|
*/
|
||||||
|
@ -34,6 +34,7 @@ import java.util.TimeZone;
|
|||||||
import java.util.WeakHashMap;
|
import java.util.WeakHashMap;
|
||||||
|
|
||||||
public class KeybaseKeyServer extends KeyServer {
|
public class KeybaseKeyServer extends KeyServer {
|
||||||
|
private String mQuery;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ArrayList<ImportKeysListEntry> search(String query) throws QueryException, TooManyResponses,
|
public ArrayList<ImportKeysListEntry> search(String query) throws QueryException, TooManyResponses,
|
||||||
@ -86,15 +87,15 @@ public class KeybaseKeyServer extends KeyServer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private ImportKeysListEntry makeEntry(JSONObject match) throws QueryException, JSONException {
|
private ImportKeysListEntry makeEntry(JSONObject match) throws QueryException, JSONException {
|
||||||
|
|
||||||
final ImportKeysListEntry entry = new ImportKeysListEntry();
|
final ImportKeysListEntry entry = new ImportKeysListEntry();
|
||||||
|
entry.setQuery(mQuery);
|
||||||
|
|
||||||
String keybaseId = JWalk.getString(match, "components", "username", "val");
|
String keybaseId = JWalk.getString(match, "components", "username", "val");
|
||||||
String fullName = JWalk.getString(match, "components", "full_name", "val");
|
String fullName = JWalk.getString(match, "components", "full_name", "val");
|
||||||
String fingerprint = JWalk.getString(match, "components", "key_fingerprint", "val");
|
String fingerprint = JWalk.getString(match, "components", "key_fingerprint", "val");
|
||||||
fingerprint = fingerprint.replace(" ", "").toUpperCase(); // not strictly necessary but doesn't hurt
|
fingerprint = fingerprint.replace(" ", "").toUpperCase(); // not strictly necessary but doesn't hurt
|
||||||
entry.setFingerprintHex(fingerprint);
|
entry.setFingerprintHex(fingerprint);
|
||||||
|
|
||||||
// in anticipation of a full fingerprint, only use the last 16 chars as 64-bit key id
|
|
||||||
entry.setKeyIdHex("0x" + fingerprint.substring(Math.max(0, fingerprint.length() - 16)));
|
entry.setKeyIdHex("0x" + fingerprint.substring(Math.max(0, fingerprint.length() - 16)));
|
||||||
// store extra info, so we can query for the keybase id directly
|
// store extra info, so we can query for the keybase id directly
|
||||||
entry.setExtraData(keybaseId);
|
entry.setExtraData(keybaseId);
|
||||||
|
@ -33,6 +33,7 @@ import android.widget.TextView;
|
|||||||
import org.sufficientlysecure.keychain.R;
|
import org.sufficientlysecure.keychain.R;
|
||||||
import org.sufficientlysecure.keychain.keyimport.ImportKeysListEntry;
|
import org.sufficientlysecure.keychain.keyimport.ImportKeysListEntry;
|
||||||
import org.sufficientlysecure.keychain.pgp.PgpKeyHelper;
|
import org.sufficientlysecure.keychain.pgp.PgpKeyHelper;
|
||||||
|
import org.sufficientlysecure.keychain.util.Highlighter;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
@ -99,6 +100,7 @@ public class ImportKeysAdapter extends ArrayAdapter<ImportKeysListEntry> {
|
|||||||
|
|
||||||
public View getView(int position, View convertView, ViewGroup parent) {
|
public View getView(int position, View convertView, ViewGroup parent) {
|
||||||
ImportKeysListEntry entry = mData.get(position);
|
ImportKeysListEntry entry = mData.get(position);
|
||||||
|
Highlighter highlighter = new Highlighter(mActivity, entry.getQuery());
|
||||||
ViewHolder holder;
|
ViewHolder holder;
|
||||||
if (convertView == null) {
|
if (convertView == null) {
|
||||||
holder = new ViewHolder();
|
holder = new ViewHolder();
|
||||||
@ -128,7 +130,7 @@ public class ImportKeysAdapter extends ArrayAdapter<ImportKeysListEntry> {
|
|||||||
+ " " + userIdSplit[0]);
|
+ " " + userIdSplit[0]);
|
||||||
holder.mainUserId.setTextColor(Color.RED);
|
holder.mainUserId.setTextColor(Color.RED);
|
||||||
} else {
|
} else {
|
||||||
holder.mainUserId.setText(userIdSplit[0]);
|
holder.mainUserId.setText(highlighter.highlight(userIdSplit[0]));
|
||||||
holder.mainUserId.setTextColor(Color.BLACK);
|
holder.mainUserId.setTextColor(Color.BLACK);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -139,7 +141,7 @@ public class ImportKeysAdapter extends ArrayAdapter<ImportKeysListEntry> {
|
|||||||
// email
|
// email
|
||||||
if (userIdSplit[1] != null) {
|
if (userIdSplit[1] != null) {
|
||||||
holder.mainUserIdRest.setVisibility(View.VISIBLE);
|
holder.mainUserIdRest.setVisibility(View.VISIBLE);
|
||||||
holder.mainUserIdRest.setText(userIdSplit[1]);
|
holder.mainUserIdRest.setText(highlighter.highlight(userIdSplit[1]));
|
||||||
} else {
|
} else {
|
||||||
holder.mainUserIdRest.setVisibility(View.GONE);
|
holder.mainUserIdRest.setVisibility(View.GONE);
|
||||||
}
|
}
|
||||||
@ -182,7 +184,7 @@ public class ImportKeysAdapter extends ArrayAdapter<ImportKeysListEntry> {
|
|||||||
String uid = it.next();
|
String uid = it.next();
|
||||||
TextView uidView = (TextView) mInflater.inflate(
|
TextView uidView = (TextView) mInflater.inflate(
|
||||||
R.layout.import_keys_list_entry_user_id, null);
|
R.layout.import_keys_list_entry_user_id, null);
|
||||||
uidView.setText(uid);
|
uidView.setText(highlighter.highlight(uid));
|
||||||
holder.userIdsList.addView(uidView);
|
holder.userIdsList.addView(uidView);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,57 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2014 Thialfihar <thi@thialfihar.org>
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* 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.sufficientlysecure.keychain.util;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.text.Spannable;
|
||||||
|
import android.text.style.ForegroundColorSpan;
|
||||||
|
|
||||||
|
import org.sufficientlysecure.keychain.R;
|
||||||
|
|
||||||
|
import java.util.regex.Matcher;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
|
public class Highlighter {
|
||||||
|
private Context mContext;
|
||||||
|
private String mQuery;
|
||||||
|
|
||||||
|
public Highlighter(Context context, String query) {
|
||||||
|
mContext = context;
|
||||||
|
mQuery = query;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Spannable highlight(String text) {
|
||||||
|
Spannable highlight = Spannable.Factory.getInstance().newSpannable(text);
|
||||||
|
|
||||||
|
if (mQuery == null) {
|
||||||
|
return highlight;
|
||||||
|
}
|
||||||
|
|
||||||
|
Pattern pattern = Pattern.compile("(?i)(" + mQuery.trim().replaceAll("\\s+", "|") + ")");
|
||||||
|
Matcher matcher = pattern.matcher(text);
|
||||||
|
while (matcher.find()) {
|
||||||
|
highlight.setSpan(
|
||||||
|
new ForegroundColorSpan(mContext.getResources().getColor(R.color.emphasis)),
|
||||||
|
matcher.start(),
|
||||||
|
matcher.end(),
|
||||||
|
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||||
|
}
|
||||||
|
|
||||||
|
return highlight;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user