package com.securecomcode.text.util; import android.util.Log; import com.google.protobuf.ByteString; import com.google.protobuf.InvalidProtocolBufferException; import org.whispersystems.textsecure.util.Base64; import org.whispersystems.textsecure.util.Hex; import java.io.IOException; import java.util.LinkedList; import java.util.List; import static org.whispersystems.textsecure.push.PushMessageProtos.PushMessageContent.GroupContext; public class GroupUtil { private static final String ENCODED_GROUP_PREFIX = "__textsecure_group__!"; public static String getEncodedId(byte[] groupId) { return ENCODED_GROUP_PREFIX + Hex.toStringCondensed(groupId); } public static byte[] getDecodedId(String groupId) throws IOException { if (!isEncodedGroup(groupId)) { throw new IOException("Invalid encoding"); } return Hex.fromStringCondensed(groupId.split("!", 2)[1]); } public static boolean isEncodedGroup(String groupId) { return groupId.startsWith(ENCODED_GROUP_PREFIX); } public static String getDescription(String encodedGroup) { if (encodedGroup == null) { return "Group updated."; } try { String description = ""; GroupContext context = GroupContext.parseFrom(Base64.decode(encodedGroup)); List<String> members = context.getMembersList(); String title = context.getName(); if (!members.isEmpty()) { description += org.whispersystems.textsecure.util.Util.join(members, ", ") + " joined the group."; } if (title != null && !title.trim().isEmpty()) { description += " Title is now '" + title + "'."; } return description; } catch (InvalidProtocolBufferException e) { Log.w("GroupUtil", e); return "Group updated."; } catch (IOException e) { Log.w("GroupUtil", e); return "Group updated."; } } }