/* Copyright © 2013-2014, Silent Circle, LLC. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Any redistribution, use, or modification is done solely for personal benefit and not for any commercial purpose or for monetary gain * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name Silent Circle nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SILENT CIRCLE, LLC BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * This implementation is edited version of original Android sources. */ /* * Copyright (C) 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.silentcircle.contacts.model; import android.content.ContentValues; import android.content.Context; import android.net.Uri; import com.silentcircle.contacts.model.dataitem.DataItem; import com.silentcircle.contacts.GroupMetaData; import com.silentcircle.silentcontacts.ScContactsContract.CommonDataKinds.Photo; import com.silentcircle.silentcontacts.ScContactsContract.Data; import com.silentcircle.silentcontacts.ScContactsContract.Directory; import com.silentcircle.silentcontacts.ScContactsContract.DisplayNameSources; import com.silentcircle.contacts.model.account.AccountType; import com.silentcircle.contacts.utils.StreamItemEntry; import com.google.common.annotations.VisibleForTesting; import com.google.common.collect.ImmutableList; import java.util.ArrayList; /** * A Contact represents a single person or logical entity as perceived by the user. The information * about a contact can come from multiple data sources, which are each represented by a RawContact * object. Thus, a Contact is associated with a collection of RawContact objects. * * The aggregation of raw contacts into a single contact is performed automatically, and it is * also possible for users to manually split and join raw contacts into various contacts. * * Only the {@link ContactLoader} class can create a Contact object with various flags to allow * partial loading of contact data. Thus, an instance of this class should be treated as * a read-only object. */ public class Contact { private enum Status { /** Contact is successfully loaded */ LOADED, /** There was an error loading the contact */ ERROR, /** Contact is not found */ NOT_FOUND, } private final Uri mRequestedUri; private final Uri mLookupUri; private final Uri mUri; private final long mDirectoryId; private final String mLookupKey; private final long mId; private final long mNameRawContactId; private final int mDisplayNameSource; private final long mPhotoId; private final String mPhotoUri; private final String mDisplayName; private final String mAltDisplayName; private final String mPhoneticName; private final boolean mStarred; private final Integer mPresence; private ImmutableList<RawContact> mRawContacts; private ImmutableList<StreamItemEntry> mStreamItems; private ImmutableList<AccountType> mInvitableAccountTypes; private String mDirectoryDisplayName; private String mDirectoryType; private String mDirectoryAccountType; private String mDirectoryAccountName; private int mDirectoryExportSupport; private ImmutableList<GroupMetaData> mGroups; private byte[] mPhotoBinaryData; private final boolean mSendToVoicemail; private final String mCustomRingtone; private final boolean mIsUserProfile; private final Contact.Status mStatus; private final Exception mException; /** * Constructor for special results, namely "no contact found" and "error". */ private Contact(Uri requestedUri, Contact.Status status, Exception exception) { if (status == Status.ERROR && exception == null) { throw new IllegalArgumentException("ERROR result must have exception"); } mStatus = status; mException = exception; mRequestedUri = requestedUri; mLookupUri = null; mUri = null; mDirectoryId = -1; mLookupKey = null; mId = -1; mRawContacts = null; mStreamItems = null; mNameRawContactId = -1; mDisplayNameSource = DisplayNameSources.UNDEFINED; mPhotoId = -1; mPhotoUri = null; mDisplayName = null; mAltDisplayName = null; mPhoneticName = null; mStarred = false; mPresence = null; mInvitableAccountTypes = null; mSendToVoicemail = false; mCustomRingtone = null; mIsUserProfile = false; } public static Contact forError(Uri requestedUri, Exception exception) { return new Contact(requestedUri, Status.ERROR, exception); } public static Contact forNotFound(Uri requestedUri) { return new Contact(requestedUri, Status.NOT_FOUND, null); } /** * Constructor to call when contact was found */ public Contact(Uri requestedUri, Uri uri, Uri lookupUri, long directoryId, String lookupKey, long id, long nameRawContactId, int displayNameSource, long photoId, String photoUri, String displayName, String altDisplayName, String phoneticName, boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone, boolean isUserProfile) { mStatus = Status.LOADED; mException = null; mRequestedUri = requestedUri; mLookupUri = lookupUri; mUri = uri; mDirectoryId = directoryId; mLookupKey = lookupKey; mId = id; mRawContacts = null; mStreamItems = null; mNameRawContactId = nameRawContactId; mDisplayNameSource = displayNameSource; mPhotoId = photoId; mPhotoUri = photoUri; mDisplayName = displayName; mAltDisplayName = altDisplayName; mPhoneticName = phoneticName; mStarred = starred; mPresence = presence; mInvitableAccountTypes = null; mSendToVoicemail = sendToVoicemail; mCustomRingtone = customRingtone; mIsUserProfile = isUserProfile; } public Contact(Uri requestedUri, Contact from) { mRequestedUri = requestedUri; mStatus = from.mStatus; mException = from.mException; mLookupUri = from.mLookupUri; mUri = from.mUri; mDirectoryId = from.mDirectoryId; mLookupKey = from.mLookupKey; mId = from.mId; mNameRawContactId = from.mNameRawContactId; mDisplayNameSource = from.mDisplayNameSource; mPhotoId = from.mPhotoId; mPhotoUri = from.mPhotoUri; mDisplayName = from.mDisplayName; mAltDisplayName = from.mAltDisplayName; mPhoneticName = from.mPhoneticName; mStarred = from.mStarred; mPresence = from.mPresence; mRawContacts = from.mRawContacts; mStreamItems = from.mStreamItems; mInvitableAccountTypes = from.mInvitableAccountTypes; mDirectoryDisplayName = from.mDirectoryDisplayName; mDirectoryType = from.mDirectoryType; mDirectoryAccountType = from.mDirectoryAccountType; mDirectoryAccountName = from.mDirectoryAccountName; mDirectoryExportSupport = from.mDirectoryExportSupport; mGroups = from.mGroups; mPhotoBinaryData = from.mPhotoBinaryData; mSendToVoicemail = from.mSendToVoicemail; mCustomRingtone = from.mCustomRingtone; mIsUserProfile = from.mIsUserProfile; } /** * @param exportSupport See {@link Directory#EXPORT_SUPPORT}. */ public void setDirectoryMetaData(String displayName, String directoryType, String accountType, String accountName, int exportSupport) { mDirectoryDisplayName = displayName; mDirectoryType = directoryType; mDirectoryAccountType = accountType; mDirectoryAccountName = accountName; mDirectoryExportSupport = exportSupport; } /* package */ void setPhotoBinaryData(byte[] photoBinaryData) { mPhotoBinaryData = photoBinaryData; } /** * Returns the URI for the contact that contains both the lookup key and the ID. This is * the best URI to reference a contact. * For directory contacts, this is the same a the URI as returned by {@link #getUri()} */ public Uri getLookupUri() { return mLookupUri; } public String getLookupKey() { return mLookupKey; } /** * Returns the contact Uri that was passed to the provider to make the query. This is * the same as the requested Uri, unless the requested Uri doesn't specify a Contact: * If it either references a Raw-Contact or a Person (a pre-Eclair style Uri), this Uri will * always reference the full aggregate contact. */ public Uri getUri() { return mUri; } /** * Returns the URI for which this {@link ContactLoader) was initially requested. */ public Uri getRequestedUri() { return mRequestedUri; } /** * Instantiate a new RawContactDeltaList for this contact. */ public RawContactDeltaList createRawContactDeltaList() { return RawContactDeltaList.fromIterator(getRawContacts().iterator()); } /** * Returns the contact ID. */ @VisibleForTesting /* package */ long getId() { return mId; } /** * @return true when an exception happened during loading, in which case * {@link #getException} returns the actual exception object. * Note {@link #isNotFound()} and {@link #isError()} are mutually exclusive; If * {@link #isError()} is {@code true}, {@link #isNotFound()} is always {@code false}, * and vice versa. */ public boolean isError() { return mStatus == Status.ERROR; } public Exception getException() { return mException; } /** * @return true when the specified contact is not found. * Note {@link #isNotFound()} and {@link #isError()} are mutually exclusive; If * {@link #isError()} is {@code true}, {@link #isNotFound()} is always {@code false}, * and vice versa. */ public boolean isNotFound() { return mStatus == Status.NOT_FOUND; } /** * @return true if the specified contact is successfully loaded. * i.e. neither {@link #isError()} nor {@link #isNotFound()}. */ public boolean isLoaded() { return mStatus == Status.LOADED; } public long getNameRawContactId() { return mNameRawContactId; } public int getDisplayNameSource() { return mDisplayNameSource; } public long getPhotoId() { return mPhotoId; } public String getPhotoUri() { return mPhotoUri; } public String getDisplayName() { return mDisplayName; } public String getAltDisplayName() { return mAltDisplayName; } public String getPhoneticName() { return mPhoneticName; } public boolean getStarred() { return mStarred; } public Integer getPresence() { return mPresence; } /** * This can return non-null invitable account types only if the {@link ContactLoader} was * configured to load invitable account types in its constructor. * @return */ public ImmutableList<AccountType> getInvitableAccountTypes() { return mInvitableAccountTypes; } public ImmutableList<RawContact> getRawContacts() { return mRawContacts; } /** * This can return non-null stream items only if the {@link ContactLoader} was * configured to load stream items in its constructor. * @return */ public ImmutableList<StreamItemEntry> getStreamItems() { return mStreamItems; } public long getDirectoryId() { return mDirectoryId; } public boolean isDirectoryEntry() { return mDirectoryId != -1 && mDirectoryId != Directory.DEFAULT && mDirectoryId != Directory.LOCAL_INVISIBLE; } /** * @return true if this is a contact (not group, etc.) with at least one * writable raw-contact, and false otherwise. */ public boolean isWritableContact(final Context context) { return getFirstWritableRawContactId(context) != -1; } /** * Return the ID of the first raw-contact in the contact data that belongs to a * contact-writable account, or -1 if no such entity exists. */ public long getFirstWritableRawContactId(final Context context) { // Directory entries are non-writable if (isDirectoryEntry()) return -1; // Iterate through raw-contacts; if we find a writable on, return its ID. for (RawContact rawContact : getRawContacts()) { AccountType accountType = rawContact.getAccountType(); if (accountType != null && accountType.areContactsWritable()) { return rawContact.getId(); } } // No writable raw-contact was found. return -1; } public int getDirectoryExportSupport() { return mDirectoryExportSupport; } public String getDirectoryDisplayName() { return mDirectoryDisplayName; } public String getDirectoryType() { return mDirectoryType; } public String getDirectoryAccountType() { return mDirectoryAccountType; } public String getDirectoryAccountName() { return mDirectoryAccountName; } public byte[] getPhotoBinaryData() { return mPhotoBinaryData; } public ArrayList<ContentValues> getContentValues() { if (mRawContacts.size() != 1) { throw new IllegalStateException( "Cannot extract content values from an aggregated contact"); } RawContact rawContact = mRawContacts.get(0); ArrayList<ContentValues> result = new ArrayList<ContentValues>(); for (DataItem dataItem : rawContact.getDataItems()) { result.add(dataItem.getContentValues()); } // If the photo was loaded using the URI, create an entry for the photo // binary data. if (mPhotoId == 0 && mPhotoBinaryData != null) { ContentValues photo = new ContentValues(); photo.put(Data.MIMETYPE, Photo.CONTENT_ITEM_TYPE); photo.put(Photo.PHOTO, mPhotoBinaryData); result.add(photo); } return result; } /** * This can return non-null group meta-data only if the {@link ContactLoader} was configured to * load group metadata in its constructor. * @return */ public ImmutableList<GroupMetaData> getGroupMetaData() { return mGroups; } public boolean isSendToVoicemail() { return mSendToVoicemail; } public String getCustomRingtone() { return mCustomRingtone; } public boolean isUserProfile() { return mIsUserProfile; } @Override public String toString() { return "{requested=" + mRequestedUri + ",lookupkey=" + mLookupKey + ",uri=" + mUri + ",status=" + mStatus + "}"; } /* package */ void setRawContacts(ImmutableList<RawContact> rawContacts) { mRawContacts = rawContacts; } /* package */ void setInvitableAccountTypes(ImmutableList<AccountType> accountTypes) { mInvitableAccountTypes = accountTypes; } /* package */ void setGroupMetaData(ImmutableList<GroupMetaData> groups) { mGroups = groups; } /* package */ void setStreamItems(ImmutableList<StreamItemEntry> streamItems) { mStreamItems = streamItems; } }