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-06-16 12:29:02 +00:00
|
|
|
public Message? read_up_to { get; set; }
|
2017-03-02 14:37:32 +00:00
|
|
|
|
2017-05-30 20:31:05 +00:00
|
|
|
public enum NotifySetting { DEFAULT, ON, OFF, HIGHLIGHT }
|
|
|
|
public NotifySetting notify_setting { get; set; default = NotifySetting.DEFAULT; }
|
|
|
|
|
|
|
|
public enum Setting { DEFAULT, ON, OFF }
|
|
|
|
public Setting send_typing { get; set; default = Setting.DEFAULT; }
|
|
|
|
|
|
|
|
public Setting send_marker { get; set; default = Setting.DEFAULT; }
|
|
|
|
|
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);
|
2017-05-30 20:31:05 +00:00
|
|
|
notify_setting = (NotifySetting) row[db.conversation.notification];
|
|
|
|
send_typing = (Setting) row[db.conversation.send_typing];
|
|
|
|
send_marker = (Setting) row[db.conversation.send_marker];
|
2017-03-22 16:15:06 +00:00
|
|
|
|
|
|
|
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)
|
2017-05-30 20:31:05 +00:00
|
|
|
.value(db.conversation.read_up_to, read_up_to.id)
|
2017-03-22 16:15:06 +00:00
|
|
|
.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());
|
|
|
|
}
|
2017-05-30 20:31:05 +00:00
|
|
|
insert.value(db.conversation.notification, notify_setting);
|
|
|
|
insert.value(db.conversation.send_typing, send_typing);
|
|
|
|
insert.value(db.conversation.send_marker, send_marker);
|
2017-03-22 16:15:06 +00:00
|
|
|
id = (int) insert.perform();
|
|
|
|
notify.connect(on_update);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
2017-05-30 20:31:05 +00:00
|
|
|
public NotifySetting get_notification_setting(StreamInteractor stream_interactor) {
|
|
|
|
Xmpp.Core.XmppStream? stream = stream_interactor.get_stream(account);
|
|
|
|
if (notify_setting != NotifySetting.DEFAULT) return notify_setting;
|
|
|
|
if (!Settings.instance().notifications) return NotifySetting.OFF;
|
|
|
|
if (type_ == Type.GROUPCHAT) {
|
|
|
|
bool members_only = stream.get_flag(Xmpp.Xep.Muc.Flag.IDENTITY).has_room_feature(counterpart.bare_jid.to_string(), Xmpp.Xep.Muc.Feature.MEMBERS_ONLY);
|
|
|
|
return members_only ? NotifySetting.ON : NotifySetting.HIGHLIGHT;
|
|
|
|
} else {
|
|
|
|
return NotifySetting.ON;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Setting get_send_typing_setting() {
|
|
|
|
if (send_typing != Setting.DEFAULT) return send_typing;
|
|
|
|
return Settings.instance().send_typing ? Setting.ON : Setting.OFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Setting get_send_marker_setting() {
|
|
|
|
if (send_marker != Setting.DEFAULT) return send_marker;
|
|
|
|
return Settings.instance().send_marker ? Setting.ON : Setting.OFF;
|
|
|
|
}
|
|
|
|
|
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) {
|
2017-04-23 08:23:11 +00:00
|
|
|
var update = db.conversation.update().with(db.conversation.id, "=", id);
|
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-05-30 20:31:05 +00:00
|
|
|
case "notify-setting":
|
|
|
|
update.set(db.conversation.notification, notify_setting); break;
|
|
|
|
case "send-typing":
|
|
|
|
update.set(db.conversation.send_typing, send_typing); break;
|
|
|
|
case "send-marker":
|
|
|
|
update.set(db.conversation.send_marker, send_marker); 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-06-16 12:29:02 +00:00
|
|
|
}
|