mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-10 11:03:41 +02:00
Added auto classify setting
This commit is contained in:
@@ -64,7 +64,7 @@ import static eu.faircode.email.ServiceAuthenticator.AUTH_TYPE_PASSWORD;
|
||||
// https://developer.android.com/topic/libraries/architecture/room.html
|
||||
|
||||
@Database(
|
||||
version = 181,
|
||||
version = 182,
|
||||
entities = {
|
||||
EntityIdentity.class,
|
||||
EntityAccount.class,
|
||||
@@ -1781,6 +1781,13 @@ public abstract class DB extends RoomDatabase {
|
||||
Log.i("DB migration from version " + startVersion + " to " + endVersion);
|
||||
db.execSQL("ALTER TABLE `rule` ADD COLUMN `last_applied` INTEGER");
|
||||
}
|
||||
})
|
||||
.addMigrations(new Migration(181, 182) {
|
||||
@Override
|
||||
public void migrate(@NonNull SupportSQLiteDatabase db) {
|
||||
Log.i("DB migration from version " + startVersion + " to " + endVersion);
|
||||
db.execSQL("ALTER TABLE `folder` ADD COLUMN `auto_classify` INTEGER NOT NULL DEFAULT 0");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -282,6 +282,7 @@ public interface DaoFolder {
|
||||
", unified = :unified" +
|
||||
", navigation = :navigation" +
|
||||
", notify = :notify" +
|
||||
", auto_classify = :auto_classify" +
|
||||
", hide = :hide" +
|
||||
", synchronize = :synchronize" +
|
||||
", poll = :poll" +
|
||||
@@ -293,7 +294,7 @@ public interface DaoFolder {
|
||||
" WHERE id = :id")
|
||||
int setFolderProperties(
|
||||
long id, String rename,
|
||||
String display, Integer color, boolean unified, boolean navigation, boolean notify, boolean hide,
|
||||
String display, Integer color, boolean unified, boolean navigation, boolean notify, boolean auto_classify, boolean hide,
|
||||
boolean synchronize, boolean poll, int poll_factor, boolean download,
|
||||
int sync_days, int keep_days, boolean auto_delete);
|
||||
|
||||
|
||||
@@ -108,6 +108,8 @@ public class EntityFolder extends EntityOrder implements Serializable {
|
||||
public Boolean navigation = false;
|
||||
@NonNull
|
||||
public Boolean notify = false;
|
||||
@NonNull
|
||||
public Boolean auto_classify = false;
|
||||
|
||||
public Integer total; // messages on server
|
||||
public String[] keywords;
|
||||
|
||||
@@ -64,6 +64,7 @@ public class FragmentFolder extends FragmentBase {
|
||||
private CheckBox cbUnified;
|
||||
private CheckBox cbNavigation;
|
||||
private CheckBox cbNotify;
|
||||
private CheckBox cbAutoClassify;
|
||||
private CheckBox cbSynchronize;
|
||||
private CheckBox cbPoll;
|
||||
private EditText etPoll;
|
||||
@@ -124,6 +125,7 @@ public class FragmentFolder extends FragmentBase {
|
||||
cbUnified = view.findViewById(R.id.cbUnified);
|
||||
cbNavigation = view.findViewById(R.id.cbNavigation);
|
||||
cbNotify = view.findViewById(R.id.cbNotify);
|
||||
cbAutoClassify = view.findViewById(R.id.cbAutoClassify);
|
||||
cbSynchronize = view.findViewById(R.id.cbSynchronize);
|
||||
cbPoll = view.findViewById(R.id.cbPoll);
|
||||
etPoll = view.findViewById(R.id.etPoll);
|
||||
@@ -158,6 +160,8 @@ public class FragmentFolder extends FragmentBase {
|
||||
}
|
||||
});
|
||||
|
||||
cbAutoClassify.setVisibility(MessageClassifier.isEnabled(getContext()) ? View.VISIBLE : View.GONE);
|
||||
|
||||
cbSynchronize.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
||||
@@ -280,6 +284,7 @@ public class FragmentFolder extends FragmentBase {
|
||||
cbUnified.setChecked(folder == null ? false : folder.unified);
|
||||
cbNavigation.setChecked(folder == null ? false : folder.navigation);
|
||||
cbNotify.setChecked(folder == null ? false : folder.notify);
|
||||
cbAutoClassify.setChecked(folder == null ? false : folder.auto_classify);
|
||||
cbSynchronize.setChecked(folder == null || folder.synchronize);
|
||||
cbPoll.setChecked(folder == null ? true : folder.poll);
|
||||
etPoll.setText(folder == null ? null : Integer.toString(folder.poll_factor));
|
||||
@@ -411,6 +416,7 @@ public class FragmentFolder extends FragmentBase {
|
||||
args.putBoolean("unified", cbUnified.isChecked());
|
||||
args.putBoolean("navigation", cbNavigation.isChecked());
|
||||
args.putBoolean("notify", cbNotify.isChecked());
|
||||
args.putBoolean("auto_classify", cbAutoClassify.isChecked());
|
||||
args.putBoolean("synchronize", cbSynchronize.isChecked());
|
||||
args.putBoolean("poll", cbPoll.isChecked());
|
||||
args.putString("factor", etPoll.getText().toString());
|
||||
@@ -453,6 +459,7 @@ public class FragmentFolder extends FragmentBase {
|
||||
boolean unified = args.getBoolean("unified");
|
||||
boolean navigation = args.getBoolean("navigation");
|
||||
boolean notify = args.getBoolean("notify");
|
||||
boolean auto_classify = args.getBoolean("auto_classify");
|
||||
boolean synchronize = args.getBoolean("synchronize");
|
||||
boolean poll = args.getBoolean("poll");
|
||||
String factor = args.getString("factor");
|
||||
@@ -506,6 +513,8 @@ public class FragmentFolder extends FragmentBase {
|
||||
return true;
|
||||
if (!Objects.equals(folder.notify, notify))
|
||||
return true;
|
||||
if (!Objects.equals(folder.auto_classify, auto_classify))
|
||||
return true;
|
||||
if (!Objects.equals(folder.hide, hide))
|
||||
return true;
|
||||
if (!Objects.equals(folder.synchronize, synchronize))
|
||||
@@ -555,6 +564,7 @@ public class FragmentFolder extends FragmentBase {
|
||||
create.unified = unified;
|
||||
create.navigation = navigation;
|
||||
create.notify = notify;
|
||||
create.auto_classify = auto_classify;
|
||||
create.hide = hide;
|
||||
create.synchronize = synchronize;
|
||||
create.poll = poll;
|
||||
@@ -578,7 +588,7 @@ public class FragmentFolder extends FragmentBase {
|
||||
Log.i("Updating folder=" + folder.name);
|
||||
db.folder().setFolderProperties(id,
|
||||
folder.name.equals(name) ? null : name,
|
||||
display, color, unified, navigation, notify, hide,
|
||||
display, color, unified, navigation, notify, auto_classify, hide,
|
||||
synchronize, poll, poll_factor, download,
|
||||
sync_days, keep_days, auto_delete);
|
||||
db.folder().setFolderError(id, null);
|
||||
|
||||
@@ -48,9 +48,9 @@ public class MessageClassifier {
|
||||
private static final double COMMON_WORD_FACTOR = 0.75;
|
||||
private static final double CHANCE_THRESHOLD = 2.0;
|
||||
|
||||
static String classify(EntityMessage message, boolean added, Context context) {
|
||||
static void classify(EntityMessage message, boolean added, Context context) {
|
||||
if (!isEnabled(context))
|
||||
return null;
|
||||
return;
|
||||
|
||||
try {
|
||||
load(context);
|
||||
@@ -62,21 +62,21 @@ public class MessageClassifier {
|
||||
|
||||
EntityFolder folder = db.folder().getFolder(message.folder);
|
||||
if (folder == null)
|
||||
return null;
|
||||
return;
|
||||
|
||||
EntityAccount account = db.account().getAccount(folder.account);
|
||||
if (account == null)
|
||||
return null;
|
||||
return;
|
||||
|
||||
if (!EntityFolder.INBOX.equals(folder.type) &&
|
||||
!EntityFolder.JUNK.equals(folder.type) &&
|
||||
!EntityFolder.USER.equals(folder.type) &&
|
||||
!(EntityFolder.ARCHIVE.equals(folder.type) && !account.isGmail()))
|
||||
return null;
|
||||
return;
|
||||
|
||||
File file = message.getFile(context);
|
||||
if (!file.exists())
|
||||
return null;
|
||||
return;
|
||||
|
||||
String text;
|
||||
try {
|
||||
@@ -87,7 +87,7 @@ public class MessageClassifier {
|
||||
}
|
||||
|
||||
if (TextUtils.isEmpty(text))
|
||||
return null;
|
||||
return;
|
||||
|
||||
if (!classMessages.containsKey(account.id))
|
||||
classMessages.put(account.id, new HashMap<>());
|
||||
@@ -106,7 +106,11 @@ public class MessageClassifier {
|
||||
}
|
||||
Log.i("Classifier classify=" + folder.name + " messages=" + classMessages.get(account.id).get(folder.name));
|
||||
|
||||
return classified;
|
||||
if (classified != null) {
|
||||
EntityFolder f = db.folder().getFolderByName(account.id, classified);
|
||||
if (f != null && f.auto_classify && !f.id.equals(folder.id))
|
||||
EntityOperation.queue(context, message, EntityOperation.MOVE, f.id);
|
||||
}
|
||||
}
|
||||
|
||||
private static String classify(long account, String classify, String text, boolean added) {
|
||||
@@ -295,7 +299,7 @@ public class MessageClassifier {
|
||||
Log.i("Classifier loaded");
|
||||
}
|
||||
|
||||
private static boolean isEnabled(Context context) {
|
||||
static boolean isEnabled(Context context) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
return prefs.getBoolean("classify", BuildConfig.DEBUG);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user