mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-01 05:55:18 +00:00
61 lines
1.7 KiB
Java
61 lines
1.7 KiB
Java
package org.thoughtcrime.securesms.util;
|
|
|
|
import android.util.Log;
|
|
|
|
import com.google.protobuf.InvalidProtocolBufferException;
|
|
|
|
import java.io.IOException;
|
|
import java.util.List;
|
|
|
|
import static org.whispersystems.textsecure.internal.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 += 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.";
|
|
}
|
|
}
|
|
}
|