1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-28 02:37:16 +00:00

Refactoring

This commit is contained in:
M66B 2021-10-14 07:14:19 +02:00
parent 3db56f49ea
commit e43744eb88

View file

@ -123,28 +123,30 @@ public class Bimi {
if (TextUtils.isEmpty(l))
continue;
Uri ul = Uri.parse(l);
if (!"https".equals(ul.getScheme())) {
Log.e("BIMI insecure img=" + l);
continue;
}
URL url = new URL(l);
Log.i("BIMI favicon " + url);
HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.setReadTimeout(READ_TIMEOUT);
connection.setConnectTimeout(CONNECT_TIMEOUT);
connection.setInstanceFollowRedirects(true);
connection.setRequestProperty("User-Agent", WebViewEx.getUserAgent(context));
connection.connect();
try {
bitmap = ImageHelper.renderSvg(connection.getInputStream(),
Color.WHITE, scaleToPixels);
} finally {
connection.disconnect();
Uri ul = Uri.parse(l);
if ("https".equals(ul.getScheme()))
throw new MalformedURLException(l);
URL url = new URL(l);
Log.i("BIMI favicon " + url);
HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.setReadTimeout(READ_TIMEOUT);
connection.setConnectTimeout(CONNECT_TIMEOUT);
connection.setInstanceFollowRedirects(true);
connection.setRequestProperty("User-Agent", WebViewEx.getUserAgent(context));
connection.connect();
try {
bitmap = ImageHelper.renderSvg(connection.getInputStream(),
Color.WHITE, scaleToPixels);
} finally {
connection.disconnect();
}
} catch (MalformedURLException ex) {
Log.i(ex);
}
break;
@ -159,13 +161,11 @@ public class Bimi {
if (TextUtils.isEmpty(a))
continue;
Uri ua = Uri.parse(a);
if (!"https".equals(ua.getScheme())) {
Log.e("BIMI insecure pem=" + a);
continue;
}
try {
Uri ua = Uri.parse(a);
if (!"https".equals(ua.getScheme()))
throw new MalformedURLException(a);
URL url = new URL(a);
Log.i("BIMI PEM " + url);