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

461 lines
18 KiB
Java
Raw Normal View History

2018-09-02 06:59:49 +00:00
package eu.faircode.email;
2018-09-04 07:02:54 +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.
2018-10-29 10:46:49 +00:00
FairEmail is distributed in the hope that it will be useful,
2018-09-04 07:02:54 +00:00
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
2018-10-29 10:46:49 +00:00
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2018-09-04 07:02:54 +00:00
2018-12-31 08:04:33 +00:00
Copyright 2018-2019 by Marcel Bokhorst (M66B)
2018-09-04 07:02:54 +00:00
*/
import android.accounts.AuthenticatorException;
import android.accounts.OperationCanceledException;
import android.content.Context;
import android.content.SharedPreferences;
2018-09-02 06:59:49 +00:00
import android.os.Handler;
import androidx.paging.PagedList;
import androidx.preference.PreferenceManager;
2018-09-02 06:59:49 +00:00
import com.sun.mail.iap.Argument;
import com.sun.mail.iap.Response;
import com.sun.mail.imap.IMAPFolder;
import com.sun.mail.imap.IMAPMessage;
import com.sun.mail.imap.IMAPStore;
import com.sun.mail.imap.protocol.IMAPProtocol;
import com.sun.mail.imap.protocol.IMAPResponse;
import java.io.IOException;
import java.text.Normalizer;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Properties;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import javax.mail.FetchProfile;
import javax.mail.Flags;
import javax.mail.Folder;
import javax.mail.FolderClosedException;
import javax.mail.Message;
import javax.mail.MessageRemovedException;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.UIDFolder;
import javax.mail.search.BodyTerm;
import javax.mail.search.FlagTerm;
import javax.mail.search.FromStringTerm;
import javax.mail.search.OrTerm;
import javax.mail.search.RecipientStringTerm;
import javax.mail.search.SearchTerm;
import javax.mail.search.SubjectTerm;
2018-09-02 06:59:49 +00:00
public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMessageEx> {
private Context context;
2019-05-12 09:40:54 +00:00
private Long folder;
2019-05-12 12:28:18 +00:00
private boolean server;
private String query;
private int pageSize;
2019-05-14 16:34:09 +00:00
2018-09-02 06:59:49 +00:00
private IBoundaryCallbackMessages intf;
2018-10-20 17:56:09 +00:00
private Handler handler;
2018-11-26 17:04:44 +00:00
private ExecutorService executor = Executors.newSingleThreadExecutor(Helper.backgroundThreadFactory);
2018-09-02 06:59:49 +00:00
2019-05-12 12:28:18 +00:00
private boolean destroyed = false;
private boolean error = false;
2019-05-12 12:28:18 +00:00
private int index = 0;
private List<Long> messages = null;
2019-05-12 12:28:18 +00:00
private IMAPStore istore = null;
private IMAPFolder ifolder = null;
private Message[] imessages = null;
2018-09-02 06:59:49 +00:00
interface IBoundaryCallbackMessages {
void onLoading();
void onLoaded(int fetched);
2018-09-02 06:59:49 +00:00
2018-11-06 07:30:41 +00:00
void onError(Throwable ex);
2018-09-02 06:59:49 +00:00
}
2019-05-14 16:34:09 +00:00
BoundaryCallbackMessages(Context context, long folder, boolean server, String query, int pageSize) {
this.context = context.getApplicationContext();
2019-05-12 09:40:54 +00:00
this.folder = (folder < 0 ? null : folder);
2019-05-12 12:28:18 +00:00
this.server = server;
this.query = query;
this.pageSize = pageSize;
2019-05-14 16:34:09 +00:00
}
2018-09-02 06:59:49 +00:00
2019-05-14 16:34:09 +00:00
void setCallback(IBoundaryCallbackMessages intf) {
this.handler = new Handler();
2019-05-14 16:34:09 +00:00
this.intf = intf;
2019-06-10 06:38:56 +00:00
if (imessages == null)
index = 0;
else
index = imessages.length - 1;
2018-09-02 06:59:49 +00:00
}
@Override
public void onZeroItemsLoaded() {
2019-05-12 12:28:18 +00:00
Log.i("Boundary zero loaded");
2019-06-12 20:21:55 +00:00
queue_load(true);
2018-09-02 06:59:49 +00:00
}
@Override
public void onItemAtEndLoaded(final TupleMessageEx itemAtEnd) {
2019-05-12 12:28:18 +00:00
Log.i("Boundary at end");
2019-06-12 20:21:55 +00:00
queue_load(false);
2018-09-02 06:59:49 +00:00
}
2019-06-12 20:21:55 +00:00
private void queue_load(final boolean zero) {
2019-01-22 15:55:21 +00:00
executor.submit(new Runnable() {
private int fetched;
2019-01-22 15:55:21 +00:00
@Override
public void run() {
try {
2019-06-07 11:39:46 +00:00
if (destroyed || error)
2019-05-12 12:28:18 +00:00
return;
fetched = 0;
2019-05-14 16:34:09 +00:00
if (intf != null)
handler.post(new Runnable() {
@Override
public void run() {
intf.onLoading();
}
});
2019-05-12 12:28:18 +00:00
if (server)
fetched = load_server();
else
fetched = load_device();
2019-01-22 15:55:21 +00:00
} catch (final Throwable ex) {
Log.e("Boundary", ex);
2019-05-14 16:34:09 +00:00
if (intf != null)
handler.post(new Runnable() {
@Override
public void run() {
intf.onError(ex);
}
});
2019-01-22 15:55:21 +00:00
} finally {
2019-05-14 16:34:09 +00:00
if (intf != null)
handler.post(new Runnable() {
@Override
public void run() {
2019-06-12 20:21:55 +00:00
intf.onLoaded(zero ? fetched : Integer.MAX_VALUE);
2019-05-14 16:34:09 +00:00
}
});
2018-09-02 06:59:49 +00:00
}
2019-01-22 15:55:21 +00:00
}
});
2018-09-02 06:59:49 +00:00
}
2019-01-29 08:35:42 +00:00
2019-05-12 12:28:18 +00:00
private int load_device() {
DB db = DB.getInstance(context);
2019-05-12 12:28:18 +00:00
int found = 0;
2019-05-12 09:40:54 +00:00
try {
db.beginTransaction();
2019-05-12 09:40:54 +00:00
if (messages == null) {
messages = db.message().getMessageIdsByFolder(folder);
2019-05-12 12:28:18 +00:00
Log.i("Boundary device folder=" + folder + " query=" + query + " messages=" + messages.size());
2019-05-12 09:40:54 +00:00
}
2019-05-12 12:28:18 +00:00
for (int i = index; i < messages.size() && found < pageSize && !destroyed; i++) {
index = i + 1;
2019-05-12 09:40:54 +00:00
EntityMessage message = db.message().getMessage(messages.get(i));
2019-05-12 09:40:54 +00:00
boolean match = false;
2019-05-12 12:28:18 +00:00
if (query == null)
2019-05-12 09:40:54 +00:00
match = true;
else {
2019-05-12 12:28:18 +00:00
String find = query.toLowerCase();
String body = null;
if (message.content)
try {
body = Helper.readText(message.getFile(context));
} catch (IOException ex) {
Log.e(ex);
}
if (message.from != null)
for (int j = 0; j < message.from.length && !match; j++)
match = message.from[j].toString().toLowerCase().contains(find);
if (message.to != null)
for (int j = 0; j < message.to.length && !match; j++)
match = message.to[j].toString().toLowerCase().contains(find);
if (message.subject != null && !match)
match = message.subject.toLowerCase().contains(find);
if (!match && message.content)
match = body.toLowerCase().contains(find);
}
2019-05-12 09:40:54 +00:00
if (match) {
2019-05-12 12:28:18 +00:00
found++;
2019-05-12 09:40:54 +00:00
db.message().setMessageFound(message.account, message.thread);
}
}
2019-05-12 09:40:54 +00:00
db.setTransactionSuccessful();
2019-05-12 12:28:18 +00:00
if (found == pageSize)
return found;
2019-05-12 09:40:54 +00:00
} finally {
db.endTransaction();
}
2019-05-12 12:28:18 +00:00
Log.i("Boundary device done");
return found;
}
private int load_server() throws MessagingException, IOException, AuthenticatorException, OperationCanceledException {
DB db = DB.getInstance(context);
final EntityFolder browsable = db.folder().getBrowsableFolder(folder, query != null);
2019-05-12 09:40:54 +00:00
if (browsable == null)
2019-06-07 17:41:23 +00:00
return 0;
2019-05-12 12:28:18 +00:00
2019-05-12 09:40:54 +00:00
EntityAccount account = db.account().getAccount(browsable.account);
if (account == null)
2019-06-07 17:41:23 +00:00
return 0;
2019-05-12 09:40:54 +00:00
if (imessages == null)
try {
// Check connectivity
2019-05-12 16:41:51 +00:00
if (!ConnectionHelper.getNetworkState(context).isSuitable())
throw new IllegalArgumentException(context.getString(R.string.title_no_internet));
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean debug = (prefs.getBoolean("debug", false) || BuildConfig.BETA_RELEASE);
String protocol = account.getProtocol();
// Get properties
Properties props = MessageHelper.getSessionProperties(account.auth_type, account.realm, account.insecure);
props.put("mail." + protocol + ".separatestoreconnection", "true");
// Create session
Session isession = Session.getInstance(props, null);
isession.setDebug(debug);
2019-05-12 12:28:18 +00:00
Log.i("Boundary server connecting account=" + account.name);
istore = (IMAPStore) isession.getStore(protocol);
2019-05-12 16:41:51 +00:00
ConnectionHelper.connect(context, istore, account);
2019-05-12 12:28:18 +00:00
Log.i("Boundary server opening folder=" + browsable.name);
2019-05-12 09:40:54 +00:00
ifolder = (IMAPFolder) istore.getFolder(browsable.name);
ifolder.open(Folder.READ_WRITE);
2019-05-12 12:28:18 +00:00
Log.i("Boundary server query=" + query);
if (query == null)
imessages = ifolder.getMessages();
else {
Object result = ifolder.doCommand(new IMAPFolder.ProtocolCommand() {
@Override
public Object doCommand(IMAPProtocol protocol) {
// Yahoo! does not support keyword search, but uses the flags $Forwarded $Junk $NotJunk
boolean keywords = false;
2019-05-12 09:40:54 +00:00
for (String keyword : browsable.keywords)
if (!keyword.startsWith("$")) {
keywords = true;
break;
}
try {
// https://tools.ietf.org/html/rfc3501#section-6.4.4
Argument arg = new Argument();
2019-05-12 12:28:18 +00:00
if (query.startsWith("raw:") && istore.hasCapability("X-GM-EXT-1")) {
// https://support.google.com/mail/answer/7190
// https://developers.google.com/gmail/imap/imap-extensions#extension_of_the_search_command_x-gm-raw
arg.writeAtom("X-GM-RAW");
2019-05-12 12:28:18 +00:00
arg.writeString(query.substring(4));
} else {
if (!protocol.supportsUtf8()) {
arg.writeAtom("CHARSET");
arg.writeAtom("UTF-8");
}
if (keywords)
arg.writeAtom("OR");
arg.writeAtom("OR");
arg.writeAtom("OR");
arg.writeAtom("OR");
arg.writeAtom("FROM");
2019-05-12 12:28:18 +00:00
arg.writeBytes(query.getBytes());
arg.writeAtom("TO");
2019-05-12 12:28:18 +00:00
arg.writeBytes(query.getBytes());
arg.writeAtom("SUBJECT");
2019-05-12 12:28:18 +00:00
arg.writeBytes(query.getBytes());
arg.writeAtom("BODY");
2019-05-12 12:28:18 +00:00
arg.writeBytes(query.getBytes());
if (keywords) {
arg.writeAtom("KEYWORD");
2019-05-12 12:28:18 +00:00
arg.writeBytes(query.getBytes());
}
}
2019-05-12 12:28:18 +00:00
Log.i("Boundary UTF8 search=" + query);
Response[] responses = protocol.command("SEARCH", arg);
if (responses.length > 0 && responses[responses.length - 1].isOK()) {
List<Integer> msgnums = new ArrayList<>();
for (Response response : responses)
if (((IMAPResponse) response).keyEquals("SEARCH")) {
int msgnum;
while ((msgnum = response.readNumber()) != -1)
msgnums.add(msgnum);
}
Message[] imessages = new Message[msgnums.size()];
for (int i = 0; i < msgnums.size(); i++)
imessages[i] = ifolder.getMessage(msgnums.get(i));
return imessages;
} else {
// Assume no UTF-8 support
2019-05-12 12:28:18 +00:00
String search = query.replace("ß", "ss"); // Eszett
search = Normalizer.normalize(search, Normalizer.Form.NFD)
.replaceAll("[^\\p{ASCII}]", "");
Log.i("Boundary ASCII search=" + search);
SearchTerm term = new OrTerm(
new OrTerm(
new FromStringTerm(search),
new RecipientStringTerm(Message.RecipientType.TO, search)
),
new OrTerm(
new SubjectTerm(search),
new BodyTerm(search)
)
);
if (keywords)
term = new OrTerm(term, new FlagTerm(
new Flags(Helper.sanitizeKeyword(search)), true));
return ifolder.search(term);
}
} catch (MessagingException ex) {
Log.e(ex);
return ex;
}
}
});
if (result instanceof MessagingException)
throw (MessagingException) result;
imessages = (Message[]) result;
}
2019-05-12 12:28:18 +00:00
Log.i("Boundary server found messages=" + imessages.length);
2019-05-12 12:28:18 +00:00
index = imessages.length - 1;
} catch (Throwable ex) {
error = true;
if (ex instanceof FolderClosedException)
Log.w("Search", ex);
else {
Log.e("Search", ex);
throw ex;
}
}
2019-05-12 12:28:18 +00:00
int found = 0;
while (index >= 0 && found < pageSize && !destroyed) {
Log.i("Boundary server index=" + index);
int from = Math.max(0, index - (pageSize - found) + 1);
Message[] isub = Arrays.copyOfRange(imessages, from, index + 1);
index -= (pageSize - found);
FetchProfile fp = new FetchProfile();
fp.add(FetchProfile.Item.ENVELOPE);
fp.add(FetchProfile.Item.FLAGS);
fp.add(FetchProfile.Item.CONTENT_INFO); // body structure
fp.add(UIDFolder.FetchProfileItem.UID);
fp.add(IMAPFolder.FetchProfileItem.HEADERS);
fp.add(FetchProfile.Item.SIZE);
fp.add(IMAPFolder.FetchProfileItem.INTERNALDATE);
ifolder.fetch(isub, fp);
try {
db.beginTransaction();
2019-05-12 12:28:18 +00:00
for (int j = isub.length - 1; j >= 0 && found < pageSize && !destroyed; j--)
try {
long uid = ifolder.getUID(isub[j]);
2019-05-12 12:28:18 +00:00
Log.i("Boundary server sync uid=" + uid);
2019-05-12 09:40:54 +00:00
EntityMessage message = db.message().getMessageByUid(browsable.id, uid);
if (message == null) {
message = Core.synchronizeMessage(context,
2019-05-12 09:40:54 +00:00
account, browsable,
ifolder, (IMAPMessage) isub[j],
true,
new ArrayList<EntityRule>());
2019-05-12 12:28:18 +00:00
found++;
}
db.message().setMessageFound(message.account, message.thread);
} catch (MessageRemovedException ex) {
2019-05-12 12:28:18 +00:00
Log.w(browsable.name + " boundary server", ex);
} catch (FolderClosedException ex) {
throw ex;
} catch (IOException ex) {
if (ex.getCause() instanceof MessagingException) {
2019-05-12 12:28:18 +00:00
Log.w(browsable.name + " boundary server", ex);
2019-05-12 09:40:54 +00:00
db.folder().setFolderError(browsable.id, Helper.formatThrowable(ex, true));
} else
throw ex;
} catch (Throwable ex) {
2019-05-12 12:28:18 +00:00
Log.e(browsable.name + " boundary server", ex);
2019-05-12 09:40:54 +00:00
db.folder().setFolderError(browsable.id, Helper.formatThrowable(ex, true));
} finally {
((IMAPMessage) isub[j]).invalidateHeaders();
}
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
}
2019-05-12 12:28:18 +00:00
Log.i("Boundary server done");
return found;
}
2019-05-14 16:34:09 +00:00
void clear() {
destroyed = true;
executor.submit(new Runnable() {
@Override
public void run() {
Log.i("Boundary destroy");
try {
if (istore != null)
istore.close();
} catch (Throwable ex) {
Log.e("Boundary", ex);
}
}
});
}
2018-09-02 06:59:49 +00:00
}