Conversations/src/eu/siacs/conversations/entities/Bookmark.java

137 lines
3.1 KiB
Java
Raw Normal View History

2014-07-14 11:47:42 +02:00
package eu.siacs.conversations.entities;
import java.util.Locale;
import android.content.Context;
import android.graphics.Bitmap;
import eu.siacs.conversations.utils.UIHelper;
2014-07-14 11:47:42 +02:00
import eu.siacs.conversations.xml.Element;
public class Bookmark implements ListItem {
2014-08-31 16:28:21 +02:00
2014-07-14 11:47:42 +02:00
private Account account;
private String jid;
private String nick;
private String name;
2014-07-14 11:47:42 +02:00
private boolean autojoin;
private Conversation mJoinedConversation;
2014-08-31 16:28:21 +02:00
2014-07-15 14:32:19 +02:00
public Bookmark(Account account, String jid) {
2014-07-14 11:47:42 +02:00
this.account = account;
2014-07-15 14:32:19 +02:00
this.jid = jid;
2014-07-14 11:47:42 +02:00
}
public static Bookmark parse(Element element, Account account) {
2014-08-31 16:28:21 +02:00
Bookmark bookmark = new Bookmark(account, element.getAttribute("jid"));
bookmark.setName(element.getAttribute("name"));
2014-07-14 11:47:42 +02:00
String autojoin = element.getAttribute("autojoin");
2014-08-31 16:28:21 +02:00
if (autojoin != null
&& (autojoin.equals("true") || autojoin.equals("1"))) {
2014-07-14 11:47:42 +02:00
bookmark.setAutojoin(true);
} else {
bookmark.setAutojoin(false);
}
Element nick = element.findChild("nick");
2014-08-31 16:28:21 +02:00
if (nick != null) {
2014-07-14 11:47:42 +02:00
bookmark.setNick(nick.getContent());
}
return bookmark;
}
public void setAutojoin(boolean autojoin) {
this.autojoin = autojoin;
}
2014-08-31 16:28:21 +02:00
public void setName(String name) {
this.name = name;
2014-07-14 11:47:42 +02:00
}
2014-08-31 16:28:21 +02:00
2014-07-14 11:47:42 +02:00
public void setNick(String nick) {
this.nick = nick;
}
@Override
public int compareTo(ListItem another) {
2014-08-31 16:28:21 +02:00
return this.getDisplayName().compareToIgnoreCase(
another.getDisplayName());
2014-07-14 11:47:42 +02:00
}
@Override
public String getDisplayName() {
2014-08-31 16:28:21 +02:00
if (this.mJoinedConversation != null
&& (this.mJoinedConversation.getMucOptions().getSubject() != null)) {
2014-07-15 14:32:19 +02:00
return this.mJoinedConversation.getMucOptions().getSubject();
2014-08-31 16:28:21 +02:00
} else if (name != null) {
return name;
2014-07-14 11:47:42 +02:00
} else {
return this.jid.split("@")[0];
}
}
@Override
public String getJid() {
return this.jid.toLowerCase(Locale.US);
}
2014-08-31 16:28:21 +02:00
2014-07-14 11:47:42 +02:00
public String getNick() {
return this.nick;
}
2014-08-31 16:28:21 +02:00
2014-07-14 11:47:42 +02:00
public boolean autojoin() {
return autojoin;
}
public boolean match(String needle) {
return needle == null
|| getJid().contains(needle.toLowerCase(Locale.US))
2014-08-31 16:28:21 +02:00
|| getDisplayName().toLowerCase(Locale.US).contains(
needle.toLowerCase(Locale.US));
2014-07-14 11:47:42 +02:00
}
public Account getAccount() {
return this.account;
}
@Override
public Bitmap getImage(int dpSize, Context context) {
2014-08-31 16:28:21 +02:00
if (this.mJoinedConversation == null) {
return UIHelper.getContactPicture(getDisplayName(), dpSize,
context, false);
} else {
2014-08-31 16:28:21 +02:00
return UIHelper.getContactPicture(this.mJoinedConversation, dpSize,
context, false);
}
}
public void setConversation(Conversation conversation) {
this.mJoinedConversation = conversation;
}
public String getName() {
return name;
}
2014-08-31 16:28:21 +02:00
2014-07-15 14:32:19 +02:00
public Element toElement() {
Element element = new Element("conference");
element.setAttribute("jid", this.getJid());
if (this.getName() != null) {
element.setAttribute("name", this.getName());
}
if (this.autojoin) {
element.setAttribute("autojoin", "true");
} else {
element.setAttribute("autojoin", "false");
}
if (this.nick != null) {
element.addChild("nick").setContent(this.nick);
}
return element;
}
public void unregisterConversation() {
if (this.mJoinedConversation != null) {
this.mJoinedConversation.deregisterWithBookmark();
}
}
2014-07-14 11:47:42 +02:00
}