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-01-25 19:33:12 +01:00
|
|
|
|
|
|
|
public static final String NAME = "name";
|
|
|
|
public static final String PHOTO_URI = "profilePhotoUri";
|
|
|
|
public static final String ACCOUNT = "accountUuid";
|
|
|
|
public static final String CONTACT = "contactJid";
|
|
|
|
public static final String STATUS = "status";
|
|
|
|
public static final String CREATED = "created";
|
|
|
|
|
2014-01-24 23:58:51 +01:00
|
|
|
private String name;
|
|
|
|
private String profilePhotoUri;
|
|
|
|
private String accountUuid;
|
|
|
|
private String contactJid;
|
|
|
|
private int status;
|
2014-01-25 19:33:12 +01:00
|
|
|
private long created;
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-01-26 03:27:55 +01:00
|
|
|
private transient List<Message> messages = null;
|
2014-01-24 23:58:51 +01:00
|
|
|
|
2014-02-01 01:25:56 +01:00
|
|
|
public Conversation(String name, String profilePhoto, Account account,
|
2014-01-24 23:58:51 +01:00
|
|
|
String contactJid) {
|
2014-02-01 01:25:56 +01:00
|
|
|
this(java.util.UUID.randomUUID().toString(), name, profilePhoto, account.getUuid(), contactJid, System
|
2014-01-25 19:33:12 +01:00
|
|
|
.currentTimeMillis(), STATUS_AVAILABLE);
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public Conversation(String uuid, String name, String profilePhoto,
|
2014-01-25 19:33:12 +01:00
|
|
|
String accountUuid, String contactJid, long created, int status) {
|
2014-01-24 23:58:51 +01:00
|
|
|
this.uuid = uuid;
|
|
|
|
this.name = name;
|
|
|
|
this.profilePhotoUri = profilePhoto;
|
|
|
|
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-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() {
|
|
|
|
return this.name;
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getProfilePhotoString() {
|
|
|
|
return this.profilePhotoUri;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAccountUuid() {
|
|
|
|
return this.accountUuid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getContactJid() {
|
|
|
|
return this.contactJid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Uri getProfilePhotoUri() {
|
|
|
|
if (this.profilePhotoUri != null) {
|
|
|
|
return Uri.parse(profilePhotoUri);
|
|
|
|
}
|
|
|
|
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);
|
|
|
|
values.put(PHOTO_URI, profilePhotoUri);
|
|
|
|
values.put(ACCOUNT, accountUuid);
|
|
|
|
values.put(CONTACT, contactJid);
|
|
|
|
values.put(CREATED, created);
|
|
|
|
values.put(STATUS, status);
|
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(PHOTO_URI)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(ACCOUNT)),
|
|
|
|
cursor.getString(cursor.getColumnIndex(CONTACT)),
|
|
|
|
cursor.getLong(cursor.getColumnIndex(CREATED)),
|
|
|
|
cursor.getInt(cursor.getColumnIndex(STATUS)));
|
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-01-24 23:58:51 +01:00
|
|
|
}
|