42 lines
1.4 KiB
Java
42 lines
1.4 KiB
Java
package org.thoughtcrime.securesms.sms;
|
|
|
|
import static org.whispersystems.textsecure.internal.push.PushMessageProtos.PushMessageContent.GroupContext;
|
|
|
|
public class IncomingGroupMessage extends IncomingTextMessage {
|
|
|
|
private final GroupContext groupContext;
|
|
|
|
public IncomingGroupMessage(IncomingTextMessage base, GroupContext groupContext, String body) {
|
|
super(base, body);
|
|
this.groupContext = groupContext;
|
|
}
|
|
|
|
@Override
|
|
public IncomingGroupMessage withMessageBody(String body) {
|
|
return new IncomingGroupMessage(this, groupContext, body);
|
|
}
|
|
|
|
@Override
|
|
public boolean isGroup() {
|
|
return true;
|
|
}
|
|
|
|
public boolean isUpdate() {
|
|
return groupContext.getType().getNumber() == GroupContext.Type.UPDATE_VALUE;
|
|
}
|
|
|
|
public boolean isQuit() {
|
|
return groupContext.getType().getNumber() == GroupContext.Type.QUIT_VALUE;
|
|
}
|
|
|
|
// public static IncomingGroupMessage createForQuit(String groupId, String user) throws IOException {
|
|
// IncomingTextMessage base = new IncomingTextMessage(user, groupId);
|
|
// GroupContext context = GroupContext.newBuilder()
|
|
// .setType(GroupContext.Type.QUIT)
|
|
// .setId(ByteString.copyFrom(GroupUtil.getDecodedId(groupId)))
|
|
// .build();
|
|
//
|
|
// return new IncomingGroupMessage(base, context, "");
|
|
// }
|
|
|
|
}
|