conversations-classic/src/main/java/eu/siacs/conversations/entities/Bookmark.java

258 lines
6.9 KiB
Java
Raw Normal View History

2014-10-22 16:38:44 +00:00
package eu.siacs.conversations.entities;
import android.content.Context;
2021-01-23 08:25:34 +00:00
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import java.lang.ref.WeakReference;
2014-11-16 16:21:21 +00:00
import java.util.ArrayList;
2019-09-27 22:32:29 +00:00
import java.util.Collections;
import java.util.HashMap;
2014-11-16 16:21:21 +00:00
import java.util.List;
import java.util.Locale;
2019-09-27 22:32:29 +00:00
import java.util.Map;
2014-10-22 16:38:44 +00:00
2018-06-24 14:33:15 +00:00
import eu.siacs.conversations.utils.StringUtils;
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;
2019-09-27 22:32:29 +00:00
import eu.siacs.conversations.xml.Namespace;
import eu.siacs.conversations.xmpp.InvalidJid;
2020-05-15 15:06:16 +00:00
import eu.siacs.conversations.xmpp.Jid;
2014-10-22 16:38:44 +00:00
public class Bookmark extends Element implements ListItem {
2021-01-23 08:25:34 +00:00
private final Account account;
private WeakReference<Conversation> conversation;
2018-03-11 11:06:07 +00:00
private Jid jid;
2014-10-22 16:38:44 +00:00
public Bookmark(final Account account, final Jid jid) {
2014-10-22 16:38:44 +00:00
super("conference");
2018-03-11 11:06:07 +00:00
this.jid = jid;
2020-05-15 16:44:55 +00:00
this.setAttribute("jid", jid);
2014-10-22 16:38:44 +00:00
this.account = account;
}
private Bookmark(Account account) {
super("conference");
this.account = account;
}
2019-09-28 00:23:15 +00:00
public static Map<Jid, Bookmark> parseFromStorage(Element storage, Account account) {
2019-09-27 22:32:29 +00:00
if (storage == null) {
2019-09-28 00:23:15 +00:00
return Collections.emptyMap();
2019-09-27 22:32:29 +00:00
}
final HashMap<Jid, Bookmark> bookmarks = new HashMap<>();
for (final Element item : storage.getChildren()) {
if (item.getName().equals("conference")) {
final Bookmark bookmark = Bookmark.parse(item, account);
if (bookmark != null) {
2019-09-28 00:23:15 +00:00
final Bookmark old = bookmarks.put(bookmark.jid, bookmark);
2019-09-27 22:32:29 +00:00
if (old != null && old.getBookmarkName() != null && bookmark.getBookmarkName() == null) {
bookmark.setBookmarkName(old.getBookmarkName());
}
}
}
}
2019-09-28 00:23:15 +00:00
return bookmarks;
2019-09-27 22:32:29 +00:00
}
2019-09-28 00:23:15 +00:00
public static Map<Jid, Bookmark> parseFromPubsub(Element pubsub, Account account) {
2019-09-27 22:32:29 +00:00
if (pubsub == null) {
2019-09-28 00:23:15 +00:00
return Collections.emptyMap();
2019-09-27 22:32:29 +00:00
}
final Element items = pubsub.findChild("items");
if (items != null && Namespace.BOOKMARKS2.equals(items.getAttribute("node"))) {
2019-09-28 00:23:15 +00:00
final Map<Jid, Bookmark> bookmarks = new HashMap<>();
2019-09-27 22:32:29 +00:00
for(Element item : items.getChildren()) {
if (item.getName().equals("item")) {
final Bookmark bookmark = Bookmark.parseFromItem(item, account);
if (bookmark != null) {
2019-09-28 00:23:15 +00:00
bookmarks.put(bookmark.jid, bookmark);
2019-09-27 22:32:29 +00:00
}
}
}
return bookmarks;
}
2019-09-28 00:23:15 +00:00
return Collections.emptyMap();
2019-09-27 22:32:29 +00:00
}
2014-10-22 16:38:44 +00:00
public static Bookmark parse(Element element, Account account) {
Bookmark bookmark = new Bookmark(account);
bookmark.setAttributes(element.getAttributes());
bookmark.setChildren(element.getChildren());
bookmark.jid = InvalidJid.getNullForInvalid(bookmark.getAttributeAsJid("jid"));
2019-09-27 22:32:29 +00:00
if (bookmark.jid == null) {
return null;
}
return bookmark;
}
public static Bookmark parseFromItem(Element item, Account account) {
final Element conference = item.findChild("conference", Namespace.BOOKMARKS2);
2019-09-27 22:32:29 +00:00
if (conference == null) {
return null;
}
final Bookmark bookmark = new Bookmark(account);
bookmark.jid = InvalidJid.getNullForInvalid(item.getAttributeAsJid("id"));
if (bookmark.jid == null) {
return null;
}
bookmark.setBookmarkName(conference.getAttribute("name"));
bookmark.setAutojoin(conference.getAttributeAsBoolean("autojoin"));
bookmark.setNick(conference.findChildContent("nick"));
2014-10-22 16:38:44 +00:00
return bookmark;
}
public void setAutojoin(boolean autojoin) {
if (autojoin) {
this.setAttribute("autojoin", "true");
} else {
this.setAttribute("autojoin", "false");
}
}
@Override
public int compareTo(final @NonNull 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() {
final Conversation c = getConversation();
2018-03-23 15:52:05 +00:00
final String name = getBookmarkName();
if (c != null) {
return c.getName().toString();
2018-03-23 15:52:05 +00:00
} else if (printableValue(name, false)) {
return name.trim();
2014-10-22 16:38:44 +00:00
} else {
2016-06-16 18:38:35 +00:00
Jid jid = this.getJid();
2018-03-23 15:52:05 +00:00
return jid != null && jid.getLocal() != null ? jid.getLocal() : "";
2014-10-22 16:38:44 +00:00
}
}
2018-03-23 15:52:05 +00:00
public static boolean printableValue(@Nullable String value, boolean permitNone) {
return value != null && !value.trim().isEmpty() && (permitNone || !"None".equals(value));
}
public static boolean printableValue(@Nullable String value) {
return printableValue(value, true);
}
2014-10-22 16:38:44 +00:00
@Override
public Jid getJid() {
2018-03-11 11:06:07 +00:00
return this.jid;
2014-10-22 16:38:44 +00:00
}
public Jid getFullJid() {
final String nick = getNick();
return jid == null || nick == null || nick.trim().isEmpty() ? jid : jid.withResource(nick);
}
2014-11-16 16:21:21 +00:00
@Override
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() {
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() {
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);
}
}
@Override
public boolean match(Context context, String needle) {
2014-11-16 22:58:30 +00:00
if (needle == null) {
return true;
}
needle = needle.toLowerCase(Locale.US);
2014-12-03 09:45:47 +00:00
final Jid jid = getJid();
return (jid != null && jid.toString().contains(needle)) ||
getDisplayName().toLowerCase(Locale.US).contains(needle) ||
matchInTag(context, needle);
2014-10-22 16:38:44 +00:00
}
private boolean matchInTag(Context context, String needle) {
needle = needle.toLowerCase(Locale.US);
for (Tag tag : getTags(context)) {
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
}
public synchronized Conversation getConversation() {
return this.conversation != null ? this.conversation.get() : null;
2014-10-22 16:38:44 +00:00
}
public synchronized void setConversation(Conversation conversation) {
if (this.conversation != null) {
this.conversation.clear();
}
if (conversation == null) {
this.conversation = null;
} else {
this.conversation = new WeakReference<>(conversation);
conversation.getMucOptions().notifyOfBookmarkNick(getNick());
}
2014-11-16 22:58:30 +00:00
}
public String getBookmarkName() {
2014-10-22 16:38:44 +00:00
return this.getAttribute("name");
}
public boolean setBookmarkName(String name) {
String before = getBookmarkName();
2018-06-24 14:33:15 +00:00
if (name != null) {
this.setAttribute("name", name);
} else {
2018-06-24 14:33:15 +00:00
this.removeAttribute("name");
}
2018-06-24 14:33:15 +00:00
return StringUtils.changed(before, name);
}
@Override
public int getAvatarBackgroundColor() {
return UIHelper.getColorForName(jid != null ? jid.asBareJid().toString() : getDisplayName());
}
@Override
public String getAvatarName() {
return getDisplayName();
}
2014-10-22 16:38:44 +00:00
}