mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
652 lines
No EOL
23 KiB
Java
652 lines
No EOL
23 KiB
Java
package org.linphone;
|
|
|
|
import java.io.InputStream;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import org.linphone.compatibility.Compatibility;
|
|
import org.linphone.core.LinphoneProxyConfig;
|
|
import org.linphone.mediastream.Version;
|
|
import org.linphone.mediastream.Log;
|
|
import android.annotation.SuppressLint;
|
|
import android.content.ContentProviderOperation;
|
|
import android.content.Context;
|
|
import android.database.Cursor;
|
|
import android.graphics.BitmapFactory;
|
|
import android.os.Bundle;
|
|
import android.provider.ContactsContract;
|
|
import android.app.Fragment;
|
|
import android.text.Editable;
|
|
import android.text.InputType;
|
|
import android.text.TextWatcher;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.View.OnClickListener;
|
|
import android.view.ViewGroup;
|
|
import android.view.inputmethod.InputMethodManager;
|
|
import android.widget.EditText;
|
|
import android.widget.ImageView;
|
|
import android.widget.TableLayout;
|
|
|
|
public class EditContactFragment extends Fragment {
|
|
private View view;
|
|
private ImageView back, edit, ok;
|
|
private ImageView addNumber, addSipAddress;
|
|
private EditText firstName, lastName;
|
|
private LayoutInflater inflater;
|
|
|
|
private boolean isNewContact = true;
|
|
private Contact contact;
|
|
private int contactID;
|
|
private List<NewOrUpdatedNumberOrAddress> numbersAndAddresses;
|
|
private ArrayList<ContentProviderOperation> ops;
|
|
private int firstSipAddressIndex = -1;
|
|
private TableLayout sipAddresses, numbers;
|
|
private String newSipOrNumberToAdd;
|
|
private ContactsManager contactsManager;
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
|
this.inflater = inflater;
|
|
|
|
contact = null;
|
|
if (getArguments() != null) {
|
|
if (getArguments().getSerializable("Contact") != null) {
|
|
contact = (Contact) getArguments().getSerializable("Contact");
|
|
isNewContact = false;
|
|
contactID = Integer.parseInt(contact.getID());
|
|
contact.refresh(getActivity().getContentResolver());
|
|
if (getArguments().getString("NewSipAdress") != null) {
|
|
newSipOrNumberToAdd = getArguments().getString("NewSipAdress");
|
|
}
|
|
|
|
} else if (getArguments().getString("NewSipAdress") != null) {
|
|
newSipOrNumberToAdd = getArguments().getString("NewSipAdress");
|
|
isNewContact = true;
|
|
}
|
|
}
|
|
|
|
contactsManager = ContactsManager.getInstance();
|
|
|
|
view = inflater.inflate(R.layout.edit_contact, container, false);
|
|
|
|
ImageView back = (ImageView) view.findViewById(R.id.back);
|
|
back.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
getFragmentManager().popBackStackImmediate();
|
|
}
|
|
});
|
|
|
|
ok = (ImageView) view.findViewById(R.id.ok);
|
|
ok.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
if (isNewContact) {
|
|
if (getResources().getBoolean(R.bool.forbid_empty_new_contact_in_editor)) {
|
|
boolean areAllFielsEmpty = true;
|
|
for (NewOrUpdatedNumberOrAddress nounoa : numbersAndAddresses) {
|
|
if (nounoa.newNumberOrAddress != null && !nounoa.newNumberOrAddress.equals("")) {
|
|
areAllFielsEmpty = false;
|
|
break;
|
|
}
|
|
}
|
|
if (areAllFielsEmpty) {
|
|
getFragmentManager().popBackStackImmediate();
|
|
return;
|
|
}
|
|
}
|
|
contactsManager.createNewContact(ops, firstName.getText().toString(), lastName.getText().toString());
|
|
} else {
|
|
contactsManager.updateExistingContact(ops, contact, firstName.getText().toString(), lastName.getText().toString());
|
|
}
|
|
|
|
for (NewOrUpdatedNumberOrAddress numberOrAddress : numbersAndAddresses) {
|
|
numberOrAddress.save();
|
|
}
|
|
|
|
try {
|
|
getActivity().getContentResolver().applyBatch(ContactsContract.AUTHORITY, ops);
|
|
addLinphoneFriendIfNeeded();
|
|
removeLinphoneTagIfNeeded();
|
|
contactsManager.prepareContactsInBackground();
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
getFragmentManager().popBackStackImmediate();
|
|
|
|
if(LinphoneActivity.instance().getResources().getBoolean(R.bool.isTablet))
|
|
ContactsFragment.instance().invalidate();
|
|
}
|
|
});
|
|
|
|
lastName = (EditText) view.findViewById(R.id.contactLastName);
|
|
// Hack to display keyboard when touching focused edittext on Nexus One
|
|
if (Version.sdkStrictlyBelow(Version.API11_HONEYCOMB_30)) {
|
|
lastName.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
InputMethodManager imm = (InputMethodManager) LinphoneActivity.instance().getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,0);
|
|
}
|
|
});
|
|
}
|
|
lastName.addTextChangedListener(new TextWatcher() {
|
|
@Override
|
|
public void onTextChanged(CharSequence s, int start, int before, int count) {
|
|
if (lastName.getText().length() > 0 || firstName.getText().length() > 0) {
|
|
ok.setEnabled(true);
|
|
} else {
|
|
ok.setEnabled(false);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
|
}
|
|
|
|
@Override
|
|
public void afterTextChanged(Editable s) {
|
|
}
|
|
});
|
|
|
|
firstName = (EditText) view.findViewById(R.id.contactFirstName);
|
|
firstName.addTextChangedListener(new TextWatcher() {
|
|
@Override
|
|
public void onTextChanged(CharSequence s, int start, int before, int count) {
|
|
if (firstName.getText().length() > 0 || lastName.getText().length() > 0) {
|
|
ok.setEnabled(true);
|
|
} else {
|
|
ok.setEnabled(false);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
|
}
|
|
|
|
@Override
|
|
public void afterTextChanged(Editable s) {
|
|
}
|
|
});
|
|
|
|
if (!isNewContact) {
|
|
String fn = findContactFirstName(String.valueOf(contactID));
|
|
String ln = findContactLastName(String.valueOf(contactID));
|
|
if (fn != null || ln != null) {
|
|
firstName.setText(fn);
|
|
lastName.setText(ln);
|
|
} else {
|
|
lastName.setText(contact.getName());
|
|
firstName.setText("");
|
|
}
|
|
}
|
|
|
|
ImageView contactPicture = (ImageView) view.findViewById(R.id.contactPicture);
|
|
if (contact != null && contact.getPhotoUri() != null) {
|
|
InputStream input = Compatibility.getContactPictureInputStream(getActivity().getContentResolver(), contact.getID());
|
|
contactPicture.setImageBitmap(BitmapFactory.decodeStream(input));
|
|
} else {
|
|
//contactPicture.setImageResource(R.drawable.unknown_small);
|
|
}
|
|
|
|
numbers = initNumbersFields(contact);
|
|
sipAddresses = initSipAddressFields(contact);
|
|
|
|
addNumber = (ImageView) view.findViewById(R.id.add_number_field);
|
|
addNumber.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View view) {
|
|
addEmptyRowToAllowNewNumberOrAddress(numbers,false);
|
|
}
|
|
});
|
|
addSipAddress = (ImageView) view.findViewById(R.id.add_address_field);
|
|
addSipAddress.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View view) {
|
|
addEmptyRowToAllowNewNumberOrAddress(sipAddresses,true);
|
|
}
|
|
});
|
|
|
|
ops = new ArrayList<ContentProviderOperation>();
|
|
lastName.requestFocus();
|
|
|
|
return view;
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
|
|
if (LinphoneActivity.isInstanciated()) {
|
|
if (getResources().getBoolean(R.bool.show_statusbar_only_on_dialer)) {
|
|
LinphoneActivity.instance().hideStatusBar();
|
|
}
|
|
}
|
|
}
|
|
|
|
private TableLayout initNumbersFields(final Contact contact) {
|
|
TableLayout controls = (TableLayout) view.findViewById(R.id.controls_numbers);
|
|
controls.removeAllViews();
|
|
numbersAndAddresses = new ArrayList<NewOrUpdatedNumberOrAddress>();
|
|
|
|
if (contact != null) {
|
|
for (String numberOrAddress : contact.getNumbersOrAddresses()) {
|
|
boolean isSip = LinphoneUtils.isStrictSipAddress(numberOrAddress) || !LinphoneUtils.isNumberAddress(numberOrAddress);
|
|
if(!isSip) {
|
|
View view = displayNumberOrAddress(controls, numberOrAddress);
|
|
if (view != null)
|
|
controls.addView(view);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (newSipOrNumberToAdd != null) {
|
|
boolean isSip = LinphoneUtils.isStrictSipAddress(newSipOrNumberToAdd) || !LinphoneUtils.isNumberAddress(newSipOrNumberToAdd);
|
|
if(!isSip) {
|
|
View view = displayNumberOrAddress(controls, newSipOrNumberToAdd);
|
|
if (view != null)
|
|
controls.addView(view);
|
|
}
|
|
}
|
|
|
|
if (controls.getChildCount() == 0) {
|
|
addEmptyRowToAllowNewNumberOrAddress(controls,false);
|
|
}
|
|
|
|
return controls;
|
|
}
|
|
|
|
private TableLayout initSipAddressFields(final Contact contact) {
|
|
TableLayout controls = (TableLayout) view.findViewById(R.id.controls_sip_address);
|
|
controls.removeAllViews();
|
|
numbersAndAddresses = new ArrayList<NewOrUpdatedNumberOrAddress>();
|
|
|
|
if (contact != null) {
|
|
for (String numberOrAddress : contact.getNumbersOrAddresses()) {
|
|
boolean isSip = LinphoneUtils.isStrictSipAddress(numberOrAddress) || !LinphoneUtils.isNumberAddress(numberOrAddress);
|
|
if(isSip) {
|
|
View view = displayNumberOrAddress(controls, numberOrAddress);
|
|
if (view != null)
|
|
controls.addView(view);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (newSipOrNumberToAdd != null) {
|
|
boolean isSip = LinphoneUtils.isStrictSipAddress(newSipOrNumberToAdd) || !LinphoneUtils.isNumberAddress(newSipOrNumberToAdd);
|
|
if(isSip) {
|
|
View view = displayNumberOrAddress(controls, newSipOrNumberToAdd);
|
|
if (view != null)
|
|
controls.addView(view);
|
|
}
|
|
}
|
|
|
|
if (controls.getChildCount() == 0) {
|
|
addEmptyRowToAllowNewNumberOrAddress(controls,true);
|
|
}
|
|
|
|
return controls;
|
|
}
|
|
|
|
private View displayNumberOrAddress(final TableLayout controls, String numberOrAddress) {
|
|
return displayNumberOrAddress(controls, numberOrAddress, false);
|
|
}
|
|
|
|
@SuppressLint("InflateParams")
|
|
private View displayNumberOrAddress(final TableLayout controls, String numberOrAddress, boolean forceAddNumber) {
|
|
boolean isSip = LinphoneUtils.isStrictSipAddress(numberOrAddress) || !LinphoneUtils.isNumberAddress(numberOrAddress);
|
|
|
|
if (isSip) {
|
|
if (firstSipAddressIndex == -1) {
|
|
firstSipAddressIndex = controls.getChildCount();
|
|
}
|
|
numberOrAddress = numberOrAddress.replace("sip:", "");
|
|
}
|
|
if ((getResources().getBoolean(R.bool.hide_phone_numbers_in_editor) && !isSip) || (getResources().getBoolean(R.bool.hide_sip_addresses_in_editor) && isSip)) {
|
|
if (forceAddNumber)
|
|
isSip = !isSip; // If number can't be displayed because we hide a sort of number, change that category
|
|
else
|
|
return null;
|
|
}
|
|
|
|
NewOrUpdatedNumberOrAddress tempNounoa;
|
|
if (forceAddNumber) {
|
|
tempNounoa = new NewOrUpdatedNumberOrAddress(isSip);
|
|
} else {
|
|
if(isNewContact || newSipOrNumberToAdd != null) {
|
|
tempNounoa = new NewOrUpdatedNumberOrAddress(isSip, numberOrAddress);
|
|
} else {
|
|
tempNounoa = new NewOrUpdatedNumberOrAddress(numberOrAddress, isSip);
|
|
}
|
|
}
|
|
final NewOrUpdatedNumberOrAddress nounoa = tempNounoa;
|
|
numbersAndAddresses.add(nounoa);
|
|
|
|
final View view = inflater.inflate(R.layout.contact_edit_row, null);
|
|
|
|
final EditText noa = (EditText) view.findViewById(R.id.numoraddr);
|
|
noa.setInputType(isSip ? InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS : InputType.TYPE_CLASS_PHONE);
|
|
noa.setText(numberOrAddress);
|
|
noa.addTextChangedListener(new TextWatcher() {
|
|
@Override
|
|
public void onTextChanged(CharSequence s, int start, int before, int count) {
|
|
nounoa.setNewNumberOrAddress(noa.getText().toString());
|
|
}
|
|
|
|
@Override
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
|
}
|
|
|
|
@Override
|
|
public void afterTextChanged(Editable s) {
|
|
}
|
|
});
|
|
if (forceAddNumber) {
|
|
nounoa.setNewNumberOrAddress(noa.getText().toString());
|
|
}
|
|
|
|
ImageView delete = (ImageView) view.findViewById(R.id.delete);
|
|
delete.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
nounoa.delete();
|
|
numbersAndAddresses.remove(nounoa);
|
|
view.setVisibility(View.GONE);
|
|
|
|
}
|
|
});
|
|
return view;
|
|
}
|
|
|
|
@SuppressLint("InflateParams")
|
|
private void addEmptyRowToAllowNewNumberOrAddress(final TableLayout controls, final boolean isSip) {
|
|
final View view = inflater.inflate(R.layout.contact_edit_row, null);
|
|
|
|
final NewOrUpdatedNumberOrAddress nounoa = new NewOrUpdatedNumberOrAddress(isSip);
|
|
|
|
final EditText noa = (EditText) view.findViewById(R.id.numoraddr);
|
|
numbersAndAddresses.add(nounoa);
|
|
noa.setHint(isSip ? getString(R.string.sip_address) : getString(R.string.phone_number));
|
|
noa.setInputType(isSip ? InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS : InputType.TYPE_CLASS_PHONE);
|
|
noa.requestFocus();
|
|
noa.addTextChangedListener(new TextWatcher() {
|
|
@Override
|
|
public void onTextChanged(CharSequence s, int start, int before, int count) {
|
|
nounoa.setNewNumberOrAddress(noa.getText().toString());
|
|
}
|
|
|
|
@Override
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
|
}
|
|
|
|
@Override
|
|
public void afterTextChanged(Editable s) {
|
|
}
|
|
});
|
|
|
|
final ImageView delete = (ImageView) view.findViewById(R.id.delete);
|
|
delete.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
nounoa.delete();
|
|
numbersAndAddresses.remove(nounoa);
|
|
view.setVisibility(View.GONE);
|
|
}
|
|
|
|
});
|
|
/*if (!isSip) {
|
|
firstSipAddressIndex++;
|
|
addEmptyRowToAllowNewNumberOrAddress(controls, false);
|
|
} else {
|
|
addEmptyRowToAllowNewNumberOrAddress(controls, true);
|
|
}
|
|
}*/
|
|
|
|
controls.addView(view, controls.getChildCount());
|
|
|
|
//if (firstSipAddressIndex != -1) {
|
|
// controls.addView(view, firstSipAddressIndex);
|
|
//} else {
|
|
// controls.addView(view);
|
|
//}
|
|
//}
|
|
}
|
|
|
|
private String findContactFirstName(String contactID) {
|
|
Cursor c = getActivity().getContentResolver().query(ContactsContract.Data.CONTENT_URI,
|
|
new String[]{ContactsContract.CommonDataKinds.StructuredName.GIVEN_NAME},
|
|
ContactsContract.Data.CONTACT_ID + "=? AND " + ContactsContract.Data.MIMETYPE + "=?",
|
|
new String[]{contactID, ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE}, null);
|
|
if (c != null) {
|
|
String result = null;
|
|
if (c.moveToFirst()) {
|
|
result = c.getString(c.getColumnIndex(ContactsContract.CommonDataKinds.StructuredName.GIVEN_NAME));
|
|
}
|
|
c.close();
|
|
return result;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private String findContactLastName(String contactID) {
|
|
Cursor c = getActivity().getContentResolver().query(ContactsContract.Data.CONTENT_URI,
|
|
new String[]{ContactsContract.CommonDataKinds.StructuredName.FAMILY_NAME},
|
|
ContactsContract.Data.CONTACT_ID + "=? AND " + ContactsContract.Data.MIMETYPE + "=?",
|
|
new String[]{contactID, ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE}, null);
|
|
if (c != null) {
|
|
String result = null;
|
|
if (c.moveToFirst()) {
|
|
result = c.getString(c.getColumnIndex(ContactsContract.CommonDataKinds.StructuredName.FAMILY_NAME));
|
|
}
|
|
c.close();
|
|
return result;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private void addLinphoneFriendIfNeeded(){
|
|
for (NewOrUpdatedNumberOrAddress numberOrAddress : numbersAndAddresses) {
|
|
if(numberOrAddress.newNumberOrAddress != null && numberOrAddress.isSipAddress) {
|
|
if(isNewContact){
|
|
Contact c = contactsManager.findContactWithDisplayName(ContactsManager.getInstance().getDisplayName(firstName.getText().toString(), lastName.getText().toString()));
|
|
if (c != null && !contactsManager.isContactHasAddress(c, numberOrAddress.newNumberOrAddress)) {
|
|
contactsManager.createNewFriend(c, numberOrAddress.newNumberOrAddress);
|
|
}
|
|
} else {
|
|
if (!contactsManager.isContactHasAddress(contact, numberOrAddress.newNumberOrAddress)){
|
|
if (numberOrAddress.oldNumberOrAddress == null) {
|
|
contactsManager.createNewFriend(contact, numberOrAddress.newNumberOrAddress);
|
|
} else {
|
|
if (contact.hasFriends())
|
|
contactsManager.updateFriend(numberOrAddress.oldNumberOrAddress, numberOrAddress.newNumberOrAddress);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private void removeLinphoneTagIfNeeded(){
|
|
if(!isNewContact) {
|
|
boolean areAllSipFielsEmpty = true;
|
|
for (NewOrUpdatedNumberOrAddress nounoa : numbersAndAddresses) {
|
|
if (!nounoa.isSipAddress && (nounoa.oldNumberOrAddress != null && !nounoa.oldNumberOrAddress.equals("") || nounoa.newNumberOrAddress != null && !nounoa.newNumberOrAddress.equals(""))) {
|
|
areAllSipFielsEmpty = false;
|
|
break;
|
|
}
|
|
}
|
|
if (areAllSipFielsEmpty && contactsManager.findRawLinphoneContactID(contact.getID()) != null) {
|
|
contactsManager.removeLinphoneContactTag(contact);
|
|
}
|
|
}
|
|
}
|
|
|
|
class NewOrUpdatedNumberOrAddress {
|
|
private String oldNumberOrAddress;
|
|
private String newNumberOrAddress;
|
|
private boolean isSipAddress;
|
|
|
|
public NewOrUpdatedNumberOrAddress() {
|
|
oldNumberOrAddress = null;
|
|
newNumberOrAddress = null;
|
|
isSipAddress = false;
|
|
}
|
|
|
|
public NewOrUpdatedNumberOrAddress(boolean isSip) {
|
|
oldNumberOrAddress = null;
|
|
newNumberOrAddress = null;
|
|
isSipAddress = isSip;
|
|
}
|
|
|
|
public NewOrUpdatedNumberOrAddress(String old, boolean isSip) {
|
|
oldNumberOrAddress = old;
|
|
newNumberOrAddress = null;
|
|
isSipAddress = isSip;
|
|
}
|
|
|
|
public NewOrUpdatedNumberOrAddress(boolean isSip, String newSip) {
|
|
oldNumberOrAddress = null;
|
|
newNumberOrAddress = newSip;
|
|
isSipAddress = isSip;
|
|
}
|
|
|
|
public void setNewNumberOrAddress(String newN) {
|
|
newNumberOrAddress = newN;
|
|
}
|
|
|
|
public void save() {
|
|
if (newNumberOrAddress == null || newNumberOrAddress.equals(oldNumberOrAddress))
|
|
return;
|
|
|
|
if (oldNumberOrAddress == null) {
|
|
// New number to add
|
|
addNewNumber();
|
|
} else {
|
|
// Old number to update
|
|
updateNumber();
|
|
}
|
|
}
|
|
|
|
public void delete() {
|
|
if(contact != null) {
|
|
if (isSipAddress) {
|
|
if (contact.hasFriends()) {
|
|
ContactsManager.getInstance().removeFriend(oldNumberOrAddress);
|
|
} else {
|
|
Compatibility.deleteSipAddressFromContact(ops, oldNumberOrAddress, String.valueOf(contactID));
|
|
}
|
|
if (getResources().getBoolean(R.bool.use_linphone_tag)) {
|
|
Compatibility.deleteLinphoneContactTag(ops, oldNumberOrAddress, contactsManager.findRawLinphoneContactID(String.valueOf(contactID)));
|
|
}
|
|
} else {
|
|
String select = ContactsContract.Data.CONTACT_ID + "=? AND "
|
|
+ ContactsContract.Data.MIMETYPE + "='" + ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE + "' AND "
|
|
+ ContactsContract.CommonDataKinds.Phone.NUMBER + "=?";
|
|
String[] args = new String[]{String.valueOf(contactID), oldNumberOrAddress};
|
|
|
|
ops.add(ContentProviderOperation.newDelete(ContactsContract.Data.CONTENT_URI)
|
|
.withSelection(select, args)
|
|
.build()
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void addNewNumber() {
|
|
if (newNumberOrAddress == null || newNumberOrAddress.length() == 0) {
|
|
return;
|
|
}
|
|
|
|
if (isNewContact) {
|
|
if (isSipAddress) {
|
|
if (newNumberOrAddress.startsWith("sip:"))
|
|
newNumberOrAddress = newNumberOrAddress.substring(4);
|
|
if(!newNumberOrAddress.contains("@")) {
|
|
//Use default proxy config domain if it exists
|
|
LinphoneProxyConfig lpc = LinphoneManager.getLc().getDefaultProxyConfig();
|
|
if(lpc != null){
|
|
newNumberOrAddress = newNumberOrAddress + "@" + lpc.getDomain();
|
|
} else {
|
|
newNumberOrAddress = newNumberOrAddress + "@" + getResources().getString(R.string.default_domain);
|
|
}
|
|
}
|
|
Compatibility.addSipAddressToContact(getActivity(), ops, newNumberOrAddress);
|
|
} else {
|
|
ops.add(ContentProviderOperation.newInsert(ContactsContract.Data.CONTENT_URI)
|
|
.withValueBackReference(ContactsContract.Data.RAW_CONTACT_ID, 0)
|
|
.withValue(ContactsContract.Data.MIMETYPE, ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE)
|
|
.withValue(ContactsContract.CommonDataKinds.Phone.NUMBER, newNumberOrAddress)
|
|
.withValue(ContactsContract.CommonDataKinds.Phone.TYPE, ContactsContract.CommonDataKinds.Phone.TYPE_CUSTOM)
|
|
.withValue(ContactsContract.CommonDataKinds.Phone.LABEL, getString(R.string.addressbook_label))
|
|
.build()
|
|
);
|
|
}
|
|
} else {
|
|
String rawContactId = contactsManager.findRawContactID(getActivity().getContentResolver(),String.valueOf(contactID));
|
|
if (isSipAddress) {
|
|
if (newNumberOrAddress.startsWith("sip:"))
|
|
newNumberOrAddress = newNumberOrAddress.substring(4);
|
|
if(!newNumberOrAddress.contains("@")) {
|
|
//Use default proxy config domain if it exists
|
|
LinphoneProxyConfig lpc = LinphoneManager.getLc().getDefaultProxyConfig();
|
|
if(lpc != null){
|
|
newNumberOrAddress = newNumberOrAddress + "@" + lpc.getDomain();
|
|
} else {
|
|
newNumberOrAddress = newNumberOrAddress + "@" + getResources().getString(R.string.default_domain);
|
|
}
|
|
}
|
|
|
|
Compatibility.addSipAddressToContact(getActivity(), ops, newNumberOrAddress, rawContactId);
|
|
if (getResources().getBoolean(R.bool.use_linphone_tag)) {
|
|
Compatibility.addLinphoneContactTag(getActivity(), ops, newNumberOrAddress, contactsManager.findRawLinphoneContactID(String.valueOf(contactID)));
|
|
}
|
|
} else {
|
|
ops.add(ContentProviderOperation.newInsert(ContactsContract.Data.CONTENT_URI)
|
|
.withValue(ContactsContract.Data.RAW_CONTACT_ID, rawContactId)
|
|
.withValue(ContactsContract.Data.MIMETYPE, ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE)
|
|
.withValue(ContactsContract.CommonDataKinds.Phone.NUMBER, newNumberOrAddress)
|
|
.withValue(ContactsContract.CommonDataKinds.Phone.TYPE, ContactsContract.CommonDataKinds.Phone.TYPE_CUSTOM)
|
|
.withValue(ContactsContract.CommonDataKinds.Phone.LABEL, getString(R.string.addressbook_label))
|
|
.build()
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void updateNumber() {
|
|
if (newNumberOrAddress == null || newNumberOrAddress.length() == 0) {
|
|
return;
|
|
}
|
|
|
|
if (isSipAddress) {
|
|
if (newNumberOrAddress.startsWith("sip:"))
|
|
newNumberOrAddress = newNumberOrAddress.substring(4);
|
|
if(!newNumberOrAddress.contains("@")) {
|
|
//Use default proxy config domain if it exists
|
|
LinphoneProxyConfig lpc = LinphoneManager.getLc().getDefaultProxyConfig();
|
|
if(lpc != null){
|
|
newNumberOrAddress = newNumberOrAddress + "@" + lpc.getDomain();
|
|
} else {
|
|
newNumberOrAddress = newNumberOrAddress + "@" + getResources().getString(R.string.default_domain);
|
|
}
|
|
}
|
|
Compatibility.updateSipAddressForContact(ops, oldNumberOrAddress, newNumberOrAddress, String.valueOf(contactID));
|
|
if (getResources().getBoolean(R.bool.use_linphone_tag)) {
|
|
Compatibility.updateLinphoneContactTag(getActivity(), ops, newNumberOrAddress, oldNumberOrAddress, contactsManager.findRawLinphoneContactID(String.valueOf(contactID)));
|
|
}
|
|
} else {
|
|
String select = ContactsContract.Data.CONTACT_ID + "=? AND "
|
|
+ ContactsContract.Data.MIMETYPE + "='" + ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE + "' AND "
|
|
+ ContactsContract.CommonDataKinds.Phone.NUMBER + "=?";
|
|
String[] args = new String[] { String.valueOf(contactID), oldNumberOrAddress };
|
|
|
|
ops.add(ContentProviderOperation.newUpdate(ContactsContract.Data.CONTENT_URI)
|
|
.withSelection(select, args)
|
|
.withValue(ContactsContract.Data.MIMETYPE, ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE)
|
|
.withValue(ContactsContract.CommonDataKinds.Phone.NUMBER, newNumberOrAddress)
|
|
.build()
|
|
);
|
|
}
|
|
}
|
|
}
|
|
} |