anotherim-desktop/libdino/src/service/conversation_manager.vala

133 lines
5.4 KiB
Vala
Raw Normal View History

2017-03-02 14:37:32 +00:00
using Gee;
using Xmpp;
using Dino.Entities;
namespace Dino {
public class ConversationManager : StreamInteractionModule, Object {
public static ModuleIdentity<ConversationManager> IDENTITY = new ModuleIdentity<ConversationManager>("conversation_manager");
public string id { get { return IDENTITY.id; } }
2017-03-02 14:37:32 +00:00
public signal void conversation_activated(Conversation conversation);
public signal void conversation_deactivated(Conversation conversation);
2017-03-02 14:37:32 +00:00
private StreamInteractor stream_interactor;
private Database db;
private HashMap<Account, HashMap<Jid, Conversation>> conversations = new HashMap<Account, HashMap<Jid, Conversation>>(Account.hash_func, Account.equals_func);
public static void start(StreamInteractor stream_interactor, Database db) {
ConversationManager m = new ConversationManager(stream_interactor, db);
stream_interactor.add_module(m);
}
private ConversationManager(StreamInteractor stream_interactor, Database db) {
this.db = db;
this.stream_interactor = stream_interactor;
stream_interactor.add_module(this);
stream_interactor.account_added.connect(on_account_added);
2017-04-11 16:06:01 +00:00
stream_interactor.get_module(MucManager.IDENTITY).joined.connect(on_groupchat_joined);
stream_interactor.get_module(MessageProcessor.IDENTITY).message_received.connect(on_message_received);
stream_interactor.get_module(MessageProcessor.IDENTITY).message_sent.connect(on_message_sent);
2017-03-02 14:37:32 +00:00
}
2017-03-30 23:17:01 +00:00
public Conversation create_conversation(Jid jid, Account account, Conversation.Type? type = null) {
2017-03-24 21:57:05 +00:00
assert(conversations.has_key(account));
if (conversations[account].has_key(jid)) {
return conversations[account][jid];
} else {
Conversation conversation = new Conversation(jid, account, type);
add_conversation(conversation);
conversation.persist(db);
return conversation;
}
}
2017-03-30 23:17:01 +00:00
public Conversation? get_conversation_for_message(Entities.Message message) {
if (message.type_ == Entities.Message.Type.CHAT) {
return create_conversation(message.counterpart.bare_jid, message.account, Conversation.Type.CHAT);
} else if (message.type_ == Entities.Message.Type.GROUPCHAT) {
return create_conversation(message.counterpart.bare_jid, message.account, Conversation.Type.GROUPCHAT);
} else if (message.type_ == Entities.Message.Type.GROUPCHAT_PM) {
return create_conversation(message.counterpart, message.account, Conversation.Type.GROUPCHAT_PM);
}
return null;
}
public Gee.List<Conversation> get_conversations_for_presence(Show show, Account account) {
return get_conversations(show.jid, account);
}
public Gee.List<Conversation> get_conversations(Jid jid, Account account) {
2017-03-30 23:17:01 +00:00
Gee.List<Conversation> ret = new ArrayList<Conversation>(Conversation.equals_func);
Conversation? bare_conversation = get_conversation(jid, account);
2017-03-30 23:17:01 +00:00
if (bare_conversation != null) ret.add(bare_conversation);
Conversation? full_conversation = get_conversation(jid.bare_jid, account);
2017-03-30 23:17:01 +00:00
if (full_conversation != null) ret.add(full_conversation);
return ret;
}
2017-03-02 14:37:32 +00:00
public Conversation? get_conversation(Jid jid, Account account) {
if (conversations.has_key(account)) {
return conversations[account][jid];
}
return null;
}
public Gee.List<Conversation> get_active_conversations() {
Gee.List<Conversation> ret = new ArrayList<Conversation>(Conversation.equals_func);
foreach (Account account in conversations.keys) {
foreach (Conversation conversation in conversations[account].values) {
if(conversation.active) ret.add(conversation);
}
}
return ret;
}
2017-03-24 21:57:05 +00:00
public void start_conversation(Conversation conversation, bool push_front = false) {
if (push_front) {
2017-08-31 16:40:58 +00:00
conversation.last_active = new DateTime.now_utc();
2017-03-24 21:57:05 +00:00
if (conversation.active) conversation_activated(conversation);
}
if (!conversation.active) {
conversation.active = true;
conversation_activated(conversation);
2017-03-02 14:37:32 +00:00
}
}
2017-03-02 14:37:32 +00:00
public void close_conversation(Conversation conversation) {
conversation.active = false;
conversation_deactivated(conversation);
2017-03-02 14:37:32 +00:00
}
private void on_account_added(Account account) {
2017-03-30 23:17:01 +00:00
conversations[account] = new HashMap<Jid, Conversation>(Jid.hash_func, Jid.equals_func);
2017-03-02 14:37:32 +00:00
foreach (Conversation conversation in db.get_conversations(account)) {
add_conversation(conversation);
}
}
private void on_message_received(Entities.Message message, Conversation conversation) {
2017-03-24 21:57:05 +00:00
conversation.last_active = message.time;
start_conversation(conversation);
2017-03-02 14:37:32 +00:00
}
private void on_message_sent(Entities.Message message, Conversation conversation) {
conversation.last_active = message.time;
}
2017-03-02 14:37:32 +00:00
private void on_groupchat_joined(Account account, Jid jid, string nick) {
2017-03-24 21:57:05 +00:00
Conversation conversation = create_conversation(jid, account, Conversation.Type.GROUPCHAT);
start_conversation(conversation);
2017-03-02 14:37:32 +00:00
}
private void add_conversation(Conversation conversation) {
conversations[conversation.account][conversation.counterpart] = conversation;
if (conversation.active) {
conversation_activated(conversation);
}
}
}
}