2020-02-23 11:02:42 +00:00
|
|
|
package eu.faircode.email;
|
|
|
|
|
|
|
|
/*
|
|
|
|
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/>.
|
|
|
|
|
|
|
|
Copyright 2018-2020 by Marcel Bokhorst (M66B)
|
|
|
|
*/
|
|
|
|
|
|
|
|
import android.content.ClipboardManager;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Bundle;
|
2020-02-23 15:39:43 +00:00
|
|
|
import android.text.Editable;
|
2020-02-23 11:02:42 +00:00
|
|
|
import android.text.Html;
|
|
|
|
import android.text.SpannableStringBuilder;
|
|
|
|
import android.text.Spanned;
|
2020-02-23 15:39:43 +00:00
|
|
|
import android.text.TextWatcher;
|
2020-02-23 11:02:42 +00:00
|
|
|
import android.text.style.ImageSpan;
|
|
|
|
import android.view.LayoutInflater;
|
2020-02-23 12:55:54 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
2020-02-23 11:02:42 +00:00
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
|
|
|
import android.widget.EditText;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import androidx.appcompat.app.AlertDialog;
|
|
|
|
|
|
|
|
import com.google.android.material.bottomnavigation.BottomNavigationView;
|
|
|
|
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
|
|
|
public class ActivitySignature extends ActivityBase {
|
|
|
|
private EditTextCompose etText;
|
|
|
|
private BottomNavigationView style_bar;
|
|
|
|
private BottomNavigationView bottom_navigation;
|
|
|
|
|
2020-02-23 12:55:54 +00:00
|
|
|
private boolean raw = false;
|
2020-02-23 15:39:43 +00:00
|
|
|
private boolean dirty = false;
|
2020-02-23 12:55:54 +00:00
|
|
|
|
2020-02-23 11:02:42 +00:00
|
|
|
private static final int REQUEST_IMAGE = 1;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
2020-02-23 12:55:54 +00:00
|
|
|
if (savedInstanceState != null)
|
|
|
|
raw = savedInstanceState.getBoolean("fair:raw");
|
|
|
|
|
2020-02-23 11:02:42 +00:00
|
|
|
getSupportActionBar().setSubtitle(getString(R.string.title_edit_signature));
|
|
|
|
setContentView(R.layout.activity_signature);
|
|
|
|
|
|
|
|
etText = findViewById(R.id.etText);
|
|
|
|
style_bar = findViewById(R.id.style_bar);
|
|
|
|
bottom_navigation = findViewById(R.id.bottom_navigation);
|
|
|
|
|
|
|
|
etText.setSelectionListener(new EditTextCompose.ISelection() {
|
|
|
|
@Override
|
|
|
|
public void onSelected(boolean selection) {
|
2020-02-27 17:26:07 +00:00
|
|
|
style_bar.setVisibility(selection && !raw ? View.VISIBLE : View.GONE);
|
2020-02-23 11:02:42 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-02-23 15:39:43 +00:00
|
|
|
etText.addTextChangedListener(new TextWatcher() {
|
|
|
|
@Override
|
|
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTextChanged(CharSequence s, int start, int before, int count) {
|
|
|
|
dirty = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void afterTextChanged(Editable s) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-02-23 11:02:42 +00:00
|
|
|
style_bar.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
|
|
|
|
return onActionStyle(item.getItemId());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
bottom_navigation.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.action_insert_image:
|
|
|
|
insertImage();
|
|
|
|
return true;
|
|
|
|
case R.id.action_delete:
|
|
|
|
delete();
|
|
|
|
return true;
|
|
|
|
case R.id.action_save:
|
|
|
|
save();
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
style_bar.setVisibility(View.GONE);
|
|
|
|
|
|
|
|
load();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onNewIntent(Intent intent) {
|
|
|
|
super.onNewIntent(intent);
|
|
|
|
setIntent(intent);
|
|
|
|
load();
|
|
|
|
}
|
|
|
|
|
2020-02-23 12:55:54 +00:00
|
|
|
@Override
|
|
|
|
protected void onSaveInstanceState(Bundle outState) {
|
|
|
|
outState.putBoolean("fair:raw", raw);
|
|
|
|
super.onSaveInstanceState(outState);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
MenuInflater inflater = getMenuInflater();
|
|
|
|
inflater.inflate(R.menu.menu_signature, menu);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(@NonNull MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.menu_edit_html:
|
|
|
|
item.setChecked(!item.isChecked());
|
2020-02-23 15:39:43 +00:00
|
|
|
html(item.isChecked());
|
2020-02-23 12:55:54 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-23 11:02:42 +00:00
|
|
|
@Override
|
|
|
|
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
|
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
|
|
|
|
|
|
try {
|
|
|
|
switch (requestCode) {
|
|
|
|
case REQUEST_IMAGE:
|
|
|
|
if (resultCode == RESULT_OK && data != null)
|
|
|
|
onImageSelected(data.getData());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} catch (Throwable ex) {
|
|
|
|
Log.e(ex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void load() {
|
|
|
|
String html = getIntent().getStringExtra("html");
|
|
|
|
if (html == null)
|
|
|
|
etText.setText(null);
|
2020-02-23 12:55:54 +00:00
|
|
|
else if (raw)
|
|
|
|
etText.setText(html);
|
2020-02-23 11:02:42 +00:00
|
|
|
else
|
|
|
|
etText.setText(HtmlHelper.fromHtml(html, new Html.ImageGetter() {
|
|
|
|
@Override
|
|
|
|
public Drawable getDrawable(String source) {
|
2020-02-23 12:40:56 +00:00
|
|
|
return getDrawableByUri(ActivitySignature.this, Uri.parse(source));
|
2020-02-23 11:02:42 +00:00
|
|
|
}
|
|
|
|
}, null));
|
2020-02-23 15:39:43 +00:00
|
|
|
dirty = false;
|
2020-02-23 11:02:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void delete() {
|
|
|
|
Intent result = new Intent();
|
|
|
|
result.putExtra("html", (String) null);
|
|
|
|
setResult(RESULT_OK, result);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void save() {
|
|
|
|
etText.clearComposingText();
|
2020-02-23 12:55:54 +00:00
|
|
|
String html = (raw ? etText.getText().toString() : HtmlHelper.toHtml(etText.getText()));
|
2020-02-23 11:02:42 +00:00
|
|
|
Intent result = new Intent();
|
|
|
|
result.putExtra("html", html);
|
|
|
|
setResult(RESULT_OK, result);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
2020-02-23 15:39:43 +00:00
|
|
|
private void html(boolean raw) {
|
|
|
|
this.raw = raw;
|
|
|
|
|
|
|
|
if (!raw || dirty) {
|
|
|
|
String html = (raw ? HtmlHelper.toHtml(etText.getText()) : etText.getText().toString());
|
|
|
|
getIntent().putExtra("html", html);
|
|
|
|
}
|
|
|
|
|
2020-02-27 17:26:07 +00:00
|
|
|
if (raw)
|
|
|
|
style_bar.setVisibility(View.GONE);
|
|
|
|
|
2020-02-23 15:39:43 +00:00
|
|
|
load();
|
|
|
|
}
|
|
|
|
|
2020-02-23 11:02:42 +00:00
|
|
|
private void insertImage() {
|
|
|
|
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
|
|
|
|
intent.addCategory(Intent.CATEGORY_OPENABLE);
|
2020-02-26 22:24:22 +00:00
|
|
|
intent.addFlags(Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION);
|
|
|
|
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
2020-02-23 11:02:42 +00:00
|
|
|
intent.setType("image/*");
|
|
|
|
Helper.openAdvanced(intent);
|
|
|
|
startActivityForResult(intent, REQUEST_IMAGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean onActionStyle(int action) {
|
|
|
|
Log.i("Style action=" + action);
|
|
|
|
|
|
|
|
if (action == R.id.menu_link) {
|
|
|
|
Uri uri = null;
|
|
|
|
|
|
|
|
ClipboardManager cbm = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
|
|
|
|
if (cbm != null && cbm.hasPrimaryClip()) {
|
|
|
|
String link = cbm.getPrimaryClip().getItemAt(0).coerceToText(this).toString();
|
|
|
|
uri = Uri.parse(link);
|
|
|
|
if (uri.getScheme() == null)
|
|
|
|
uri = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
View view = LayoutInflater.from(this).inflate(R.layout.dialog_insert_link, null);
|
|
|
|
EditText etLink = view.findViewById(R.id.etLink);
|
|
|
|
TextView tvInsecure = view.findViewById(R.id.tvInsecure);
|
|
|
|
|
|
|
|
etLink.setText(uri == null ? "https://" : uri.toString());
|
|
|
|
tvInsecure.setVisibility(View.GONE);
|
|
|
|
|
|
|
|
new AlertDialog.Builder(this)
|
|
|
|
.setView(view)
|
|
|
|
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
String link = etLink.getText().toString();
|
|
|
|
StyleHelper.apply(R.id.menu_link, etText, link);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.setNegativeButton(android.R.string.cancel, null)
|
|
|
|
.show();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else
|
|
|
|
return StyleHelper.apply(action, etText);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onImageSelected(Uri uri) {
|
2020-02-26 22:26:18 +00:00
|
|
|
try {
|
|
|
|
getContentResolver().takePersistableUriPermission(uri, Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
|
|
|
|
|
|
|
int start = etText.getSelectionStart();
|
2020-02-27 17:17:14 +00:00
|
|
|
if (raw)
|
|
|
|
etText.getText().insert(start, "<img src=\"" + Html.escapeHtml(uri.toString()) + "\" />");
|
|
|
|
else {
|
|
|
|
SpannableStringBuilder ssb = new SpannableStringBuilder(etText.getText());
|
|
|
|
ssb.insert(start, " ");
|
|
|
|
ImageSpan is = new ImageSpan(getDrawableByUri(this, uri), uri.toString(), ImageSpan.ALIGN_BASELINE);
|
|
|
|
ssb.setSpan(is, start, start + 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
|
|
|
etText.setText(ssb);
|
|
|
|
etText.setSelection(start + 1);
|
|
|
|
}
|
2020-02-26 22:26:18 +00:00
|
|
|
} catch (Throwable ex) {
|
|
|
|
Log.unexpectedError(getSupportFragmentManager(), ex);
|
|
|
|
}
|
2020-02-23 11:02:42 +00:00
|
|
|
}
|
|
|
|
|
2020-02-23 12:40:56 +00:00
|
|
|
static Drawable getDrawableByUri(Context context, Uri uri) {
|
|
|
|
if ("content".equals(uri.getScheme())) {
|
|
|
|
Drawable d;
|
|
|
|
try {
|
|
|
|
Log.i("Loading image source=" + uri);
|
|
|
|
InputStream inputStream = context.getContentResolver().openInputStream(uri);
|
|
|
|
d = Drawable.createFromStream(inputStream, uri.toString());
|
2020-02-25 20:09:01 +00:00
|
|
|
} catch (Throwable ex) {
|
|
|
|
// FileNotFound, Security
|
2020-02-23 12:40:56 +00:00
|
|
|
Log.w(ex);
|
|
|
|
d = context.getResources().getDrawable(R.drawable.baseline_broken_image_24);
|
|
|
|
}
|
2020-02-23 11:02:42 +00:00
|
|
|
|
2020-02-23 12:40:56 +00:00
|
|
|
int w = Helper.dp2pixels(context, d.getIntrinsicWidth());
|
|
|
|
int h = Helper.dp2pixels(context, d.getIntrinsicHeight());
|
2020-02-23 11:02:42 +00:00
|
|
|
|
2020-02-23 12:40:56 +00:00
|
|
|
d.setBounds(0, 0, w, h);
|
|
|
|
return d;
|
|
|
|
} else {
|
|
|
|
Drawable d = context.getResources().getDrawable(R.drawable.baseline_image_24);
|
|
|
|
d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());
|
|
|
|
return d;
|
|
|
|
}
|
2020-02-23 11:02:42 +00:00
|
|
|
}
|
|
|
|
}
|