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

520 lines
18 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;
2014-08-05 20:58:46 +00:00
import eu.siacs.conversations.entities.Contact;
2014-02-28 17:46:01 +00:00
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;
import eu.siacs.conversations.xmpp.OnMessagePacketReceived;
2014-11-06 19:10:03 +00:00
import eu.siacs.conversations.xmpp.jid.InvalidJidException;
import eu.siacs.conversations.xmpp.jid.Jid;
2014-08-05 20:58:46 +00:00
import eu.siacs.conversations.xmpp.pep.Avatar;
2014-03-10 18:22:13 +00:00
import eu.siacs.conversations.xmpp.stanzas.MessagePacket;
public class MessageParser extends AbstractParser implements
OnMessagePacketReceived {
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
private Message parseChat(MessagePacket packet, Account account) {
2014-11-06 19:10:03 +00:00
final Jid jid = packet.getFrom().toBareJid();
2014-06-04 10:31:19 +00:00
Conversation conversation = mXmppConnectionService
2014-11-06 19:10:03 +00:00
.findOrCreateConversation(account, jid.toBareJid(), false);
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) {
finishedMessage = new Message(conversation, packet.getFrom(),
2014-08-28 09:01:24 +00:00
pgpBody, Message.ENCRYPTION_PGP, Message.STATUS_RECEIVED);
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,
2014-08-28 09:01:24 +00:00
Message.STATUS_RECEIVED);
2014-06-04 09:55:38 +00:00
}
2014-08-25 17:20:53 +00:00
finishedMessage.setRemoteMsgId(packet.getId());
2014-10-07 14:02:52 +00:00
finishedMessage.markable = isMarkable(packet);
if (conversation.getMode() == Conversation.MODE_MULTI
2014-11-06 19:10:03 +00:00
&& !jid.getResourcepart().isEmpty()) {
finishedMessage.setType(Message.TYPE_PRIVATE);
finishedMessage.setCounterpart(packet.getFrom());
finishedMessage.setTrueCounterpart(conversation.getMucOptions()
2014-11-06 19:10:03 +00:00
.getTrueCounterpart(jid.getResourcepart()));
2014-08-25 17:20:53 +00:00
if (conversation.hasDuplicateMessage(finishedMessage)) {
return null;
}
}
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
private Message parseOtrChat(MessagePacket packet, Account account) {
2014-11-06 19:10:03 +00:00
boolean properlyAddressed = (!packet.getTo().isBareJid())
2014-06-04 10:31:19 +00:00
|| (account.countPresences() == 1);
2014-11-06 19:10:03 +00:00
final Jid from = packet.getFrom();
2014-06-04 10:31:19 +00:00
Conversation conversation = mXmppConnectionService
2014-11-06 19:10:03 +00:00
.findOrCreateConversation(account, from.toBareJid(), false);
String presence;
2014-11-06 19:10:03 +00:00
if (from.isBareJid()) {
presence = "";
} else {
2014-11-06 19:10:03 +00:00
presence = from.getResourcepart();
}
updateLastseen(packet, account, true);
String body = packet.getBody();
if (body.matches("^\\?OTRv\\d*\\?")) {
conversation.endOtrIfNeeded();
}
if (!conversation.hasValidOtrSession()) {
if (properlyAddressed) {
conversation.startOtrSession(mXmppConnectionService, presence,
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();
if (!foreignPresence.equals(presence)) {
conversation.endOtrIfNeeded();
if (properlyAddressed) {
conversation.startOtrSession(mXmppConnectionService,
presence, 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();
mXmppConnectionService.updateConversationUi();
}
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;
}
Message finishedMessage = new Message(conversation,
packet.getFrom(), body, Message.ENCRYPTION_OTR,
2014-08-28 09:01:24 +00:00
Message.STATUS_RECEIVED);
finishedMessage.setTime(getTimestamp(packet));
2014-08-23 13:57:39 +00:00
finishedMessage.setRemoteMsgId(packet.getId());
2014-10-07 14:02:52 +00:00
finishedMessage.markable = isMarkable(packet);
return finishedMessage;
} catch (Exception e) {
String receivedId = packet.getId();
if (receivedId != null) {
mXmppConnectionService.replyWithNotAcceptable(account, packet);
}
conversation.resetOtrSession();
return null;
}
}
2014-06-04 10:31:19 +00:00
private Message parseGroupchat(MessagePacket packet, Account account) {
int status;
2014-11-06 19:10:03 +00:00
final Jid from = packet.getFrom();
if (mXmppConnectionService.find(account.pendingConferenceLeaves,
2014-11-06 19:10:03 +00:00
account, from.toBareJid()) != null) {
return null;
}
2014-06-04 10:31:19 +00:00
Conversation conversation = mXmppConnectionService
2014-11-06 19:10:03 +00:00
.findOrCreateConversation(account, from.toBareJid(), 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-07-12 11:42:17 +00:00
mXmppConnectionService.updateConversationUi();
2014-03-14 21:40:56 +00:00
return null;
}
2014-11-06 19:10:03 +00:00
if (from.isBareJid()) {
return null;
}
2014-11-06 19:10:03 +00:00
if (from.getResourcepart().equals(conversation.getMucOptions().getActualNick())) {
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 {
2014-08-28 09:01:24 +00:00
status = Message.STATUS_RECEIVED;
}
String pgpBody = getPgpBody(packet);
Message finishedMessage;
2014-06-04 10:31:19 +00:00
if (pgpBody == null) {
2014-11-06 19:10:03 +00:00
finishedMessage = new Message(conversation, from,
packet.getBody(), Message.ENCRYPTION_NONE, status);
} else {
2014-11-06 19:10:03 +00:00
finishedMessage = new Message(conversation, from, pgpBody,
2014-06-04 10:31:19 +00:00
Message.ENCRYPTION_PGP, status);
}
2014-08-23 13:57:39 +00:00
finishedMessage.setRemoteMsgId(packet.getId());
2014-10-07 14:02:52 +00:00
finishedMessage.markable = isMarkable(packet);
2014-08-28 09:01:24 +00:00
if (status == Message.STATUS_RECEIVED) {
finishedMessage.setTrueCounterpart(conversation.getMucOptions()
2014-11-06 19:10:03 +00:00
.getTrueCounterpart(from.getResourcepart()));
}
2014-08-31 14:28:21 +00:00
if (packet.hasChild("delay")
&& conversation.hasDuplicateMessage(finishedMessage)) {
2014-08-23 13:57:39 +00:00
return null;
}
finishedMessage.setTime(getTimestamp(packet));
return finishedMessage;
}
2014-11-06 19:10:03 +00:00
private Message parseCarbonMessage(final MessagePacket packet, final Account account) {
int status;
2014-11-06 19:10:03 +00:00
final Jid fullJid;
Element forwarded;
2014-09-12 18:14:19 +00:00
if (packet.hasChild("received", "urn:xmpp:carbons:2")) {
forwarded = packet.findChild("received", "urn:xmpp:carbons:2")
2014-09-23 09:48:48 +00:00
.findChild("forwarded", "urn:xmpp:forward:0");
2014-08-28 09:01:24 +00:00
status = Message.STATUS_RECEIVED;
2014-09-12 18:14:19 +00:00
} else if (packet.hasChild("sent", "urn:xmpp:carbons:2")) {
forwarded = packet.findChild("sent", "urn:xmpp:carbons:2")
2014-09-23 09:48:48 +00:00
.findChild("forwarded", "urn:xmpp:forward:0");
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) {
return null;
}
if (!message.hasChild("body")) {
2014-08-31 14:28:21 +00:00
if (status == Message.STATUS_RECEIVED
&& message.getAttribute("from") != null) {
parseNonMessage(message, account);
} else if (status == Message.STATUS_SEND
&& message.hasChild("displayed", "urn:xmpp:chat-markers:0")) {
2014-11-06 19:10:03 +00:00
final Jid to = message.getTo();
if (to != null) {
2014-11-06 19:10:03 +00:00
final Conversation conversation = mXmppConnectionService.find(
mXmppConnectionService.getConversations(), account,
2014-11-06 19:10:03 +00:00
to.toBareJid());
if (conversation != null) {
mXmppConnectionService.markRead(conversation, false);
}
}
}
return null;
}
2014-08-28 09:01:24 +00:00
if (status == Message.STATUS_RECEIVED) {
2014-11-06 19:10:03 +00:00
fullJid = message.getFrom();
if (fullJid == null) {
2014-07-27 20:31:33 +00:00
return null;
} else {
updateLastseen(message, account, true);
}
} else {
2014-11-06 19:10:03 +00:00
fullJid = message.getTo();
2014-07-27 20:31:33 +00:00
if (fullJid == null) {
return null;
}
2014-07-16 10:42:44 +00:00
}
2014-06-04 10:31:19 +00:00
Conversation conversation = mXmppConnectionService
2014-11-06 19:10:03 +00:00
.findOrCreateConversation(account, fullJid.toBareJid(), false);
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));
2014-08-23 13:57:39 +00:00
finishedMessage.setRemoteMsgId(message.getAttribute("id"));
2014-10-07 14:02:52 +00:00
finishedMessage.markable = isMarkable(message);
if (conversation.getMode() == Conversation.MODE_MULTI
2014-11-06 19:10:03 +00:00
&& !fullJid.isBareJid()) {
finishedMessage.setType(Message.TYPE_PRIVATE);
finishedMessage.setCounterpart(fullJid);
finishedMessage.setTrueCounterpart(conversation.getMucOptions()
2014-11-06 19:10:03 +00:00
.getTrueCounterpart(fullJid.getResourcepart()));
2014-08-25 17:20:53 +00:00
if (conversation.hasDuplicateMessage(finishedMessage)) {
return null;
}
}
return finishedMessage;
}
2014-11-06 19:10:03 +00:00
private void parseError(final MessagePacket packet, final Account account) {
final Jid from = packet.getFrom();
mXmppConnectionService.markMessage(account, from.toBareJid(),
2014-06-04 10:31:19 +00:00
packet.getId(), Message.STATUS_SEND_FAILED);
}
private void parseNonMessage(Element packet, Account account) {
2014-11-06 19:10:03 +00:00
final Jid from = packet.getFrom();
if (packet.hasChild("event", "http://jabber.org/protocol/pubsub#event")) {
Element event = packet.findChild("event",
"http://jabber.org/protocol/pubsub#event");
2014-11-06 19:10:03 +00:00
parseEvent(event, from, account);
2014-09-23 09:48:48 +00:00
} else if (from != null
&& packet.hasChild("displayed", "urn:xmpp:chat-markers:0")) {
String id = packet
.findChild("displayed", "urn:xmpp:chat-markers:0")
.getAttribute("id");
updateLastseen(packet, account, true);
2014-11-06 19:10:03 +00:00
mXmppConnectionService.markMessage(account, from.toBareJid(),
2014-09-23 09:48:48 +00:00
id, Message.STATUS_SEND_DISPLAYED);
} else if (from != null
&& packet.hasChild("received", "urn:xmpp:chat-markers:0")) {
String id = packet.findChild("received", "urn:xmpp:chat-markers:0")
.getAttribute("id");
updateLastseen(packet, account, false);
2014-11-06 19:10:03 +00:00
mXmppConnectionService.markMessage(account, from.toBareJid(),
2014-09-23 09:48:48 +00:00
id, Message.STATUS_SEND_RECEIVED);
} else if (from != null
&& packet.hasChild("received", "urn:xmpp:receipts")) {
String id = packet.findChild("received", "urn:xmpp:receipts")
.getAttribute("id");
updateLastseen(packet, account, false);
2014-11-06 19:10:03 +00:00
mXmppConnectionService.markMessage(account, from.toBareJid(),
2014-09-23 09:48:48 +00:00
id, Message.STATUS_SEND_RECEIVED);
} else if (packet.hasChild("x", "http://jabber.org/protocol/muc#user")) {
Element x = packet.findChild("x",
"http://jabber.org/protocol/muc#user");
2014-06-06 16:49:35 +00:00
if (x.hasChild("invite")) {
Conversation conversation = mXmppConnectionService
.findOrCreateConversation(account,
2014-11-06 19:10:03 +00:00
packet.getFrom(), true);
if (!conversation.getMucOptions().online()) {
2014-09-05 20:07:35 +00:00
if (x.hasChild("password")) {
Element password = x.findChild("password");
conversation.getMucOptions().setPassword(
password.getContent());
2014-09-28 13:21:56 +00:00
mXmppConnectionService.databaseBackend
.updateConversation(conversation);
2014-09-05 20:07:35 +00:00
}
mXmppConnectionService.joinMuc(conversation);
mXmppConnectionService.updateConversationUi();
}
2014-06-06 16:49:35 +00:00
}
2014-07-21 14:04:53 +00:00
} else if (packet.hasChild("x", "jabber:x:conference")) {
Element x = packet.findChild("x", "jabber:x:conference");
2014-11-06 19:10:03 +00:00
Jid jid;
try {
jid = Jid.fromString(x.getAttribute("jid"));
} catch (InvalidJidException e) {
jid = null;
}
String password = x.getAttribute("password");
if (jid != null) {
2014-07-21 14:04:53 +00:00
Conversation conversation = mXmppConnectionService
.findOrCreateConversation(account, jid, true);
2014-07-21 14:04:53 +00:00
if (!conversation.getMucOptions().online()) {
2014-09-05 20:07:35 +00:00
if (password != null) {
conversation.getMucOptions().setPassword(password);
2014-09-28 13:21:56 +00:00
mXmppConnectionService.databaseBackend
.updateConversation(conversation);
2014-09-05 20:07:35 +00:00
}
2014-07-21 14:04:53 +00:00
mXmppConnectionService.joinMuc(conversation);
mXmppConnectionService.updateConversationUi();
}
}
2014-06-06 16:49:35 +00:00
}
}
2014-02-27 23:22:56 +00:00
2014-11-06 19:10:03 +00:00
private void parseEvent(final Element event, final Jid from, final Account account) {
2014-08-04 23:36:17 +00:00
Element items = event.findChild("items");
String node = items.getAttribute("node");
if (node != null) {
2014-08-05 20:58:46 +00:00
if (node.equals("urn:xmpp:avatar:metadata")) {
Avatar avatar = Avatar.parseMetadata(items);
2014-08-31 14:28:21 +00:00
if (avatar != null) {
2014-08-15 11:11:33 +00:00
avatar.owner = from;
if (mXmppConnectionService.getFileBackend().isAvatarCached(
avatar)) {
if (account.getJid().equals(from)) {
if (account.setAvatar(avatar.getFilename())) {
2014-08-31 14:28:21 +00:00
mXmppConnectionService.databaseBackend
.updateAccount(account);
}
2014-10-21 12:57:16 +00:00
mXmppConnectionService.getAvatarService().clear(
account);
2014-10-21 13:26:17 +00:00
mXmppConnectionService.updateConversationUi();
mXmppConnectionService.updateAccountUi();
2014-08-15 11:11:33 +00:00
} else {
2014-08-31 14:28:21 +00:00
Contact contact = account.getRoster().getContact(
from);
2014-08-15 11:11:33 +00:00
contact.setAvatar(avatar.getFilename());
2014-10-21 12:57:16 +00:00
mXmppConnectionService.getAvatarService().clear(
contact);
2014-10-21 13:26:17 +00:00
mXmppConnectionService.updateConversationUi();
mXmppConnectionService.updateRosterUi();
2014-08-15 11:11:33 +00:00
}
2014-08-05 20:58:46 +00:00
} else {
2014-08-15 11:11:33 +00:00
mXmppConnectionService.fetchAvatar(account, avatar);
2014-08-05 20:58:46 +00:00
}
}
} else if (node.equals("http://jabber.org/protocol/nick")) {
Element item = items.findChild("item");
if (item != null) {
Element nick = item.findChild("nick",
"http://jabber.org/protocol/nick");
if (nick != null) {
if (from != null) {
Contact contact = account.getRoster().getContact(
from);
contact.setPresenceName(nick.getContent());
mXmppConnectionService.getAvatarService().clear(account);
mXmppConnectionService.updateConversationUi();
mXmppConnectionService.updateAccountUi();
}
}
}
2014-08-05 20:58:46 +00:00
}
2014-08-04 23:36:17 +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
}
}
2014-10-07 14:02:52 +00:00
private boolean isMarkable(Element message) {
return message.hasChild("markable", "urn:xmpp:chat-markers:0");
}
2014-06-06 16:49:35 +00:00
@Override
public void onMessagePacketReceived(Account account, MessagePacket packet) {
Message message = null;
this.parseNick(packet, account);
if ((packet.getType() == MessagePacket.TYPE_CHAT || packet.getType() == MessagePacket.TYPE_NORMAL)) {
if ((packet.getBody() != null)
&& (packet.getBody().startsWith("?OTR"))) {
message = this.parseOtrChat(packet, account);
if (message != null) {
message.markUnread();
}
2014-09-29 15:59:53 +00:00
} else if (packet.hasChild("body")
&& !(packet.hasChild("x",
"http://jabber.org/protocol/muc#user"))) {
message = this.parseChat(packet, account);
2014-08-25 17:20:53 +00:00
if (message != null) {
message.markUnread();
}
2014-09-12 18:14:19 +00:00
} else if (packet.hasChild("received", "urn:xmpp:carbons:2")
|| (packet.hasChild("sent", "urn:xmpp:carbons:2"))) {
message = this.parseCarbonMessage(packet, account);
if (message != null) {
if (message.getStatus() == Message.STATUS_SEND) {
account.activateGracePeriod();
mXmppConnectionService.markRead(
message.getConversation(), false);
} else {
message.markUnread();
}
}
} else {
parseNonMessage(packet, account);
}
} else if (packet.getType() == MessagePacket.TYPE_GROUPCHAT) {
message = this.parseGroupchat(packet, account);
if (message != null) {
2014-08-28 09:01:24 +00:00
if (message.getStatus() == Message.STATUS_RECEIVED) {
message.markUnread();
} else {
mXmppConnectionService.markRead(message.getConversation(),
false);
account.activateGracePeriod();
}
}
} else if (packet.getType() == MessagePacket.TYPE_ERROR) {
this.parseError(packet, account);
return;
2014-08-04 23:36:17 +00:00
} else if (packet.getType() == MessagePacket.TYPE_HEADLINE) {
this.parseHeadline(packet, account);
return;
}
if ((message == null) || (message.getBody() == null)) {
return;
}
if ((mXmppConnectionService.confirmMessages())
&& ((packet.getId() != null))) {
if (packet.hasChild("markable", "urn:xmpp:chat-markers:0")) {
MessagePacket receipt = mXmppConnectionService
.getMessageGenerator().received(account, packet,
"urn:xmpp:chat-markers:0");
mXmppConnectionService.sendMessagePacket(account, receipt);
}
if (packet.hasChild("request", "urn:xmpp:receipts")) {
MessagePacket receipt = mXmppConnectionService
.getMessageGenerator().received(account, packet,
"urn:xmpp:receipts");
mXmppConnectionService.sendMessagePacket(account, receipt);
}
}
Conversation conversation = message.getConversation();
conversation.add(message);
if (message.getStatus() == Message.STATUS_RECEIVED
&& conversation.getOtrSession() != null
&& !conversation.getOtrSession().getSessionID().getUserID()
.equals(message.getCounterpart().getResourcepart())) {
conversation.endOtrIfNeeded();
}
if (packet.getType() != MessagePacket.TYPE_ERROR) {
if (message.getEncryption() == Message.ENCRYPTION_NONE
|| mXmppConnectionService.saveEncryptedMessages()) {
mXmppConnectionService.databaseBackend.createMessage(message);
}
}
if (message.trusted() && message.bodyContainsDownloadable()) {
this.mXmppConnectionService.getHttpConnectionManager()
.createNewConnection(message);
2014-11-05 20:37:40 +00:00
} else {
2014-09-29 16:28:13 +00:00
mXmppConnectionService.getNotificationService().push(message);
2014-09-28 13:21:56 +00:00
}
mXmppConnectionService.updateConversationUi();
}
2014-08-04 23:36:17 +00:00
private void parseHeadline(MessagePacket packet, Account account) {
if (packet.hasChild("event", "http://jabber.org/protocol/pubsub#event")) {
Element event = packet.findChild("event",
"http://jabber.org/protocol/pubsub#event");
parseEvent(event, packet.getFrom(), account);
2014-08-04 23:36:17 +00:00
}
}
private void parseNick(MessagePacket packet, Account account) {
Element nick = packet.findChild("nick",
"http://jabber.org/protocol/nick");
if (nick != null) {
if (packet.getFrom() != null) {
Contact contact = account.getRoster().getContact(
packet.getFrom());
contact.setPresenceName(nick.getContent());
}
}
}
}