2017-03-02 14:37:32 +00:00
|
|
|
using Gee;
|
|
|
|
|
|
|
|
namespace Dino.Entities {
|
2017-03-22 16:15:06 +00:00
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
public class Account : Object {
|
|
|
|
|
|
|
|
public int id { get; set; }
|
|
|
|
public string localpart { get { return bare_jid.localpart; } }
|
|
|
|
public string domainpart { get { return bare_jid.domainpart; } }
|
|
|
|
public string resourcepart { get; set; }
|
|
|
|
public Jid bare_jid { get; private set; }
|
|
|
|
public string? password { get; set; }
|
|
|
|
public string display_name {
|
2017-03-22 16:15:06 +00:00
|
|
|
owned get { return alias ?? bare_jid.to_string(); }
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
public string? alias { get; set; }
|
2017-03-22 16:15:06 +00:00
|
|
|
public bool enabled { get; set; default = false; }
|
|
|
|
|
|
|
|
private Database? db;
|
2017-03-02 14:37:32 +00:00
|
|
|
|
2017-03-22 16:15:06 +00:00
|
|
|
public Account(Jid bare_jid, string? resourcepart, string? password, string? alias) {
|
|
|
|
this.id = -1;
|
|
|
|
this.resourcepart = resourcepart ?? "dino." + Random.next_int().to_string("%x");
|
|
|
|
this.bare_jid = bare_jid;
|
|
|
|
this.password = password;
|
|
|
|
this.alias = alias;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Account.from_row(Database db, Qlite.Row row) {
|
|
|
|
this.db = db;
|
|
|
|
id = row[db.account.id];
|
|
|
|
resourcepart = row[db.account.resourcepart];
|
|
|
|
bare_jid = new Jid(row[db.account.bare_jid]);
|
|
|
|
password = row[db.account.password];
|
|
|
|
alias = row[db.account.alias];
|
|
|
|
enabled = row[db.account.enabled];
|
|
|
|
|
|
|
|
notify.connect(on_update);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void persist(Database db) {
|
|
|
|
this.db = db;
|
|
|
|
id = (int) db.account.insert()
|
|
|
|
.value(db.account.bare_jid, bare_jid.to_string())
|
|
|
|
.value(db.account.resourcepart, resourcepart)
|
|
|
|
.value(db.account.password, password)
|
|
|
|
.value(db.account.alias, alias)
|
|
|
|
.value(db.account.enabled, enabled)
|
|
|
|
.perform();
|
|
|
|
|
|
|
|
notify.connect(on_update);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void remove() {
|
|
|
|
db.account.delete().with(db.account.bare_jid, "=", bare_jid.to_string()).perform();
|
|
|
|
notify.disconnect(on_update);
|
|
|
|
id = -1;
|
|
|
|
db = null;
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public bool equals(Account acc) {
|
|
|
|
return equals_func(this, acc);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static bool equals_func(Account acc1, Account acc2) {
|
|
|
|
return acc1.bare_jid.to_string() == acc2.bare_jid.to_string();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static uint hash_func(Account acc) {
|
|
|
|
return acc.bare_jid.to_string().hash();
|
|
|
|
}
|
2017-03-22 16:15:06 +00:00
|
|
|
|
|
|
|
private void on_update(Object o, ParamSpec sp) {
|
|
|
|
db.account.update().with(db.account.id, "=", id)
|
|
|
|
.set(db.account.bare_jid, bare_jid.to_string())
|
|
|
|
.set(db.account.resourcepart, resourcepart)
|
|
|
|
.set(db.account.password, password)
|
|
|
|
.set(db.account.alias, alias)
|
|
|
|
.set(db.account.enabled, enabled)
|
|
|
|
.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
|
|
|
}
|