FairEmail/app/src/main/java/eu/faircode/email/ActivityDSN.java

120 lines
4.2 KiB
Java
Raw Normal View History

2019-03-17 09:18:40 +00:00
package eu.faircode.email;
2019-05-04 20:49:22 +00:00
/*
This file is part of FairEmail.
FairEmail 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.
FairEmail 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 FairEmail. If not, see <http://www.gnu.org/licenses/>.
2020-01-05 17:32:53 +00:00
Copyright 2018-2020 by Marcel Bokhorst (M66B)
2019-05-04 20:49:22 +00:00
*/
2019-05-14 10:12:13 +00:00
import android.Manifest;
2019-03-17 09:18:40 +00:00
import android.content.ContentResolver;
import android.content.Context;
import android.content.res.AssetFileDescriptor;
import android.net.Uri;
import android.os.Bundle;
2019-08-29 19:57:04 +00:00
import android.text.Spanned;
2019-03-17 09:18:40 +00:00
import android.view.View;
import android.widget.TextView;
import androidx.constraintlayout.widget.Group;
2019-03-17 09:18:40 +00:00
import com.google.android.material.snackbar.Snackbar;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
2019-03-17 09:18:40 +00:00
public class ActivityDSN extends ActivityBase {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().setSubtitle("DSN");
setContentView(R.layout.activity_dsn);
final TextView tvHeaders = findViewById(R.id.tvHeaders);
final ContentLoadingProgressBar pbWait = findViewById(R.id.pbWait);
final Group grpReady = findViewById(R.id.grpReady);
grpReady.setVisibility(View.GONE);
Uri uri = getIntent().getData();
if (uri == null) {
pbWait.setVisibility(View.GONE);
return;
} else
pbWait.setVisibility(View.VISIBLE);
Log.i("Disposition uri=" + uri);
Bundle args = new Bundle();
args.putParcelable("uri", uri);
new SimpleTask<Result>() {
@Override
protected void onPostExecute(Bundle args) {
pbWait.setVisibility(View.GONE);
}
@Override
protected Result onExecute(Context context, Bundle args) throws Throwable {
Uri uri = args.getParcelable("uri");
2019-11-03 19:07:26 +00:00
if (!"content".equals(uri.getScheme()) &&
2019-05-14 10:12:13 +00:00
!Helper.hasPermission(context, Manifest.permission.READ_EXTERNAL_STORAGE)) {
Log.w("DSN uri=" + uri);
2019-03-17 09:18:40 +00:00
throw new IllegalArgumentException(context.getString(R.string.title_no_stream));
2019-05-14 10:12:13 +00:00
}
2019-03-17 09:18:40 +00:00
Result result = new Result();
ContentResolver resolver = context.getContentResolver();
AssetFileDescriptor descriptor = resolver.openTypedAssetFileDescriptor(uri, "*/*", null);
try (InputStream is = descriptor.createInputStream()) {
2019-03-17 09:18:40 +00:00
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte[] buffer = new byte[Helper.BUFFER_SIZE];
2019-03-17 09:18:40 +00:00
int length;
while ((length = is.read(buffer)) != -1)
bos.write(buffer, 0, length);
2019-08-29 19:57:04 +00:00
String headers = MessageHelper.decodeMime(bos.toString(StandardCharsets.UTF_8.name()));
result.headers = HtmlHelper.highlightHeaders(context, headers);
2019-03-17 09:18:40 +00:00
}
return result;
}
@Override
protected void onExecuted(Bundle args, Result result) {
tvHeaders.setText(result.headers);
grpReady.setVisibility(View.VISIBLE);
}
@Override
protected void onException(Bundle args, Throwable ex) {
if (ex instanceof IllegalArgumentException)
Snackbar.make(findViewById(android.R.id.content), ex.getMessage(), Snackbar.LENGTH_LONG).show();
else
2019-12-06 07:50:46 +00:00
Log.unexpectedError(getSupportFragmentManager(), ex);
2019-03-17 09:18:40 +00:00
}
}.execute(this, args, "disposition:decode");
}
private class Result {
2019-08-29 19:57:04 +00:00
Spanned headers;
2019-03-17 09:18:40 +00:00
}
}