2014-01-24 23:58:51 +01:00
|
|
|
package de.gultsch.chat.entities;
|
|
|
|
|
2014-01-26 03:27:55 +01:00
|
|
|
import java.util.ArrayList;
|
2014-01-25 19:33:12 +01:00
|
|
|
import java.util.List;
|
2014-01-24 23:58:51 +01:00
|
|
|
|
|
|
|
import android.content.ContentValues;
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.net.Uri;
|
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
public class Conversation extends AbstractEntity {
|
2014-01-24 23:58:51 +01:00
|
|
|
|
|
|
|
private static final long serialVersionUID = -6727528868973996739L;
|
2014-01-26 03:27:55 +01:00
|
|
|
|
|
|
|
public static final String TABLENAME = "conversations";
|
|
|
|
|
2014-01-24 23:58:51 +01:00
|
|
|
public static final int STATUS_AVAILABLE = 0;
|
|
|
|
public static final int STATUS_ARCHIVED = 1;
|
|
|
|
public static final int STATUS_DELETED = 2;
|
2014-02-05 22:33:39 +01:00
|
|
|
|
|
|
|
public static final int MODE_MULTI = 1;
|
|
|
|
public static final int MODE_SINGLE = 0;
|
2014-01-25 19:33:12 +01:00
|
|
|
|
|
|
|
public static final String NAME = "name";
|
|
|
|
public static final String ACCOUNT = "accountUuid";
|
2014-02-10 15:24:34 +01:00
|
|
|
public static final String CONTACT = "contactUuid";
|
|
|
|
public static final String CONTACTJID = "contactJid";
|
2014-01-25 19:33:12 +01:00
|
|
|
public static final String STATUS = "status";
|
|
|
|
public static final String CREATED = "created";
|
2014-02-05 22:33:39 +01:00
|
|
|
public static final String MODE = "mode";
|
2014-01-25 19:33:12 +01:00
|
|
|
|
2014-01-24 23:58:51 +01:00
|
|
|
private String name;
|
2014-02-10 15:24:34 +01:00
|
|
|
private String contactUuid;
|
2014-01-24 23:58:51 +01:00
|
|
|
private String accountUuid;
|
|
|
|
private String contactJid;
|
|
|
|
private int status;
|
2014-01-25 19:33:12 +01:00
|
|
|
private long created;
|
2014-02-05 22:33:39 +01:00
|
|
|
private int mode;
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-01-26 03:27:55 +01:00
|
|
|
private transient List<Message> messages = null;
|
2014-02-01 15:07:20 +01:00
|
|
|
private transient Account account = null;
|
2014-02-10 15:24:34 +01:00
|
|
|
private transient Contact contact;
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-02-10 15:24:34 +01:00
|
|
|
public Conversation(String name, Account account,
|
2014-02-05 22:33:39 +01:00
|
|
|
String contactJid, int mode) {
|
2014-02-10 15:24:34 +01:00
|
|
|
this(java.util.UUID.randomUUID().toString(), name, null, account.getUuid(), contactJid, System
|
2014-02-05 22:33:39 +01:00
|
|
|
.currentTimeMillis(), STATUS_AVAILABLE,mode);
|
2014-02-01 15:07:20 +01:00
|
|
|
this.account = account;
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
2014-02-10 15:24:34 +01:00
|
|
|
public Conversation(String uuid, String name, String contactUuid,
|
2014-02-05 22:33:39 +01:00
|
|
|
String accountUuid, String contactJid, long created, int status, int mode) {
|
2014-01-24 23:58:51 +01:00
|
|
|
this.uuid = uuid;
|
|
|
|
this.name = name;
|
2014-02-10 15:24:34 +01:00
|
|
|
this.contactUuid = contactUuid;
|
2014-01-24 23:58:51 +01:00
|
|
|
this.accountUuid = accountUuid;
|
|
|
|
this.contactJid = contactJid;
|
2014-01-25 19:33:12 +01:00
|
|
|
this.created = created;
|
2014-01-24 23:58:51 +01:00
|
|
|
this.status = status;
|
2014-02-05 22:33:39 +01:00
|
|
|
this.mode = mode;
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
public List<Message> getMessages() {
|
2014-01-26 03:27:55 +01:00
|
|
|
if (messages == null) this.messages = new ArrayList<Message>(); //prevent null pointer
|
2014-01-27 20:40:42 +01:00
|
|
|
|
|
|
|
//populate with Conversation (this)
|
|
|
|
|
|
|
|
for(Message msg : messages) {
|
|
|
|
msg.setConversation(this);
|
|
|
|
}
|
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
return messages;
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
2014-01-27 20:40:42 +01:00
|
|
|
|
|
|
|
public String getLatestMessage() {
|
|
|
|
if ((this.messages == null)||(this.messages.size()==0)) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return this.messages.get(this.messages.size() - 1).getBody();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getLatestMessageDate() {
|
|
|
|
if ((this.messages == null)||(this.messages.size()==0)) {
|
|
|
|
return this.getCreated();
|
|
|
|
} else {
|
|
|
|
return this.messages.get(this.messages.size() - 1).getTimeSent();
|
|
|
|
}
|
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
public void setMessages(List<Message> msgs) {
|
|
|
|
this.messages = msgs;
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
public String getName() {
|
2014-02-10 15:24:34 +01:00
|
|
|
if (this.contact!=null) {
|
|
|
|
return this.contact.getDisplayName();
|
|
|
|
} else {
|
|
|
|
return this.name;
|
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getProfilePhotoString() {
|
2014-02-10 15:24:34 +01:00
|
|
|
if (this.contact==null) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return this.contact.getProfilePhoto();
|
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getAccountUuid() {
|
|
|
|
return this.accountUuid;
|
|
|
|
}
|
2014-02-01 15:07:20 +01:00
|
|
|
|
|
|
|
public Account getAccount() {
|
|
|
|
return this.account;
|
|
|
|
}
|
2014-02-10 15:24:34 +01:00
|
|
|
|
|
|
|
public Contact getContact() {
|
|
|
|
return this.contact;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContact(Contact contact) {
|
|
|
|
this.contact = contact;
|
|
|
|
this.contactUuid = contact.getUuid();
|
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
public void setAccount(Account account) {
|
|
|
|
this.account = account;
|
|
|
|
}
|
|
|
|
|
2014-01-24 23:58:51 +01:00
|
|
|
public String getContactJid() {
|
|
|
|
return this.contactJid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Uri getProfilePhotoUri() {
|
2014-02-10 15:24:34 +01:00
|
|
|
if (this.getProfilePhotoString() != null) {
|
|
|
|
return Uri.parse(this.getProfilePhotoString());
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getStatus() {
|
|
|
|
return this.status;
|
|
|
|
}
|
2014-01-26 03:27:55 +01:00
|
|
|
|
|
|
|
public long getCreated() {
|
|
|
|
return this.created;
|
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
|
|
|
|
public ContentValues getContentValues() {
|
|
|
|
ContentValues values = new ContentValues();
|
2014-01-25 19:33:12 +01:00
|
|
|
values.put(UUID, uuid);
|
|
|
|
values.put(NAME, name);
|
2014-02-10 15:24:34 +01:00
|
|
|
values.put(CONTACT, contact.getUuid());
|
2014-01-25 19:33:12 +01:00
|
|
|
values.put(ACCOUNT, accountUuid);
|
2014-02-10 15:24:34 +01:00
|
|
|
values.put(CONTACTJID, contactJid);
|
2014-01-25 19:33:12 +01:00
|
|
|
values.put(CREATED, created);
|
|
|
|
values.put(STATUS, status);
|
2014-02-05 22:33:39 +01:00
|
|
|
values.put(MODE,mode);
|
2014-01-24 23:58:51 +01:00
|
|
|
return values;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Conversation fromCursor(Cursor cursor) {
|
2014-01-25 19:33:12 +01:00
|
|
|
return new Conversation(cursor.getString(cursor.getColumnIndex(UUID)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(NAME)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(CONTACT)),
|
2014-02-10 15:24:34 +01:00
|
|
|
cursor.getString(cursor.getColumnIndex(ACCOUNT)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(CONTACTJID)),
|
2014-01-25 19:33:12 +01:00
|
|
|
cursor.getLong(cursor.getColumnIndex(CREATED)),
|
2014-02-05 22:33:39 +01:00
|
|
|
cursor.getInt(cursor.getColumnIndex(STATUS)),
|
|
|
|
cursor.getInt(cursor.getColumnIndex(MODE)));
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
2014-01-27 20:40:42 +01:00
|
|
|
|
|
|
|
public void setStatus(int status) {
|
|
|
|
this.status = status;
|
|
|
|
}
|
2014-02-05 22:33:39 +01:00
|
|
|
|
|
|
|
public int getMode() {
|
|
|
|
return this.mode;
|
|
|
|
}
|
2014-02-07 16:50:29 +01:00
|
|
|
|
|
|
|
public void setMode(int mode) {
|
|
|
|
this.mode = mode;
|
|
|
|
}
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|