2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.entities;
|
|
|
|
|
2016-04-22 19:25:06 +00:00
|
|
|
import android.content.Context;
|
|
|
|
|
2018-02-10 18:06:31 +00:00
|
|
|
import java.lang.ref.WeakReference;
|
2014-11-16 16:21:21 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
2014-11-17 16:53:19 +00:00
|
|
|
import java.util.Locale;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2014-11-16 22:58:30 +00:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
2014-10-22 16:38:44 +00:00
|
|
|
import eu.siacs.conversations.xml.Element;
|
2018-03-05 17:30:40 +00:00
|
|
|
import rocks.xmpp.addr.Jid;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
public class Bookmark extends Element implements ListItem {
|
|
|
|
|
|
|
|
private Account account;
|
2018-02-10 18:06:31 +00:00
|
|
|
private WeakReference<Conversation> conversation;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public Bookmark(final Account account, final Jid jid) {
|
2014-10-22 16:38:44 +00:00
|
|
|
super("conference");
|
2014-11-05 20:55:47 +00:00
|
|
|
this.setAttribute("jid", jid.toString());
|
2014-10-22 16:38:44 +00:00
|
|
|
this.account = account;
|
|
|
|
}
|
|
|
|
|
|
|
|
private Bookmark(Account account) {
|
|
|
|
super("conference");
|
|
|
|
this.account = account;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Bookmark parse(Element element, Account account) {
|
|
|
|
Bookmark bookmark = new Bookmark(account);
|
|
|
|
bookmark.setAttributes(element.getAttributes());
|
|
|
|
bookmark.setChildren(element.getChildren());
|
|
|
|
return bookmark;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAutojoin(boolean autojoin) {
|
|
|
|
if (autojoin) {
|
|
|
|
this.setAttribute("autojoin", "true");
|
|
|
|
} else {
|
|
|
|
this.setAttribute("autojoin", "false");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-11-05 20:55:47 +00:00
|
|
|
public int compareTo(final ListItem another) {
|
2014-11-16 22:58:30 +00:00
|
|
|
return this.getDisplayName().compareToIgnoreCase(
|
|
|
|
another.getDisplayName());
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getDisplayName() {
|
2018-02-10 18:06:31 +00:00
|
|
|
final Conversation c = getConversation();
|
|
|
|
if (c != null) {
|
|
|
|
return c.getName();
|
2016-06-03 16:43:45 +00:00
|
|
|
} else if (getBookmarkName() != null
|
|
|
|
&& !getBookmarkName().trim().isEmpty()) {
|
|
|
|
return getBookmarkName().trim();
|
2014-10-22 16:38:44 +00:00
|
|
|
} else {
|
2016-06-16 18:38:35 +00:00
|
|
|
Jid jid = this.getJid();
|
2018-03-05 17:30:40 +00:00
|
|
|
String name = jid != null ? jid.getLocal() : getAttribute("jid");
|
2016-06-16 18:38:35 +00:00
|
|
|
return name != null ? name : "";
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-11-05 20:55:47 +00:00
|
|
|
public Jid getJid() {
|
2014-12-15 16:29:17 +00:00
|
|
|
return this.getAttributeAsJid("jid");
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 16:21:21 +00:00
|
|
|
@Override
|
2016-04-22 19:25:06 +00:00
|
|
|
public List<Tag> getTags(Context context) {
|
2016-06-16 18:38:35 +00:00
|
|
|
ArrayList<Tag> tags = new ArrayList<>();
|
2014-11-16 22:58:30 +00:00
|
|
|
for (Element element : getChildren()) {
|
|
|
|
if (element.getName().equals("group") && element.getContent() != null) {
|
|
|
|
String group = element.getContent();
|
2017-12-05 13:15:10 +00:00
|
|
|
tags.add(new Tag(group, UIHelper.getColorForName(group,true)));
|
2014-11-16 22:58:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return tags;
|
2014-11-16 16:21:21 +00:00
|
|
|
}
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public String getNick() {
|
2015-05-14 12:42:21 +00:00
|
|
|
return this.findChildContent("nick");
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 22:58:30 +00:00
|
|
|
public void setNick(String nick) {
|
|
|
|
Element element = this.findChild("nick");
|
|
|
|
if (element == null) {
|
|
|
|
element = this.addChild("nick");
|
|
|
|
}
|
|
|
|
element.setContent(nick);
|
|
|
|
}
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public boolean autojoin() {
|
2014-12-05 00:54:16 +00:00
|
|
|
return this.getAttributeAsBoolean("autojoin");
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getPassword() {
|
2015-05-14 12:42:21 +00:00
|
|
|
return this.findChildContent("password");
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 22:58:30 +00:00
|
|
|
public void setPassword(String password) {
|
|
|
|
Element element = this.findChild("password");
|
|
|
|
if (element != null) {
|
|
|
|
element.setContent(password);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-22 19:25:06 +00:00
|
|
|
@Override
|
|
|
|
public boolean match(Context context, String needle) {
|
2014-11-16 22:58:30 +00:00
|
|
|
if (needle == null) {
|
|
|
|
return true;
|
|
|
|
}
|
2014-11-17 16:53:19 +00:00
|
|
|
needle = needle.toLowerCase(Locale.US);
|
2014-12-03 09:45:47 +00:00
|
|
|
final Jid jid = getJid();
|
|
|
|
return (jid != null && jid.toString().contains(needle)) ||
|
2014-11-17 16:53:19 +00:00
|
|
|
getDisplayName().toLowerCase(Locale.US).contains(needle) ||
|
2016-04-22 19:25:06 +00:00
|
|
|
matchInTag(context, needle);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 19:25:06 +00:00
|
|
|
private boolean matchInTag(Context context, String needle) {
|
2014-11-17 16:53:19 +00:00
|
|
|
needle = needle.toLowerCase(Locale.US);
|
2016-04-22 19:25:06 +00:00
|
|
|
for (Tag tag : getTags(context)) {
|
2014-11-17 16:53:19 +00:00
|
|
|
if (tag.getName().toLowerCase(Locale.US).contains(needle)) {
|
2014-11-16 22:58:30 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 22:58:30 +00:00
|
|
|
public Account getAccount() {
|
|
|
|
return this.account;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2018-02-10 18:06:31 +00:00
|
|
|
public synchronized Conversation getConversation() {
|
|
|
|
return this.conversation != null ? this.conversation.get() : null;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2018-02-10 18:06:31 +00:00
|
|
|
public synchronized void setConversation(Conversation conversation) {
|
|
|
|
if (this.conversation != null) {
|
|
|
|
this.conversation.clear();
|
|
|
|
}
|
|
|
|
this.conversation = new WeakReference<>(conversation);
|
2014-11-16 22:58:30 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 20:52:35 +00:00
|
|
|
public String getBookmarkName() {
|
2014-10-22 16:38:44 +00:00
|
|
|
return this.getAttribute("name");
|
|
|
|
}
|
|
|
|
|
2015-12-11 18:28:44 +00:00
|
|
|
public boolean setBookmarkName(String name) {
|
|
|
|
String before = getBookmarkName();
|
|
|
|
if (name != null && !name.equals(before)) {
|
|
|
|
this.setAttribute("name", name);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|