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 . Copyright 2018-2020 by Marcel Bokhorst (M66B) */ import android.content.Intent; import android.content.SharedPreferences; import android.content.pm.PackageManager; import android.media.RingtoneManager; import android.net.Uri; import android.os.Build; import android.os.Bundle; import android.provider.Settings; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.CheckBox; import android.widget.CompoundButton; import android.widget.TextView; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.appcompat.widget.SwitchCompat; import androidx.constraintlayout.widget.Group; import androidx.lifecycle.Lifecycle; import androidx.preference.PreferenceManager; import static android.app.Activity.RESULT_OK; public class FragmentOptionsNotifications extends FragmentBase implements SharedPreferences.OnSharedPreferenceChangeListener { private Button btnManage; private Button btnManageDefault; private Button btnManageService; private SwitchCompat swBackground; private CheckBox cbNotifyActionTrash; private CheckBox cbNotifyActionJunk; private CheckBox cbNotifyActionBlockSender; private CheckBox cbNotifyActionArchive; private CheckBox cbNotifyActionMove; private CheckBox cbNotifyActionReply; private CheckBox cbNotifyActionReplyDirect; private CheckBox cbNotifyActionFlag; private CheckBox cbNotifyActionSeen; private CheckBox cbNotifyActionSnooze; private TextView tvNotifyActionsPro; private SwitchCompat swLight; private Button btnSound; private SwitchCompat swBadge; private SwitchCompat swUnseenIgnored; private SwitchCompat swNotifyKnown; private TextView tvNotifyKnownPro; private SwitchCompat swNotifySummary; private SwitchCompat swNotifyRemove; private SwitchCompat swNotifyClear; private SwitchCompat swNotifyPreview; private SwitchCompat swNotifyPreviewAll; private SwitchCompat swWearablePreview; private SwitchCompat swBiometricsNotify; private SwitchCompat swAlertOnce; private TextView tvNoGrouping; private TextView tvNoChannels; private Group grpChannel; private Group grpNotification; private final static String[] RESET_OPTIONS = new String[]{ "notify_trash", "notify_junk", "notify_block_sender", "notify_archive", "notify_move", "notify_reply", "notify_reply_direct", "notify_flag", "notify_seen", "notify_snooze", "light", "sound", "badge", "unseen_ignored", "notify_known", "notify_summary", "notify_remove", "notify_clear", "notify_preview", "notify_preview_all", "wearable_preview", "biometrics_notify", "alert_once" }; @Override @Nullable public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { setSubtitle(R.string.title_setup); setHasOptionsMenu(true); View view = inflater.inflate(R.layout.fragment_options_notifications, container, false); // Get controls btnManage = view.findViewById(R.id.btnManage); btnManageDefault = view.findViewById(R.id.btnManageDefault); btnManageService = view.findViewById(R.id.btnManageService); swBackground = view.findViewById(R.id.swBackground); cbNotifyActionTrash = view.findViewById(R.id.cbNotifyActionTrash); cbNotifyActionJunk = view.findViewById(R.id.cbNotifyActionJunk); cbNotifyActionBlockSender = view.findViewById(R.id.cbNotifyActionBlockSender); cbNotifyActionArchive = view.findViewById(R.id.cbNotifyActionArchive); cbNotifyActionMove = view.findViewById(R.id.cbNotifyActionMove); cbNotifyActionReply = view.findViewById(R.id.cbNotifyActionReply); cbNotifyActionReplyDirect = view.findViewById(R.id.cbNotifyActionReplyDirect); cbNotifyActionFlag = view.findViewById(R.id.cbNotifyActionFlag); cbNotifyActionSeen = view.findViewById(R.id.cbNotifyActionSeen); cbNotifyActionSnooze = view.findViewById(R.id.cbNotifyActionSnooze); tvNotifyActionsPro = view.findViewById(R.id.tvNotifyActionsPro); swLight = view.findViewById(R.id.swLight); btnSound = view.findViewById(R.id.btnSound); swBadge = view.findViewById(R.id.swBadge); swUnseenIgnored = view.findViewById(R.id.swUnseenIgnored); swNotifyKnown = view.findViewById(R.id.swNotifyKnown); tvNotifyKnownPro = view.findViewById(R.id.tvNotifyKnownPro); swNotifySummary = view.findViewById(R.id.swNotifySummary); swNotifyRemove = view.findViewById(R.id.swNotifyRemove); swNotifyClear = view.findViewById(R.id.swNotifyClear); swNotifyPreview = view.findViewById(R.id.swNotifyPreview); swNotifyPreviewAll = view.findViewById(R.id.swNotifyPreviewAll); swWearablePreview = view.findViewById(R.id.swWearablePreview); swBiometricsNotify = view.findViewById(R.id.swBiometricsNotify); swAlertOnce = view.findViewById(R.id.swAlertOnce); tvNoGrouping = view.findViewById(R.id.tvNoGrouping); tvNoChannels = view.findViewById(R.id.tvNoChannels); grpChannel = view.findViewById(R.id.grpChannel); grpNotification = view.findViewById(R.id.grpNotification); setOptions(); // Wire controls PackageManager pm = getContext().getPackageManager(); final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext()); final Intent manage = new Intent(Settings.ACTION_APP_NOTIFICATION_SETTINGS) .putExtra("app_package", getContext().getPackageName()) .putExtra("app_uid", getContext().getApplicationInfo().uid) .putExtra(Settings.EXTRA_APP_PACKAGE, getContext().getPackageName()); btnManage.setEnabled(manage.resolveActivity(pm) != null); btnManage.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { startActivity(manage); } }); final Intent channelNotification = new Intent(Settings.ACTION_CHANNEL_NOTIFICATION_SETTINGS) .putExtra(Settings.EXTRA_APP_PACKAGE, getContext().getPackageName()) .putExtra(Settings.EXTRA_CHANNEL_ID, "notification"); btnManageDefault.setEnabled(channelNotification.resolveActivity(pm) != null); btnManageDefault.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { startActivity(channelNotification); } }); final Intent channelService = new Intent(Settings.ACTION_CHANNEL_NOTIFICATION_SETTINGS) .putExtra(Settings.EXTRA_APP_PACKAGE, getContext().getPackageName()) .putExtra(Settings.EXTRA_CHANNEL_ID, "service"); btnManageService.setEnabled(channelService.resolveActivity(pm) != null); btnManageService.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { startActivity(channelService); } }); swBackground.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("background_service", checked).apply(); ServiceSynchronize.eval(getContext(), "background=" + checked); } }); cbNotifyActionTrash.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean checked) { prefs.edit().putBoolean("notify_trash", checked).apply(); } }); cbNotifyActionJunk.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean checked) { prefs.edit().putBoolean("notify_junk", checked).apply(); cbNotifyActionBlockSender.setEnabled(checked); } }); cbNotifyActionBlockSender.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean checked) { prefs.edit().putBoolean("notify_block_sender", checked).apply(); } }); cbNotifyActionArchive.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean checked) { prefs.edit().putBoolean("notify_archive", checked).apply(); } }); cbNotifyActionMove.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean checked) { prefs.edit().putBoolean("notify_move", checked).apply(); } }); cbNotifyActionReply.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean checked) { prefs.edit().putBoolean("notify_reply", checked).apply(); } }); cbNotifyActionReplyDirect.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean checked) { prefs.edit().putBoolean("notify_reply_direct", checked).apply(); } }); cbNotifyActionFlag.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean checked) { prefs.edit().putBoolean("notify_flag", checked).apply(); } }); cbNotifyActionSeen.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean checked) { prefs.edit().putBoolean("notify_seen", checked).apply(); } }); cbNotifyActionSnooze.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean checked) { prefs.edit().putBoolean("notify_snooze", checked).apply(); } }); Helper.linkPro(tvNotifyActionsPro); Helper.linkPro(tvNotifyKnownPro); swLight.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("light", checked).apply(); } }); btnSound.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { String sound = prefs.getString("sound", null); Intent intent = new Intent(RingtoneManager.ACTION_RINGTONE_PICKER); intent.putExtra(RingtoneManager.EXTRA_RINGTONE_TYPE, RingtoneManager.TYPE_NOTIFICATION); intent.putExtra(RingtoneManager.EXTRA_RINGTONE_TITLE, getString(R.string.title_advanced_sound)); intent.putExtra(RingtoneManager.EXTRA_RINGTONE_SHOW_DEFAULT, true); intent.putExtra(RingtoneManager.EXTRA_RINGTONE_SHOW_SILENT, true); intent.putExtra(RingtoneManager.EXTRA_RINGTONE_EXISTING_URI, sound == null ? null : Uri.parse(sound)); startActivityForResult(Helper.getChooser(getContext(), intent), ActivitySetup.REQUEST_SOUND); } }); swBadge.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("badge", checked).apply(); } }); swUnseenIgnored.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("unseen_ignored", checked).apply(); } }); swNotifyKnown.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("notify_known", checked).apply(); enableOptions(); } }); swNotifySummary.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("notify_summary", checked).apply(); enableOptions(); } }); swNotifyRemove.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("notify_remove", checked).apply(); } }); swNotifyClear.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("notify_clear", checked).apply(); } }); swNotifyPreview.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("notify_preview", checked).apply(); enableOptions(); } }); swNotifyPreviewAll.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("notify_preview_all", checked).apply(); } }); swWearablePreview.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("wearable_preview", checked).apply(); } }); swBiometricsNotify.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("biometrics_notify", checked).apply(); } }); swAlertOnce.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { prefs.edit().putBoolean("alert_once", !checked).apply(); } }); swAlertOnce.setVisibility(Log.isXiaomi() || BuildConfig.DEBUG ? View.VISIBLE : View.GONE); // https://developer.android.com/training/notify-user/group tvNoGrouping.setVisibility(Build.VERSION.SDK_INT < Build.VERSION_CODES.N ? View.VISIBLE : View.GONE); // https://developer.android.com/training/notify-user/channels tvNoChannels.setVisibility(Build.VERSION.SDK_INT < Build.VERSION_CODES.O ? View.VISIBLE : View.GONE); grpChannel.setVisibility(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O ? View.VISIBLE : View.GONE); grpNotification.setVisibility( Build.VERSION.SDK_INT < Build.VERSION_CODES.O || BuildConfig.DEBUG ? View.VISIBLE : View.GONE); PreferenceManager.getDefaultSharedPreferences(getContext()).registerOnSharedPreferenceChangeListener(this); return view; } @Override public void onDestroyView() { PreferenceManager.getDefaultSharedPreferences(getContext()).unregisterOnSharedPreferenceChangeListener(this); super.onDestroyView(); } @Override public void onSharedPreferenceChanged(SharedPreferences prefs, String key) { if (getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.STARTED)) setOptions(); } @Override public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { inflater.inflate(R.menu.menu_options, menu); super.onCreateOptionsMenu(menu, inflater); } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case R.id.menu_default: onMenuDefault(); return true; default: return super.onOptionsItemSelected(item); } } private void onMenuDefault() { SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext()); SharedPreferences.Editor editor = prefs.edit(); for (String option : RESET_OPTIONS) editor.remove(option); editor.apply(); ToastEx.makeText(getContext(), R.string.title_setup_done, Toast.LENGTH_LONG).show(); } private void setOptions() { boolean pro = ActivityBilling.isPro(getContext()); SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext()); swBackground.setChecked(prefs.getBoolean("background_service", false)); cbNotifyActionTrash.setChecked(prefs.getBoolean("notify_trash", true) || !pro); cbNotifyActionJunk.setChecked(prefs.getBoolean("notify_junk", false) && pro); cbNotifyActionBlockSender.setChecked(prefs.getBoolean("notify_block_sender", false) && pro); cbNotifyActionArchive.setChecked(prefs.getBoolean("notify_archive", true) || !pro); cbNotifyActionMove.setChecked(prefs.getBoolean("notify_move", false) && pro); cbNotifyActionReply.setChecked(prefs.getBoolean("notify_reply", false) && pro); cbNotifyActionReplyDirect.setChecked(prefs.getBoolean("notify_reply_direct", false) && pro); cbNotifyActionFlag.setChecked(prefs.getBoolean("notify_flag", false) && pro); cbNotifyActionSeen.setChecked(prefs.getBoolean("notify_seen", true) || !pro); cbNotifyActionSnooze.setChecked(prefs.getBoolean("notify_snooze", false) && pro); swLight.setChecked(prefs.getBoolean("light", false)); swBadge.setChecked(prefs.getBoolean("badge", true)); swUnseenIgnored.setChecked(prefs.getBoolean("unseen_ignored", false)); swNotifyKnown.setChecked(prefs.getBoolean("notify_known", false)); swNotifySummary.setChecked(prefs.getBoolean("notify_summary", false)); swNotifyRemove.setChecked(prefs.getBoolean("notify_remove", true)); swNotifyClear.setChecked(prefs.getBoolean("notify_clear", false)); swNotifyPreview.setChecked(prefs.getBoolean("notify_preview", true)); swNotifyPreviewAll.setChecked(prefs.getBoolean("notify_preview_all", false)); swWearablePreview.setChecked(prefs.getBoolean("wearable_preview", false)); swBiometricsNotify.setChecked(prefs.getBoolean("biometrics_notify", false)); swAlertOnce.setChecked(!prefs.getBoolean("alert_once", true)); enableOptions(); } private void enableOptions() { boolean pro = ActivityBilling.isPro(getContext()); boolean summary = swNotifySummary.isChecked(); cbNotifyActionTrash.setEnabled(pro && !summary); cbNotifyActionJunk.setEnabled(pro && !summary); cbNotifyActionBlockSender.setEnabled(pro && !summary && cbNotifyActionJunk.isChecked()); cbNotifyActionArchive.setEnabled(pro && !summary); cbNotifyActionMove.setEnabled(pro && !summary); cbNotifyActionReply.setEnabled(pro && !summary); cbNotifyActionReplyDirect.setEnabled(pro && !summary); cbNotifyActionFlag.setEnabled(pro && !summary); cbNotifyActionSeen.setEnabled(pro && !summary); cbNotifyActionSnooze.setEnabled(pro && !summary); swNotifyPreview.setEnabled(!summary); swNotifyPreviewAll.setEnabled(!summary && swNotifyPreview.isChecked()); swWearablePreview.setEnabled(!summary && swNotifyPreview.isChecked()); swBiometricsNotify.setEnabled(!summary); } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); try { switch (requestCode) { case ActivitySetup.REQUEST_SOUND: if (resultCode == RESULT_OK && data != null) onSelectSound(data.getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI)); break; } } catch (Throwable ex) { Log.e(ex); } } private void onSelectSound(Uri uri) { Log.i("Selected ringtone=" + uri); SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext()); if (uri == null) // silent sound prefs.edit().putString("sound", "").apply(); else { if ("content".equals(uri.getScheme())) prefs.edit().putString("sound", uri.toString()).apply(); else prefs.edit().remove("sound").apply(); } } }