Search in sources :

Example 66 with RecipientId

use of org.thoughtcrime.securesms.recipients.RecipientId in project Signal-Android by WhisperSystems.

the class ReviewCardDialogFragment method getRepository.

@NonNull
private ReviewCardRepository getRepository() throws BadGroupIdException {
    RecipientId recipientId = getRecipientId();
    GroupId.V2 groupId = getGroupId();
    if (recipientId != null) {
        return new ReviewCardRepository(requireContext(), recipientId);
    } else if (groupId != null) {
        return new ReviewCardRepository(requireContext(), groupId);
    } else {
        throw new AssertionError();
    }
}
Also used : RecipientId(org.thoughtcrime.securesms.recipients.RecipientId) GroupId(org.thoughtcrime.securesms.groups.GroupId) NonNull(androidx.annotation.NonNull)

Example 67 with RecipientId

use of org.thoughtcrime.securesms.recipients.RecipientId in project Signal-Android by WhisperSystems.

the class RecipientBottomSheetDialogFragment method onViewCreated.

@Override
public void onViewCreated(@NonNull View fragmentView, @Nullable Bundle savedInstanceState) {
    super.onViewCreated(fragmentView, savedInstanceState);
    Bundle arguments = requireArguments();
    RecipientId recipientId = RecipientId.from(Objects.requireNonNull(arguments.getString(ARGS_RECIPIENT_ID)));
    GroupId groupId = GroupId.parseNullableOrThrow(arguments.getString(ARGS_GROUP_ID));
    RecipientDialogViewModel.Factory factory = new RecipientDialogViewModel.Factory(requireContext().getApplicationContext(), recipientId, groupId);
    viewModel = ViewModelProviders.of(this, factory).get(RecipientDialogViewModel.class);
    viewModel.getRecipient().observe(getViewLifecycleOwner(), recipient -> {
        interactionsContainer.setVisibility(recipient.isSelf() ? View.GONE : View.VISIBLE);
        avatar.setFallbackPhotoProvider(new Recipient.FallbackPhotoProvider() {

            @Override
            @NonNull
            public FallbackContactPhoto getPhotoForLocalNumber() {
                return new FallbackPhoto80dp(R.drawable.ic_note_80, recipient.getAvatarColor());
            }
        });
        avatar.setAvatar(recipient);
        if (!recipient.isSelf()) {
            badgeImageView.setBadgeFromRecipient(recipient);
        }
        if (recipient.isSelf()) {
            avatar.setOnClickListener(v -> {
                dismiss();
                viewModel.onMessageClicked(requireActivity());
            });
        }
        String name = recipient.isSelf() ? requireContext().getString(R.string.note_to_self) : recipient.getDisplayName(requireContext());
        fullName.setVisibility(TextUtils.isEmpty(name) ? View.GONE : View.VISIBLE);
        SpannableStringBuilder nameBuilder = new SpannableStringBuilder(name);
        if (recipient.isSystemContact() && !recipient.isSelf()) {
            Drawable systemContact = DrawableUtil.tint(ContextUtil.requireDrawable(requireContext(), R.drawable.ic_profile_circle_outline_16), ContextCompat.getColor(requireContext(), R.color.signal_text_primary));
            SpanUtil.appendCenteredImageSpan(nameBuilder, systemContact, 16, 16);
        } else if (recipient.isReleaseNotes()) {
            SpanUtil.appendCenteredImageSpan(nameBuilder, ContextUtil.requireDrawable(requireContext(), R.drawable.ic_official_28), 28, 28);
        }
        fullName.setText(nameBuilder);
        String aboutText = recipient.getCombinedAboutAndEmoji();
        if (recipient.isReleaseNotes()) {
            aboutText = getString(R.string.ReleaseNotes__signal_release_notes_and_news);
        }
        if (!Util.isEmpty(aboutText)) {
            about.setText(aboutText);
            about.setVisibility(View.VISIBLE);
        } else {
            about.setVisibility(View.GONE);
        }
        String usernameNumberString = recipient.hasAUserSetDisplayName(requireContext()) && !recipient.isSelf() ? recipient.getSmsAddress().transform(PhoneNumberFormatter::prettyPrint).or("").trim() : "";
        usernameNumber.setText(usernameNumberString);
        usernameNumber.setVisibility(TextUtils.isEmpty(usernameNumberString) ? View.GONE : View.VISIBLE);
        usernameNumber.setOnLongClickListener(v -> {
            Util.copyToClipboard(v.getContext(), usernameNumber.getText().toString());
            ServiceUtil.getVibrator(v.getContext()).vibrate(250);
            Toast.makeText(v.getContext(), R.string.RecipientBottomSheet_copied_to_clipboard, Toast.LENGTH_SHORT).show();
            return true;
        });
        noteToSelfDescription.setVisibility(recipient.isSelf() ? View.VISIBLE : View.GONE);
        if (RecipientUtil.isBlockable(recipient)) {
            boolean blocked = recipient.isBlocked();
            blockButton.setVisibility(recipient.isSelf() || blocked ? View.GONE : View.VISIBLE);
            unblockButton.setVisibility(recipient.isSelf() || !blocked ? View.GONE : View.VISIBLE);
        } else {
            blockButton.setVisibility(View.GONE);
            unblockButton.setVisibility(View.GONE);
        }
        ButtonStripPreference.State buttonStripState = new ButtonStripPreference.State(/* isMessageAvailable = */
        !recipient.isBlocked() && !recipient.isSelf() && !recipient.isReleaseNotes(), /* isVideoAvailable   = */
        !recipient.isBlocked() && !recipient.isSelf() && recipient.isRegistered(), /* isAudioAvailable   = */
        !recipient.isBlocked() && !recipient.isSelf() && !recipient.isReleaseNotes(), /* isMuteAvailable    = */
        false, /* isSearchAvailable  = */
        false, /* isAudioSecure      = */
        recipient.isRegistered(), /* isMuted            = */
        false);
        ButtonStripPreference.Model buttonStripModel = new ButtonStripPreference.Model(buttonStripState, DSLSettingsIcon.from(ContextUtil.requireDrawable(requireContext(), R.drawable.selectable_recipient_bottom_sheet_icon_button)), () -> {
            dismiss();
            viewModel.onMessageClicked(requireActivity());
            return Unit.INSTANCE;
        }, () -> {
            viewModel.onSecureVideoCallClicked(requireActivity());
            return Unit.INSTANCE;
        }, () -> {
            if (buttonStripState.isAudioSecure()) {
                viewModel.onSecureCallClicked(requireActivity());
            } else {
                viewModel.onInsecureCallClicked(requireActivity());
            }
            return Unit.INSTANCE;
        }, () -> Unit.INSTANCE, () -> Unit.INSTANCE);
        new ButtonStripPreference.ViewHolder(buttonStrip).bind(buttonStripModel);
        if (recipient.isReleaseNotes()) {
            buttonStrip.setVisibility(View.GONE);
        }
        if (recipient.isSystemContact() || recipient.isGroup() || recipient.isSelf() || recipient.isBlocked() || recipient.isReleaseNotes()) {
            addContactButton.setVisibility(View.GONE);
        } else {
            addContactButton.setVisibility(View.VISIBLE);
            addContactButton.setOnClickListener(v -> {
                openSystemContactSheet(RecipientExporter.export(recipient).asAddContactIntent());
            });
        }
        if (recipient.isSystemContact() && !recipient.isGroup() && !recipient.isSelf()) {
            contactDetailsButton.setVisibility(View.VISIBLE);
            contactDetailsButton.setOnClickListener(v -> {
                openSystemContactSheet(new Intent(Intent.ACTION_VIEW, recipient.getContactUri()));
            });
        } else {
            contactDetailsButton.setVisibility(View.GONE);
        }
    });
    viewModel.getCanAddToAGroup().observe(getViewLifecycleOwner(), canAdd -> {
        addToGroupButton.setText(groupId == null ? R.string.RecipientBottomSheet_add_to_a_group : R.string.RecipientBottomSheet_add_to_another_group);
        addToGroupButton.setVisibility(canAdd ? View.VISIBLE : View.GONE);
    });
    viewModel.getAdminActionStatus().observe(getViewLifecycleOwner(), adminStatus -> {
        makeGroupAdminButton.setVisibility(adminStatus.isCanMakeAdmin() ? View.VISIBLE : View.GONE);
        removeAdminButton.setVisibility(adminStatus.isCanMakeNonAdmin() ? View.VISIBLE : View.GONE);
        removeFromGroupButton.setVisibility(adminStatus.isCanRemove() ? View.VISIBLE : View.GONE);
    });
    viewModel.getIdentity().observe(getViewLifecycleOwner(), identityRecord -> {
        viewSafetyNumberButton.setVisibility(identityRecord != null ? View.VISIBLE : View.GONE);
        if (identityRecord != null) {
            viewSafetyNumberButton.setOnClickListener(view -> {
                dismiss();
                viewModel.onViewSafetyNumberClicked(requireActivity(), identityRecord);
            });
        }
    });
    avatar.setOnClickListener(view -> {
        dismiss();
        viewModel.onAvatarClicked(requireActivity());
    });
    badgeImageView.setOnClickListener(view -> {
        dismiss();
        ViewBadgeBottomSheetDialogFragment.show(getParentFragmentManager(), recipientId, null);
    });
    blockButton.setOnClickListener(view -> viewModel.onBlockClicked(requireActivity()));
    unblockButton.setOnClickListener(view -> viewModel.onUnblockClicked(requireActivity()));
    makeGroupAdminButton.setOnClickListener(view -> viewModel.onMakeGroupAdminClicked(requireActivity()));
    removeAdminButton.setOnClickListener(view -> viewModel.onRemoveGroupAdminClicked(requireActivity()));
    removeFromGroupButton.setOnClickListener(view -> viewModel.onRemoveFromGroupClicked(requireActivity(), this::dismiss));
    addToGroupButton.setOnClickListener(view -> {
        dismiss();
        viewModel.onAddToGroupButton(requireActivity());
    });
    viewModel.getAdminActionBusy().observe(getViewLifecycleOwner(), busy -> {
        adminActionBusy.setVisibility(busy ? View.VISIBLE : View.GONE);
        makeGroupAdminButton.setEnabled(!busy);
        removeAdminButton.setEnabled(!busy);
        removeFromGroupButton.setEnabled(!busy);
    });
}
Also used : RecipientId(org.thoughtcrime.securesms.recipients.RecipientId) Bundle(android.os.Bundle) Drawable(android.graphics.drawable.Drawable) Recipient(org.thoughtcrime.securesms.recipients.Recipient) Intent(android.content.Intent) SpannableString(android.text.SpannableString) GroupId(org.thoughtcrime.securesms.groups.GroupId) FallbackContactPhoto(org.thoughtcrime.securesms.contacts.avatars.FallbackContactPhoto) NonNull(androidx.annotation.NonNull) FallbackPhoto80dp(org.thoughtcrime.securesms.contacts.avatars.FallbackPhoto80dp) SpannableStringBuilder(android.text.SpannableStringBuilder) ButtonStripPreference(org.thoughtcrime.securesms.components.settings.conversation.preferences.ButtonStripPreference)

Example 68 with RecipientId

use of org.thoughtcrime.securesms.recipients.RecipientId in project Signal-Android by WhisperSystems.

the class EditGroupProfileRepository method getCurrentName.

@Override
public void getCurrentName(@NonNull Consumer<String> nameConsumer) {
    SimpleTask.run(() -> {
        RecipientId recipientId = getRecipientId();
        Recipient recipient = Recipient.resolved(recipientId);
        return SignalDatabase.groups().getGroup(recipientId).transform(groupRecord -> {
            String title = groupRecord.getTitle();
            return title == null ? "" : title;
        }).or(() -> recipient.getGroupName(context));
    }, nameConsumer::accept);
}
Also used : AvatarColor(org.thoughtcrime.securesms.conversation.colors.AvatarColor) Context(android.content.Context) SignalDatabase(org.thoughtcrime.securesms.database.SignalDatabase) AvatarHelper(org.thoughtcrime.securesms.profiles.AvatarHelper) NonNull(androidx.annotation.NonNull) StreamUtil(org.signal.core.util.StreamUtil) ProfileName(org.thoughtcrime.securesms.profiles.ProfileName) WorkerThread(androidx.annotation.WorkerThread) IOException(java.io.IOException) Optional(org.whispersystems.libsignal.util.guava.Optional) Consumer(androidx.core.util.Consumer) GroupChangeException(org.thoughtcrime.securesms.groups.GroupChangeException) Log(org.signal.core.util.logging.Log) GroupManager(org.thoughtcrime.securesms.groups.GroupManager) Nullable(androidx.annotation.Nullable) RecipientId(org.thoughtcrime.securesms.recipients.RecipientId) GroupId(org.thoughtcrime.securesms.groups.GroupId) Recipient(org.thoughtcrime.securesms.recipients.Recipient) SimpleTask(org.thoughtcrime.securesms.util.concurrent.SimpleTask) RecipientId(org.thoughtcrime.securesms.recipients.RecipientId) Recipient(org.thoughtcrime.securesms.recipients.Recipient)

Example 69 with RecipientId

use of org.thoughtcrime.securesms.recipients.RecipientId in project Signal-Android by WhisperSystems.

the class ReviewUtil method getProfileChangeRecordsForGroup.

@WorkerThread
@NonNull
public static List<MessageRecord> getProfileChangeRecordsForGroup(@NonNull Context context, @NonNull GroupId.V2 groupId) {
    RecipientId recipientId = SignalDatabase.recipients().getByGroupId(groupId).get();
    Long threadId = SignalDatabase.threads().getThreadIdFor(recipientId);
    if (threadId == null) {
        return Collections.emptyList();
    } else {
        return SignalDatabase.sms().getProfileChangeDetailsRecords(threadId, System.currentTimeMillis() - TIMEOUT);
    }
}
Also used : RecipientId(org.thoughtcrime.securesms.recipients.RecipientId) WorkerThread(androidx.annotation.WorkerThread) NonNull(androidx.annotation.NonNull)

Example 70 with RecipientId

use of org.thoughtcrime.securesms.recipients.RecipientId in project Signal-Android by WhisperSystems.

the class SearchRepository method queryMentions.

@NonNull
private List<MessageResult> queryMentions(@NonNull List<String> cleanQueries) {
    Set<RecipientId> recipientIds = new HashSet<>();
    for (String cleanQuery : cleanQueries) {
        for (Recipient recipient : recipientDatabase.queryRecipientsForMentions(cleanQuery)) {
            recipientIds.add(recipient.getId());
        }
    }
    Map<Long, List<Mention>> mentionQueryResults = mentionDatabase.getMentionsContainingRecipients(recipientIds, 500);
    if (mentionQueryResults.isEmpty()) {
        return Collections.emptyList();
    }
    List<MessageResult> results = new ArrayList<>();
    try (MessageDatabase.Reader reader = mmsDatabase.getMessages(mentionQueryResults.keySet())) {
        MessageRecord record;
        while ((record = reader.getNext()) != null) {
            List<Mention> mentions = mentionQueryResults.get(record.getId());
            if (Util.hasItems(mentions)) {
                MentionUtil.UpdatedBodyAndMentions updated = MentionUtil.updateBodyAndMentionsWithDisplayNames(context, record.getBody(), mentions);
                String updatedBody = updated.getBody() != null ? updated.getBody().toString() : record.getBody();
                String updatedSnippet = makeSnippet(cleanQueries, updatedBody);
                // noinspection ConstantConditions
                results.add(new MessageResult(threadDatabase.getRecipientForThreadId(record.getThreadId()), record.getRecipient(), updatedBody, updatedSnippet, record.getThreadId(), record.getId(), record.getDateReceived(), true));
            }
        }
    }
    return results;
}
Also used : MessageDatabase(org.thoughtcrime.securesms.database.MessageDatabase) RecipientId(org.thoughtcrime.securesms.recipients.RecipientId) ArrayList(java.util.ArrayList) Recipient(org.thoughtcrime.securesms.recipients.Recipient) MentionUtil(org.thoughtcrime.securesms.database.MentionUtil) Mention(org.thoughtcrime.securesms.database.model.Mention) MessageRecord(org.thoughtcrime.securesms.database.model.MessageRecord) ArrayList(java.util.ArrayList) LinkedList(java.util.LinkedList) List(java.util.List) HashSet(java.util.HashSet) LinkedHashSet(java.util.LinkedHashSet) NonNull(androidx.annotation.NonNull)

Aggregations

RecipientId (org.thoughtcrime.securesms.recipients.RecipientId)154 NonNull (androidx.annotation.NonNull)70 Recipient (org.thoughtcrime.securesms.recipients.Recipient)70 List (java.util.List)34 ArrayList (java.util.ArrayList)33 Nullable (androidx.annotation.Nullable)32 Context (android.content.Context)31 Log (org.signal.core.util.logging.Log)31 IOException (java.io.IOException)30 ApplicationDependencies (org.thoughtcrime.securesms.dependencies.ApplicationDependencies)29 WorkerThread (androidx.annotation.WorkerThread)28 Stream (com.annimon.stream.Stream)27 LinkedList (java.util.LinkedList)25 ContentValues (android.content.ContentValues)24 Cursor (android.database.Cursor)24 Collections (java.util.Collections)24 SignalDatabase (org.thoughtcrime.securesms.database.SignalDatabase)24 GroupDatabase (org.thoughtcrime.securesms.database.GroupDatabase)23 Optional (org.whispersystems.libsignal.util.guava.Optional)22 HashSet (java.util.HashSet)21