Search in sources :

Example 1 with Name

use of org.thoughtcrime.securesms.contactshare.Contact.Name in project Signal-Android by WhisperSystems.

the class ContactShareEditActivity method onActivityResult.

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode != CODE_NAME_EDIT || resultCode != RESULT_OK || data == null) {
        return;
    }
    int position = data.getIntExtra(ContactNameEditActivity.KEY_CONTACT_INDEX, -1);
    Name name = data.getParcelableExtra(ContactNameEditActivity.KEY_NAME);
    if (name != null) {
        viewModel.updateContactName(position, name);
    }
}
Also used : Name(org.thoughtcrime.securesms.contactshare.Contact.Name)

Example 2 with Name

use of org.thoughtcrime.securesms.contactshare.Contact.Name in project Signal-Android by WhisperSystems.

the class SharedContactRepository method getContactFromSystemContacts.

@WorkerThread
@Nullable
private Contact getContactFromSystemContacts(long contactId) {
    Name name = getName(contactId);
    if (name == null) {
        Log.w(TAG, "Couldn't find a name associated with the provided contact ID.");
        return null;
    }
    List<Phone> phoneNumbers = getPhoneNumbers(contactId);
    AvatarInfo avatarInfo = getAvatarInfo(contactId, phoneNumbers);
    Avatar avatar = avatarInfo != null ? new Avatar(avatarInfo.uri, avatarInfo.isProfile) : null;
    return new Contact(name, null, phoneNumbers, getEmails(contactId), getPostalAddresses(contactId), avatar);
}
Also used : Phone(org.thoughtcrime.securesms.contactshare.Contact.Phone) Avatar(org.thoughtcrime.securesms.contactshare.Contact.Avatar) Name(org.thoughtcrime.securesms.contactshare.Contact.Name) WorkerThread(androidx.annotation.WorkerThread) Nullable(androidx.annotation.Nullable)

Example 3 with Name

use of org.thoughtcrime.securesms.contactshare.Contact.Name in project Signal-Android by WhisperSystems.

the class ContactModelMapper method localToRemoteBuilder.

public static SharedContact.Builder localToRemoteBuilder(@NonNull Contact contact) {
    List<SharedContact.Phone> phoneNumbers = new ArrayList<>(contact.getPhoneNumbers().size());
    List<SharedContact.Email> emails = new ArrayList<>(contact.getEmails().size());
    List<SharedContact.PostalAddress> postalAddresses = new ArrayList<>(contact.getPostalAddresses().size());
    for (Phone phone : contact.getPhoneNumbers()) {
        phoneNumbers.add(new SharedContact.Phone.Builder().setValue(phone.getNumber()).setType(localToRemoteType(phone.getType())).setLabel(phone.getLabel()).build());
    }
    for (Email email : contact.getEmails()) {
        emails.add(new SharedContact.Email.Builder().setValue(email.getEmail()).setType(localToRemoteType(email.getType())).setLabel(email.getLabel()).build());
    }
    for (PostalAddress postalAddress : contact.getPostalAddresses()) {
        postalAddresses.add(new SharedContact.PostalAddress.Builder().setType(localToRemoteType(postalAddress.getType())).setLabel(postalAddress.getLabel()).setStreet(postalAddress.getStreet()).setPobox(postalAddress.getPoBox()).setNeighborhood(postalAddress.getNeighborhood()).setCity(postalAddress.getCity()).setRegion(postalAddress.getRegion()).setPostcode(postalAddress.getPostalCode()).setCountry(postalAddress.getCountry()).build());
    }
    SharedContact.Name name = new SharedContact.Name.Builder().setDisplay(contact.getName().getDisplayName()).setGiven(contact.getName().getGivenName()).setFamily(contact.getName().getFamilyName()).setPrefix(contact.getName().getPrefix()).setSuffix(contact.getName().getSuffix()).setMiddle(contact.getName().getMiddleName()).build();
    return new SharedContact.Builder().setName(name).withOrganization(contact.getOrganization()).withPhones(phoneNumbers).withEmails(emails).withAddresses(postalAddresses);
}
Also used : Email(org.thoughtcrime.securesms.contactshare.Contact.Email) ArrayList(java.util.ArrayList) Name(org.thoughtcrime.securesms.contactshare.Contact.Name) PostalAddress(org.thoughtcrime.securesms.contactshare.Contact.PostalAddress) Phone(org.thoughtcrime.securesms.contactshare.Contact.Phone) SharedContact(org.whispersystems.signalservice.api.messages.shared.SharedContact)

Example 4 with Name

use of org.thoughtcrime.securesms.contactshare.Contact.Name in project Signal-Android by WhisperSystems.

the class ContactNameEditActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState, boolean ready) {
    super.onCreate(savedInstanceState, ready);
    if (getIntent() == null) {
        throw new IllegalStateException("You must supply extras to this activity. Please use the #getIntent() method.");
    }
    Name name = getIntent().getParcelableExtra(KEY_NAME);
    if (name == null) {
        throw new IllegalStateException("You must supply a name to this activity. Please use the #getIntent() method.");
    }
    setContentView(R.layout.activity_contact_name_edit);
    initializeToolbar();
    initializeViews(name);
    viewModel = ViewModelProviders.of(this).get(ContactNameEditViewModel.class);
    viewModel.setName(name);
    viewModel.getDisplayName().observe(this, displayNameView::setText);
}
Also used : Name(org.thoughtcrime.securesms.contactshare.Contact.Name)

Example 5 with Name

use of org.thoughtcrime.securesms.contactshare.Contact.Name in project Signal-Android by WhisperSystems.

the class ContactModelMapper method remoteToLocal.

public static Contact remoteToLocal(@NonNull SharedContact sharedContact) {
    Name name = new Name(sharedContact.getName().getDisplay().orNull(), sharedContact.getName().getGiven().orNull(), sharedContact.getName().getFamily().orNull(), sharedContact.getName().getPrefix().orNull(), sharedContact.getName().getSuffix().orNull(), sharedContact.getName().getMiddle().orNull());
    List<Phone> phoneNumbers = new LinkedList<>();
    if (sharedContact.getPhone().isPresent()) {
        for (SharedContact.Phone phone : sharedContact.getPhone().get()) {
            phoneNumbers.add(new Phone(phone.getValue(), remoteToLocalType(phone.getType()), phone.getLabel().orNull()));
        }
    }
    List<Email> emails = new LinkedList<>();
    if (sharedContact.getEmail().isPresent()) {
        for (SharedContact.Email email : sharedContact.getEmail().get()) {
            emails.add(new Email(email.getValue(), remoteToLocalType(email.getType()), email.getLabel().orNull()));
        }
    }
    List<PostalAddress> postalAddresses = new LinkedList<>();
    if (sharedContact.getAddress().isPresent()) {
        for (SharedContact.PostalAddress postalAddress : sharedContact.getAddress().get()) {
            postalAddresses.add(new PostalAddress(remoteToLocalType(postalAddress.getType()), postalAddress.getLabel().orNull(), postalAddress.getStreet().orNull(), postalAddress.getPobox().orNull(), postalAddress.getNeighborhood().orNull(), postalAddress.getCity().orNull(), postalAddress.getRegion().orNull(), postalAddress.getPostcode().orNull(), postalAddress.getCountry().orNull()));
        }
    }
    Avatar avatar = null;
    if (sharedContact.getAvatar().isPresent()) {
        Attachment attachment = PointerAttachment.forPointer(Optional.of(sharedContact.getAvatar().get().getAttachment().asPointer())).get();
        boolean isProfile = sharedContact.getAvatar().get().isProfile();
        avatar = new Avatar(null, attachment, isProfile);
    }
    return new Contact(name, sharedContact.getOrganization().orNull(), phoneNumbers, emails, postalAddresses, avatar);
}
Also used : Email(org.thoughtcrime.securesms.contactshare.Contact.Email) PointerAttachment(org.thoughtcrime.securesms.attachments.PointerAttachment) Attachment(org.thoughtcrime.securesms.attachments.Attachment) LinkedList(java.util.LinkedList) Avatar(org.thoughtcrime.securesms.contactshare.Contact.Avatar) Name(org.thoughtcrime.securesms.contactshare.Contact.Name) SharedContact(org.whispersystems.signalservice.api.messages.shared.SharedContact) PostalAddress(org.thoughtcrime.securesms.contactshare.Contact.PostalAddress) Phone(org.thoughtcrime.securesms.contactshare.Contact.Phone) SharedContact(org.whispersystems.signalservice.api.messages.shared.SharedContact)

Aggregations

Name (org.thoughtcrime.securesms.contactshare.Contact.Name)6 Phone (org.thoughtcrime.securesms.contactshare.Contact.Phone)3 Nullable (androidx.annotation.Nullable)2 WorkerThread (androidx.annotation.WorkerThread)2 Avatar (org.thoughtcrime.securesms.contactshare.Contact.Avatar)2 Email (org.thoughtcrime.securesms.contactshare.Contact.Email)2 PostalAddress (org.thoughtcrime.securesms.contactshare.Contact.PostalAddress)2 SharedContact (org.whispersystems.signalservice.api.messages.shared.SharedContact)2 Cursor (android.database.Cursor)1 ArrayList (java.util.ArrayList)1 LinkedList (java.util.LinkedList)1 Attachment (org.thoughtcrime.securesms.attachments.Attachment)1 PointerAttachment (org.thoughtcrime.securesms.attachments.PointerAttachment)1