Exemplo n.º 1
0
 @Override
 public void receivedDelete(Chat chat, String nid) {
   Chat localChat = chatHelper.getChat(chat.getNetworkChatID());
   if (chat.isAdmin(nid)) {
     if (localChat != null && localChat.isGroupChat()) {
       chatHelper.delete(chat);
     }
   } else {
     if (localChat != null && localChat.isGroupChat()) {
       chatHelper.removeReceiver(chat, contactHelper.getContactByNetworkingID(nid));
     }
   }
 }
Exemplo n.º 2
0
 private boolean containsSelf(Chat chat) {
   for (Contact c : chat.getReceivers()) {
     if (c.getNetworkingId().equals(self.getNetworkingId())) {
       return true;
     }
   }
   return false;
 }
Exemplo n.º 3
0
 @Test
 public void testShowDataList() throws IOException, NoSuchFieldException, IllegalAccessException {
   int before = adapter.getItemCount();
   chatActivity.showDataList(null);
   Field field = ChatRecyclerAdapter.class.getDeclaredField("mDataList");
   field.setAccessible(true);
   List<Data> dataList = (List<Data>) field.get(adapter);
   assertNull(dataList);
   chatActivity.showDataList(chat.getDataObjects());
   dataList = (List<Data>) field.get(adapter);
   assertTrue(dataList != null);
   int after = adapter.getItemCount();
   assertEquals(before, after);
 }
Exemplo n.º 4
0
 @Override
 public void receivedUpdate(Chat chat) {
   if (!containsSelf(chat)) {
     return;
   }
   if (!chat.isGroupChat()) {
     Chat oldChat = chatHelper.getChat(chat.getNetworkChatID());
     if (oldChat == null) {
       Contact self = contactHelper.getSelf();
       for (Contact c : chat.getReceivers()) {
         if (!c.getNetworkingId().equals(self.getNetworkingId())) {
           chat.setTitle(c.getName(context));
         }
       }
     } else {
       chat.setTitle(oldChat.getTitle());
     }
   }
   chatHelper.update(chat);
 }
Exemplo n.º 5
0
 @Override
 public void inserted(Chat chat) {
   if (chat.isAdmin(self) && chat.isGroupChat()) {
     messagingProtocol.sendCreateChat(chat);
   }
 }
Exemplo n.º 6
0
 @Override
 public void updated(Chat chat) {
   if (chat.isAdmin(self)) {
     messagingProtocol.sendUpdateChat(chat);
   }
 }