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

121 lines
4.7 KiB
Java
Raw Normal View History

package eu.faircode.email;
/*
This file is part of Safe email.
Safe email 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.
NetGuard 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 NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2018 by Marcel Bokhorst (M66B)
*/
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
2018-08-10 11:15:09 +00:00
import android.widget.Toast;
2018-08-10 11:15:09 +00:00
import java.io.UnsupportedEncodingException;
import java.util.Date;
import javax.mail.Address;
import javax.mail.internet.InternetAddress;
2018-08-08 06:55:47 +00:00
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
public class FragmentAbout extends FragmentEx {
@Override
@Nullable
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
setSubtitle(R.string.menu_about);
View view = inflater.inflate(R.layout.fragment_about, container, false);
TextView tvVersion = view.findViewById(R.id.tvVersion);
2018-08-10 11:15:09 +00:00
final Button btnDebugInfo = view.findViewById(R.id.btnDebugInfo);
tvVersion.setText(getString(R.string.title_version, BuildConfig.VERSION_NAME));
btnDebugInfo.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
2018-08-10 11:15:09 +00:00
btnDebugInfo.setEnabled(false);
new SimpleTask<Long>() {
@Override
protected Long onLoad(Context context, Bundle args) throws UnsupportedEncodingException {
2018-08-10 11:15:09 +00:00
StringBuilder info = Helper.getDebugInfo();
info.insert(0, context.getString(R.string.title_debug_info_remark) + "\n\n\n\n");
2018-08-10 11:15:09 +00:00
Address to = new InternetAddress("marcel+email@faircode.eu", "FairCode");
2018-08-13 06:00:59 +00:00
EntityMessage draft;
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityFolder drafts = db.folder().getPrimaryDrafts();
if (drafts == null)
throw new IllegalArgumentException(context.getString(R.string.title_no_drafts));
2018-08-13 06:00:59 +00:00
draft = new EntityMessage();
draft.account = drafts.account;
draft.folder = drafts.id;
2018-08-13 06:00:59 +00:00
draft.msgid = draft.generateMessageId();
draft.to = new Address[]{to};
draft.subject = BuildConfig.APPLICATION_ID + " debug info";
draft.body = "<pre>" + info.toString().replaceAll("\\r?\\n", "<br />") + "</pre>";
draft.received = new Date().getTime();
draft.seen = false;
draft.ui_seen = false;
draft.ui_hide = false;
draft.id = db.message().insertMessage(draft);
2018-08-13 06:00:59 +00:00
EntityOperation.queue(db, draft, EntityOperation.ADD);
2018-08-13 06:00:59 +00:00
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
2018-08-13 06:00:59 +00:00
EntityOperation.process(context);
return draft.id;
}
2018-08-10 11:15:09 +00:00
@Override
protected void onLoaded(Bundle args, Long id) {
2018-08-10 11:15:09 +00:00
btnDebugInfo.setEnabled(true);
2018-08-11 05:02:13 +00:00
startActivity(new Intent(getContext(), ActivityCompose.class)
.putExtra("action", "edit")
.putExtra("id", id));
}
2018-08-10 11:15:09 +00:00
2018-08-11 05:02:13 +00:00
@Override
protected void onException(Bundle args, Throwable ex) {
2018-08-11 05:02:13 +00:00
btnDebugInfo.setEnabled(true);
Toast.makeText(getContext(), ex.toString(), Toast.LENGTH_LONG).show();
2018-08-10 11:15:09 +00:00
}
}.load(FragmentAbout.this, new Bundle());
}
});
return view;
}
}