conversations-classic/src/eu/siacs/conversations/parser/MessageParser.java

229 lines
8 KiB
Java
Raw Normal View History

2014-05-14 10:56:34 +00:00
package eu.siacs.conversations.parser;
import net.java.otr4j.session.Session;
import net.java.otr4j.session.SessionStatus;
2014-02-28 17:46:01 +00:00
import eu.siacs.conversations.entities.Account;
import eu.siacs.conversations.entities.Conversation;
import eu.siacs.conversations.entities.Message;
import eu.siacs.conversations.services.XmppConnectionService;
import eu.siacs.conversations.utils.CryptoHelper;
2014-02-28 17:46:01 +00:00
import eu.siacs.conversations.xml.Element;
2014-03-10 18:22:13 +00:00
import eu.siacs.conversations.xmpp.stanzas.MessagePacket;
public class MessageParser extends AbstractParser {
2014-06-04 10:31:19 +00:00
2014-05-14 10:56:34 +00:00
public MessageParser(XmppConnectionService service) {
super(service);
2014-05-14 10:56:34 +00:00
}
2014-06-04 10:31:19 +00:00
2014-06-04 09:55:38 +00:00
public Message parseChat(MessagePacket packet, Account account) {
String[] fromParts = packet.getFrom().split("/");
2014-06-04 10:31:19 +00:00
Conversation conversation = mXmppConnectionService
.findOrCreateConversation(account, fromParts[0], false);
conversation.setLatestMarkableMessageId(getMarkableMessageId(packet));
2014-06-06 16:49:35 +00:00
updateLastseen(packet, account,true);
2014-06-04 09:55:38 +00:00
String pgpBody = getPgpBody(packet);
2014-06-22 16:21:04 +00:00
Message finishedMessage;
2014-06-04 10:31:19 +00:00
if (pgpBody != null) {
2014-06-22 16:21:04 +00:00
finishedMessage = new Message(conversation, packet.getFrom(), pgpBody,
2014-06-04 10:31:19 +00:00
Message.ENCRYPTION_PGP, Message.STATUS_RECIEVED);
2014-06-04 09:55:38 +00:00
} else {
2014-06-22 16:21:04 +00:00
finishedMessage = new Message(conversation, packet.getFrom(),
2014-06-04 10:31:19 +00:00
packet.getBody(), Message.ENCRYPTION_NONE,
Message.STATUS_RECIEVED);
2014-06-04 09:55:38 +00:00
}
2014-06-22 16:21:04 +00:00
finishedMessage.setTime(getTimestamp(packet));
return finishedMessage;
2014-02-27 23:22:56 +00:00
}
2014-06-04 09:55:38 +00:00
2014-05-14 10:56:34 +00:00
public Message parseOtrChat(MessagePacket packet, Account account) {
2014-06-04 10:31:19 +00:00
boolean properlyAddressed = (packet.getTo().split("/").length == 2)
|| (account.countPresences() == 1);
String[] fromParts = packet.getFrom().split("/");
2014-06-04 10:31:19 +00:00
Conversation conversation = mXmppConnectionService
.findOrCreateConversation(account, fromParts[0], false);
2014-06-06 16:49:35 +00:00
updateLastseen(packet, account,true);
String body = packet.getBody();
if (!conversation.hasValidOtrSession()) {
if (properlyAddressed) {
2014-06-04 10:31:19 +00:00
conversation.startOtrSession(
mXmppConnectionService.getApplicationContext(),
fromParts[1], false);
} else {
return null;
}
2014-03-07 23:48:52 +00:00
} else {
2014-06-04 10:31:19 +00:00
String foreignPresence = conversation.getOtrSession()
.getSessionID().getUserID();
2014-03-12 18:47:42 +00:00
if (!foreignPresence.equals(fromParts[1])) {
conversation.endOtrIfNeeded();
if (properlyAddressed) {
2014-06-04 10:31:19 +00:00
conversation.startOtrSession(
mXmppConnectionService.getApplicationContext(),
fromParts[1], false);
} else {
return null;
}
2014-03-07 23:48:52 +00:00
}
}
try {
Session otrSession = conversation.getOtrSession();
2014-06-04 10:31:19 +00:00
SessionStatus before = otrSession.getSessionStatus();
body = otrSession.transformReceiving(body);
SessionStatus after = otrSession.getSessionStatus();
2014-06-04 10:31:19 +00:00
if ((before != after) && (after == SessionStatus.ENCRYPTED)) {
2014-06-11 19:53:25 +00:00
mXmppConnectionService.onOtrSessionEstablished(conversation);
} else if ((before != after) && (after == SessionStatus.FINISHED)) {
conversation.resetOtrSession();
}
2014-06-04 10:31:19 +00:00
if ((body == null) || (body.isEmpty())) {
return null;
}
if (body.startsWith(CryptoHelper.FILETRANSFER)) {
String key = body.substring(CryptoHelper.FILETRANSFER.length());
conversation.setSymmetricKey(CryptoHelper.hexToBytes(key));
return null;
}
conversation.setLatestMarkableMessageId(getMarkableMessageId(packet));
Message finishedMessage = new Message(conversation, packet.getFrom(), body,
2014-06-04 10:31:19 +00:00
Message.ENCRYPTION_OTR, Message.STATUS_RECIEVED);
finishedMessage.setTime(getTimestamp(packet));
return finishedMessage;
} catch (Exception e) {
String receivedId = packet.getId();
if (receivedId!=null) {
mXmppConnectionService.replyWithError(account,packet);
}
2014-03-21 22:09:14 +00:00
conversation.resetOtrSession();
return null;
}
}
2014-06-04 10:31:19 +00:00
2014-05-14 10:56:34 +00:00
public Message parseGroupchat(MessagePacket packet, Account account) {
int status;
String[] fromParts = packet.getFrom().split("/");
2014-06-04 10:31:19 +00:00
Conversation conversation = mXmppConnectionService
.findOrCreateConversation(account, fromParts[0], true);
2014-03-14 21:40:56 +00:00
if (packet.hasChild("subject")) {
2014-06-04 10:31:19 +00:00
conversation.getMucOptions().setSubject(
packet.findChild("subject").getContent());
2014-05-14 10:56:34 +00:00
mXmppConnectionService.updateUi(conversation, false);
2014-03-14 21:40:56 +00:00
return null;
}
if ((fromParts.length == 1)) {
return null;
}
String counterPart = fromParts[1];
2014-03-03 04:01:02 +00:00
if (counterPart.equals(conversation.getMucOptions().getNick())) {
2014-06-04 10:31:19 +00:00
if (mXmppConnectionService.markMessage(conversation,
packet.getId(), Message.STATUS_SEND)) {
2014-05-16 20:46:15 +00:00
return null;
} else {
status = Message.STATUS_SEND;
}
} else {
status = Message.STATUS_RECIEVED;
}
String pgpBody = getPgpBody(packet);
conversation.setLatestMarkableMessageId(getMarkableMessageId(packet));
Message finishedMessage;
2014-06-04 10:31:19 +00:00
if (pgpBody == null) {
finishedMessage = new Message(conversation, counterPart, packet.getBody(),
2014-06-04 10:31:19 +00:00
Message.ENCRYPTION_NONE, status);
} else {
finishedMessage= new Message(conversation, counterPart, pgpBody,
2014-06-04 10:31:19 +00:00
Message.ENCRYPTION_PGP, status);
}
finishedMessage.setTime(getTimestamp(packet));
return finishedMessage;
}
2014-06-04 10:31:19 +00:00
public Message parseCarbonMessage(MessagePacket packet, Account account) {
int status;
String fullJid;
Element forwarded;
if (packet.hasChild("received")) {
2014-06-04 10:31:19 +00:00
forwarded = packet.findChild("received").findChild("forwarded");
status = Message.STATUS_RECIEVED;
} else if (packet.hasChild("sent")) {
2014-06-04 10:31:19 +00:00
forwarded = packet.findChild("sent").findChild("forwarded");
status = Message.STATUS_SEND;
} else {
return null;
}
2014-06-04 10:31:19 +00:00
if (forwarded == null) {
2014-03-31 07:45:39 +00:00
return null;
}
Element message = forwarded.findChild("message");
if ((message == null) || (!message.hasChild("body")))
return null; // either malformed or boring
if (status == Message.STATUS_RECIEVED) {
fullJid = message.getAttribute("from");
2014-06-06 16:49:35 +00:00
updateLastseen(message, account,true);
} else {
fullJid = message.getAttribute("to");
}
String[] parts = fullJid.split("/");
2014-06-04 10:31:19 +00:00
Conversation conversation = mXmppConnectionService
.findOrCreateConversation(account, parts[0], false);
conversation.setLatestMarkableMessageId(getMarkableMessageId(packet));
2014-06-04 10:31:19 +00:00
String pgpBody = getPgpBody(message);
Message finishedMessage;
2014-06-04 10:31:19 +00:00
if (pgpBody != null) {
finishedMessage = new Message(conversation, fullJid, pgpBody,Message.ENCRYPTION_PGP, status);
2014-06-04 09:55:38 +00:00
} else {
2014-06-04 10:31:19 +00:00
String body = message.findChild("body").getContent();
finishedMessage= new Message(conversation, fullJid, body,Message.ENCRYPTION_NONE, status);
2014-06-04 09:55:38 +00:00
}
finishedMessage.setTime(getTimestamp(message));
return finishedMessage;
}
2014-05-14 10:56:34 +00:00
public void parseError(MessagePacket packet, Account account) {
2014-04-11 07:13:56 +00:00
String[] fromParts = packet.getFrom().split("/");
2014-06-04 10:31:19 +00:00
mXmppConnectionService.markMessage(account, fromParts[0],
packet.getId(), Message.STATUS_SEND_FAILED);
}
2014-06-06 16:49:35 +00:00
public void parseNormal(MessagePacket packet, Account account) {
if (packet.hasChild("displayed","urn:xmpp:chat-markers:0")) {
String id = packet.findChild("displayed","urn:xmpp:chat-markers:0").getAttribute("id");
String[] fromParts = packet.getFrom().split("/");
updateLastseen(packet, account,true);
mXmppConnectionService.markMessage(account,fromParts[0], id, Message.STATUS_SEND_DISPLAYED);
} else if (packet.hasChild("received","urn:xmpp:chat-markers:0")) {
String id = packet.findChild("received","urn:xmpp:chat-markers:0").getAttribute("id");
String[] fromParts = packet.getFrom().split("/");
updateLastseen(packet, account,false);
mXmppConnectionService.markMessage(account,fromParts[0], id, Message.STATUS_SEND_RECEIVED);
} else if (packet.hasChild("x")) {
Element x = packet.findChild("x");
if (x.hasChild("invite")) {
Conversation conversation = mXmppConnectionService.findOrCreateConversation(account, packet.getFrom(),
true);
mXmppConnectionService.updateUi(conversation, false);
}
}
}
2014-02-27 23:22:56 +00:00
private String getPgpBody(Element message) {
Element child = message.findChild("x", "jabber:x:encrypted");
2014-06-04 10:31:19 +00:00
if (child == null) {
return null;
} else {
return child.getContent();
2014-02-27 23:22:56 +00:00
}
}
private String getMarkableMessageId(Element message) {
if (message.hasChild("markable", "urn:xmpp:chat-markers:0")) {
return message.getAttribute("id");
} else {
return null;
}
}
2014-06-06 16:49:35 +00:00
}