2017-03-02 14:37:32 +00:00
|
|
|
namespace Dino.Entities {
|
2017-03-22 16:15:06 +00:00
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
public class Conversation : Object {
|
|
|
|
|
|
|
|
public signal void object_updated(Conversation conversation);
|
|
|
|
|
2017-03-09 14:34:32 +00:00
|
|
|
public enum Type {
|
|
|
|
CHAT,
|
2017-03-30 23:17:01 +00:00
|
|
|
GROUPCHAT,
|
|
|
|
GROUPCHAT_PM
|
2017-03-09 14:34:32 +00:00
|
|
|
}
|
2017-03-02 14:37:32 +00:00
|
|
|
|
|
|
|
public int id { get; set; }
|
|
|
|
public Account account { get; private set; }
|
|
|
|
public Jid counterpart { get; private set; }
|
2017-03-22 16:15:06 +00:00
|
|
|
public bool active { get; set; default = false; }
|
2017-03-24 21:57:05 +00:00
|
|
|
private DateTime? _last_active;
|
|
|
|
public DateTime? last_active {
|
|
|
|
get { return _last_active; }
|
|
|
|
set {
|
|
|
|
if (_last_active == null ||
|
|
|
|
(value != null && value.difference(_last_active) > 0)) {
|
|
|
|
_last_active = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-22 16:15:06 +00:00
|
|
|
public Encryption encryption { get; set; default = Encryption.NONE; }
|
|
|
|
public Type type_ { get; set; }
|
2017-03-02 14:37:32 +00:00
|
|
|
public Message read_up_to { get; set; }
|
|
|
|
|
2017-03-22 16:15:06 +00:00
|
|
|
private Database? db;
|
|
|
|
|
|
|
|
public Conversation(Jid jid, Account account, Type type) {
|
2017-03-02 14:37:32 +00:00
|
|
|
this.account = account;
|
2017-03-30 23:17:01 +00:00
|
|
|
this.counterpart = jid;
|
2017-03-22 16:15:06 +00:00
|
|
|
this.type_ = type;
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
2017-03-22 16:15:06 +00:00
|
|
|
public Conversation.from_row(Database db, Qlite.Row row) {
|
|
|
|
this.db = db;
|
|
|
|
|
|
|
|
id = row[db.conversation.id];
|
|
|
|
account = db.get_account_by_id(row[db.conversation.account_id]);
|
2017-03-30 23:17:01 +00:00
|
|
|
string? resource = row[db.conversation.resource];
|
|
|
|
string jid = db.get_jid_by_id(row[db.conversation.jid_id]);
|
|
|
|
counterpart = resource != null ? new Jid.with_resource(jid, resource) : new Jid(jid);
|
2017-03-22 16:15:06 +00:00
|
|
|
active = row[db.conversation.active];
|
|
|
|
int64? last_active = row[db.conversation.last_active];
|
2017-03-24 21:57:05 +00:00
|
|
|
if (last_active != null) this.last_active = new DateTime.from_unix_local(last_active);
|
2017-03-22 16:15:06 +00:00
|
|
|
type_ = (Conversation.Type) row[db.conversation.type_];
|
|
|
|
encryption = (Encryption) row[db.conversation.encryption];
|
|
|
|
int? read_up_to = row[db.conversation.read_up_to];
|
|
|
|
if (read_up_to != null) this.read_up_to = db.get_message_by_id(read_up_to);
|
|
|
|
|
|
|
|
notify.connect(on_update);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void persist(Database db) {
|
|
|
|
this.db = db;
|
|
|
|
var insert = db.conversation.insert()
|
|
|
|
.value(db.conversation.account_id, account.id)
|
2017-03-30 23:17:01 +00:00
|
|
|
.value(db.conversation.jid_id, db.get_jid_id(counterpart))
|
2017-03-22 16:15:06 +00:00
|
|
|
.value(db.conversation.type_, type_)
|
|
|
|
.value(db.conversation.encryption, encryption)
|
|
|
|
//.value(conversation.read_up_to, new_conversation.read_up_to)
|
|
|
|
.value(db.conversation.active, active);
|
2017-03-30 23:17:01 +00:00
|
|
|
if (counterpart.is_full()) {
|
|
|
|
insert.value(db.conversation.resource, counterpart.resourcepart);
|
|
|
|
}
|
2017-03-22 16:15:06 +00:00
|
|
|
if (last_active != null) {
|
|
|
|
insert.value(db.conversation.last_active, (long) last_active.to_unix());
|
|
|
|
}
|
|
|
|
id = (int) insert.perform();
|
|
|
|
notify.connect(on_update);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public bool equals(Conversation? conversation) {
|
|
|
|
if (conversation == null) return false;
|
|
|
|
return equals_func(this, conversation);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static bool equals_func(Conversation conversation1, Conversation conversation2) {
|
|
|
|
return conversation1.counterpart.equals(conversation2.counterpart) && conversation1.account.equals(conversation2.account);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static uint hash_func(Conversation conversation) {
|
|
|
|
return conversation.counterpart.to_string().hash() ^ conversation.account.bare_jid.to_string().hash();
|
|
|
|
}
|
2017-03-22 16:15:06 +00:00
|
|
|
|
|
|
|
private void on_update(Object o, ParamSpec sp) {
|
|
|
|
var update = db.conversation.update().with(db.conversation.jid_id, "=", db.get_jid_id(counterpart))
|
2017-03-24 09:40:48 +00:00
|
|
|
.with(db.conversation.account_id, "=", account.id);
|
2017-04-04 13:47:00 +00:00
|
|
|
if (counterpart.resourcepart != null) {
|
|
|
|
update.with(db.conversation.resource, "=", counterpart.resourcepart);
|
|
|
|
} else {
|
|
|
|
update.with_null(db.conversation.resource);
|
|
|
|
}
|
2017-03-24 09:40:48 +00:00
|
|
|
switch (sp.name) {
|
2017-03-24 21:57:05 +00:00
|
|
|
case "type-":
|
2017-03-24 09:40:48 +00:00
|
|
|
update.set(db.conversation.type_, type_); break;
|
|
|
|
case "encryption":
|
|
|
|
update.set(db.conversation.encryption, encryption); break;
|
2017-03-24 21:57:05 +00:00
|
|
|
case "read-up-to":
|
2017-03-30 23:17:01 +00:00
|
|
|
if (read_up_to != null) {
|
|
|
|
update.set(db.conversation.read_up_to, read_up_to.id);
|
|
|
|
} else {
|
|
|
|
update.set_null(db.conversation.read_up_to);
|
|
|
|
}
|
|
|
|
break;
|
2017-03-24 09:40:48 +00:00
|
|
|
case "active":
|
|
|
|
update.set(db.conversation.active, active); break;
|
2017-03-24 21:57:05 +00:00
|
|
|
case "last-active":
|
2017-03-24 09:40:48 +00:00
|
|
|
if (last_active != null) {
|
|
|
|
update.set(db.conversation.last_active, (long) last_active.to_unix());
|
|
|
|
} else {
|
|
|
|
update.set_null(db.conversation.last_active);
|
|
|
|
}
|
|
|
|
break;
|
2017-03-22 16:15:06 +00:00
|
|
|
}
|
|
|
|
update.perform();
|
|
|
|
}
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
2017-03-22 16:15:06 +00:00
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|