2015-11-05 18:41:43 +00:00
|
|
|
package org.thoughtcrime.securesms.groups;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.support.annotation.NonNull;
|
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
|
|
|
|
import com.google.protobuf.ByteString;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.attachments.Attachment;
|
|
|
|
import org.thoughtcrime.securesms.attachments.UriAttachment;
|
2017-07-26 16:59:15 +00:00
|
|
|
import org.thoughtcrime.securesms.database.Address;
|
2015-11-05 18:41:43 +00:00
|
|
|
import org.thoughtcrime.securesms.database.AttachmentDatabase;
|
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
|
|
import org.thoughtcrime.securesms.database.GroupDatabase;
|
2017-08-01 15:56:00 +00:00
|
|
|
import org.thoughtcrime.securesms.database.ThreadDatabase;
|
2015-11-05 18:41:43 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.OutgoingGroupMediaMessage;
|
2019-02-26 01:47:30 +00:00
|
|
|
import org.thoughtcrime.securesms.providers.BlobProvider;
|
2015-11-05 18:41:43 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
|
|
import org.thoughtcrime.securesms.sms.MessageSender;
|
|
|
|
import org.thoughtcrime.securesms.util.BitmapUtil;
|
|
|
|
import org.thoughtcrime.securesms.util.GroupUtil;
|
2017-05-08 22:32:59 +00:00
|
|
|
import org.thoughtcrime.securesms.util.MediaUtil;
|
2015-11-05 18:41:43 +00:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2016-03-23 17:34:41 +00:00
|
|
|
import org.whispersystems.signalservice.api.util.InvalidNumberException;
|
|
|
|
import org.whispersystems.signalservice.internal.push.SignalServiceProtos.GroupContext;
|
2015-11-05 18:41:43 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
import java.io.IOException;
|
2015-11-05 18:41:43 +00:00
|
|
|
import java.util.Collection;
|
2018-04-27 00:03:54 +00:00
|
|
|
import java.util.Collections;
|
2015-11-05 18:41:43 +00:00
|
|
|
import java.util.HashSet;
|
|
|
|
import java.util.LinkedList;
|
2017-07-26 16:59:15 +00:00
|
|
|
import java.util.List;
|
2015-11-05 18:41:43 +00:00
|
|
|
import java.util.Set;
|
|
|
|
|
|
|
|
public class GroupManager {
|
2017-07-26 16:59:15 +00:00
|
|
|
|
2015-11-05 18:41:43 +00:00
|
|
|
public static @NonNull GroupActionResult createGroup(@NonNull Context context,
|
|
|
|
@NonNull Set<Recipient> members,
|
|
|
|
@Nullable Bitmap avatar,
|
2017-08-01 15:56:00 +00:00
|
|
|
@Nullable String name,
|
|
|
|
boolean mms)
|
2015-11-05 18:41:43 +00:00
|
|
|
{
|
2017-08-22 17:44:04 +00:00
|
|
|
final byte[] avatarBytes = BitmapUtil.toByteArray(avatar);
|
|
|
|
final GroupDatabase groupDatabase = DatabaseFactory.getGroupDatabase(context);
|
|
|
|
final String groupId = GroupUtil.getEncodedId(groupDatabase.allocateGroupId(), mms);
|
|
|
|
final Recipient groupRecipient = Recipient.from(context, Address.fromSerialized(groupId), false);
|
|
|
|
final Set<Address> memberAddresses = getMemberAddresses(members);
|
2015-11-05 18:41:43 +00:00
|
|
|
|
2017-07-26 16:59:15 +00:00
|
|
|
memberAddresses.add(Address.fromSerialized(TextSecurePreferences.getLocalNumber(context)));
|
|
|
|
groupDatabase.create(groupId, name, new LinkedList<>(memberAddresses), null, null);
|
2015-11-05 18:41:43 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
if (!mms) {
|
|
|
|
groupDatabase.updateAvatar(groupId, avatarBytes);
|
2017-08-22 17:44:04 +00:00
|
|
|
DatabaseFactory.getRecipientDatabase(context).setProfileSharing(groupRecipient, true);
|
2018-01-25 03:17:44 +00:00
|
|
|
return sendGroupUpdate(context, groupId, memberAddresses, name, avatarBytes);
|
2017-08-01 15:56:00 +00:00
|
|
|
} else {
|
2017-08-22 17:44:04 +00:00
|
|
|
long threadId = DatabaseFactory.getThreadDatabase(context).getThreadIdFor(groupRecipient, ThreadDatabase.DistributionTypes.CONVERSATION);
|
2017-08-01 15:56:00 +00:00
|
|
|
return new GroupActionResult(groupRecipient, threadId);
|
2015-11-05 18:41:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static GroupActionResult updateGroup(@NonNull Context context,
|
2017-08-01 15:56:00 +00:00
|
|
|
@NonNull String groupId,
|
2015-11-05 18:41:43 +00:00
|
|
|
@NonNull Set<Recipient> members,
|
|
|
|
@Nullable Bitmap avatar,
|
|
|
|
@Nullable String name)
|
|
|
|
throws InvalidNumberException
|
|
|
|
{
|
2017-07-26 16:59:15 +00:00
|
|
|
final GroupDatabase groupDatabase = DatabaseFactory.getGroupDatabase(context);
|
2017-08-01 15:56:00 +00:00
|
|
|
final Set<Address> memberAddresses = getMemberAddresses(members);
|
2017-07-26 16:59:15 +00:00
|
|
|
final byte[] avatarBytes = BitmapUtil.toByteArray(avatar);
|
2015-11-05 18:41:43 +00:00
|
|
|
|
2017-07-26 16:59:15 +00:00
|
|
|
memberAddresses.add(Address.fromSerialized(TextSecurePreferences.getLocalNumber(context)));
|
|
|
|
groupDatabase.updateMembers(groupId, new LinkedList<>(memberAddresses));
|
2015-11-05 18:41:43 +00:00
|
|
|
groupDatabase.updateTitle(groupId, name);
|
|
|
|
groupDatabase.updateAvatar(groupId, avatarBytes);
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
if (!GroupUtil.isMmsGroup(groupId)) {
|
2018-01-25 03:17:44 +00:00
|
|
|
return sendGroupUpdate(context, groupId, memberAddresses, name, avatarBytes);
|
2017-08-01 15:56:00 +00:00
|
|
|
} else {
|
2017-08-22 01:32:38 +00:00
|
|
|
Recipient groupRecipient = Recipient.from(context, Address.fromSerialized(groupId), true);
|
2017-08-01 15:56:00 +00:00
|
|
|
long threadId = DatabaseFactory.getThreadDatabase(context).getThreadIdFor(groupRecipient);
|
|
|
|
return new GroupActionResult(groupRecipient, threadId);
|
|
|
|
}
|
2015-11-05 18:41:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static GroupActionResult sendGroupUpdate(@NonNull Context context,
|
2017-08-01 15:56:00 +00:00
|
|
|
@NonNull String groupId,
|
2017-07-26 16:59:15 +00:00
|
|
|
@NonNull Set<Address> members,
|
2015-11-05 18:41:43 +00:00
|
|
|
@Nullable String groupName,
|
|
|
|
@Nullable byte[] avatar)
|
|
|
|
{
|
2017-08-01 15:56:00 +00:00
|
|
|
try {
|
|
|
|
Attachment avatarAttachment = null;
|
|
|
|
Address groupAddress = Address.fromSerialized(groupId);
|
2017-08-22 01:32:38 +00:00
|
|
|
Recipient groupRecipient = Recipient.from(context, groupAddress, false);
|
2017-08-01 15:56:00 +00:00
|
|
|
|
|
|
|
List<String> numbers = new LinkedList<>();
|
|
|
|
|
|
|
|
for (Address member : members) {
|
|
|
|
numbers.add(member.serialize());
|
|
|
|
}
|
|
|
|
|
|
|
|
GroupContext.Builder groupContextBuilder = GroupContext.newBuilder()
|
|
|
|
.setId(ByteString.copyFrom(GroupUtil.getDecodedId(groupId)))
|
|
|
|
.setType(GroupContext.Type.UPDATE)
|
|
|
|
.addAllMembers(numbers);
|
|
|
|
if (groupName != null) groupContextBuilder.setName(groupName);
|
|
|
|
GroupContext groupContext = groupContextBuilder.build();
|
|
|
|
|
|
|
|
if (avatar != null) {
|
2019-02-26 01:47:30 +00:00
|
|
|
Uri avatarUri = BlobProvider.getInstance().forData(avatar).createForSingleUseInMemory();
|
2018-11-09 07:33:37 +00:00
|
|
|
avatarAttachment = new UriAttachment(avatarUri, MediaUtil.IMAGE_PNG, AttachmentDatabase.TRANSFER_PROGRESS_DONE, avatar.length, null, false, false, null);
|
2017-08-01 15:56:00 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 08:41:05 +00:00
|
|
|
OutgoingGroupMediaMessage outgoingMessage = new OutgoingGroupMediaMessage(groupRecipient, groupContext, avatarAttachment, System.currentTimeMillis(), 0, null, Collections.emptyList(), Collections.emptyList());
|
2018-01-25 03:17:44 +00:00
|
|
|
long threadId = MessageSender.send(context, outgoingMessage, -1, false, null);
|
2017-08-01 15:56:00 +00:00
|
|
|
|
|
|
|
return new GroupActionResult(groupRecipient, threadId);
|
|
|
|
} catch (IOException e) {
|
|
|
|
throw new AssertionError(e);
|
2017-07-26 16:59:15 +00:00
|
|
|
}
|
2017-08-01 15:56:00 +00:00
|
|
|
}
|
2015-11-05 18:41:43 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
private static Set<Address> getMemberAddresses(Collection<Recipient> recipients) {
|
|
|
|
final Set<Address> results = new HashSet<>();
|
|
|
|
for (Recipient recipient : recipients) {
|
|
|
|
results.add(recipient.getAddress());
|
2015-11-05 18:41:43 +00:00
|
|
|
}
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
return results;
|
2015-11-05 18:41:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static class GroupActionResult {
|
2017-08-01 15:56:00 +00:00
|
|
|
private Recipient groupRecipient;
|
|
|
|
private long threadId;
|
2015-11-05 18:41:43 +00:00
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
public GroupActionResult(Recipient groupRecipient, long threadId) {
|
2015-11-05 18:41:43 +00:00
|
|
|
this.groupRecipient = groupRecipient;
|
|
|
|
this.threadId = threadId;
|
|
|
|
}
|
|
|
|
|
2017-08-01 15:56:00 +00:00
|
|
|
public Recipient getGroupRecipient() {
|
2015-11-05 18:41:43 +00:00
|
|
|
return groupRecipient;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getThreadId() {
|
|
|
|
return threadId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|