/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts

« back to all changes in this revision

Viewing changes to src/am/ed/importcontacts/ContactsBackend.java

  • Committer: edam
  • Date: 2012-12-19 17:41:04 UTC
  • Revision ID: tim@ed.am-20121219174104-ly9xyjxdhqt0tu9b
ignore temporary files in eclipse project

Show diffs side-by-side

added added

removed removed

34
34
import android.net.Uri;
35
35
import android.provider.Contacts;
36
36
 
37
 
@SuppressWarnings( "deprecation" )
38
37
public class ContactsBackend implements Backend
39
38
{
40
39
        private Activity _activity = null;
141
140
                                Contacts.ContactMethods.PERSON_ID,
142
141
                                Contacts.ContactMethods.DATA,
143
142
                                Contacts.ContactMethods.KIND,
144
 
                        }, Contacts.ContactMethods.KIND + " IN( ?, ? )",
145
 
                        new String[] {
 
143
                        }, Contacts.ContactMethods.KIND + " IN( ?, ? )", new String[] {
146
144
                                "" + Contacts.KIND_EMAIL,
147
145
                                "" + Contacts.KIND_POSTAL,
148
146
                        }, Contacts.ContactMethods.ISPRIMARY + " DESC" );
194
192
        }
195
193
 
196
194
        @Override
197
 
        public Long addContact( String name ) throws ContactCreationException
 
195
        public Long addContact( String name )
198
196
        {
199
197
                ContentValues values = new ContentValues();
200
 
                if( name != null )
201
 
                        values.put( Contacts.People.NAME, name );
 
198
                values.put( Contacts.People.NAME, name );
202
199
                Uri contact_uri = _activity.getContentResolver().insert(
203
200
                        Contacts.People.CONTENT_URI, values );
204
201
                Long id = ContentUris.parseId( contact_uri );
205
 
                if( id == 0 )
206
 
                        throw new ContactCreationException();
 
202
                if( id == 0 ) id = null;
207
203
 
208
204
                // try to add them to the "My Contacts" group
209
 
                try {
210
 
                        Contacts.People.addToMyContactsGroup(
211
 
                                _activity.getContentResolver(), id );
212
 
                }
213
 
                catch( IllegalStateException e ) {
214
 
                        // ignore any failure
 
205
                if( id != null ) {
 
206
                        try {
 
207
                                Contacts.People.addToMyContactsGroup(
 
208
                                        _activity.getContentResolver(), id );
 
209
                        }
 
210
                        catch( IllegalStateException e ) {
 
211
                                // ignore any failure
 
212
                        }
215
213
                }
216
214
 
217
215
                return id;
218
216
        }
219
217
 
220
 
        private int convertTypeToBackendType( Class< ? > cls, int type )
221
 
                throws ContactCreationException
222
 
        {
223
 
                if( cls == Contacts.Phones.class )
224
 
                {
225
 
                        switch( type )
226
 
                        {
227
 
                        case ContactData.TYPE_HOME:
228
 
                                return Contacts.Phones.TYPE_HOME;
229
 
                        case ContactData.TYPE_WORK:
230
 
                                return Contacts.Phones.TYPE_WORK;
231
 
                        case ContactData.TYPE_MOBILE:
232
 
                                return Contacts.Phones.TYPE_MOBILE;
233
 
                        case ContactData.TYPE_FAX_HOME:
234
 
                                return Contacts.Phones.TYPE_FAX_HOME;
235
 
                        case ContactData.TYPE_FAX_WORK:
236
 
                                return Contacts.Phones.TYPE_FAX_WORK;
237
 
                        case ContactData.TYPE_PAGER:
238
 
                                return Contacts.Phones.TYPE_PAGER;
239
 
                        }
240
 
                }
241
 
                else if( cls == Contacts.ContactMethods.class )
242
 
                {
243
 
                        switch( type )
244
 
                        {
245
 
                        case ContactData.TYPE_HOME:
246
 
                                return Contacts.ContactMethods.TYPE_HOME;
247
 
                        case ContactData.TYPE_WORK:
248
 
                                return Contacts.ContactMethods.TYPE_WORK;
249
 
                        }
250
 
                }
251
 
 
252
 
                // still here?
253
 
                throw new ContactCreationException();
254
 
        }
255
 
 
256
218
        @Override
257
219
        public void addContactPhone( Long id, String number,
258
 
                ContactData.PreferredDetail data ) throws ContactCreationException
 
220
                ContactData.PreferredDetail data )
259
221
        {
260
222
                Uri contact_phones_uri = Uri.withAppendedPath(
261
223
                        ContentUris.withAppendedId( Contacts.People.CONTENT_URI, id ),
262
224
                        Contacts.People.Phones.CONTENT_DIRECTORY );
263
225
 
264
226
                ContentValues values = new ContentValues();
265
 
                values.put( Contacts.Phones.TYPE,
266
 
                        convertTypeToBackendType( Contacts.Phones.class,
267
 
                                data.getType() ) );
 
227
                values.put( Contacts.Phones.TYPE, data.getType() );
268
228
                values.put( Contacts.Phones.NUMBER, number );
269
229
                if( data.isPreferred() )
270
230
                        values.put( Contacts.Phones.ISPRIMARY, 1 );
274
234
 
275
235
        @Override
276
236
        public void addContactEmail( Long id, String email,
277
 
                ContactData.PreferredDetail data ) throws ContactCreationException
 
237
                ContactData.PreferredDetail data )
278
238
        {
279
239
                Uri contact_contact_methods_uri = Uri.withAppendedPath(
280
240
                        ContentUris.withAppendedId( Contacts.People.CONTENT_URI, id ),
283
243
                ContentValues values = new ContentValues();
284
244
                values.put( Contacts.ContactMethods.KIND, Contacts.KIND_EMAIL );
285
245
                values.put( Contacts.ContactMethods.DATA, email );
286
 
                values.put( Contacts.ContactMethods.TYPE,
287
 
                        convertTypeToBackendType( Contacts.ContactMethods.class,
288
 
                                data.getType() ) );
 
246
                values.put( Contacts.ContactMethods.TYPE, data.getType() );
289
247
                if( data.isPreferred() )
290
248
                        values.put( Contacts.ContactMethods.ISPRIMARY, 1 );
291
249
 
295
253
 
296
254
        @Override
297
255
        public void addContactAddresses( Long id, String address,
298
 
                ContactData.TypeDetail data ) throws ContactCreationException
 
256
                ContactData.TypeDetail data )
299
257
        {
300
258
                Uri contact_contact_methods_uri = Uri.withAppendedPath(
301
259
                        ContentUris.withAppendedId( Contacts.People.CONTENT_URI, id ),
304
262
                ContentValues values = new ContentValues();
305
263
                values.put( Contacts.ContactMethods.KIND, Contacts.KIND_POSTAL );
306
264
                values.put( Contacts.ContactMethods.DATA, address );
307
 
                values.put( Contacts.ContactMethods.TYPE,
308
 
                        convertTypeToBackendType( Contacts.ContactMethods.class,
309
 
                                data.getType() ) );
 
265
                values.put( Contacts.ContactMethods.TYPE, data.getType() );
310
266
 
311
267
                _activity.getContentResolver().insert( contact_contact_methods_uri,
312
268
                        values );
314
270
 
315
271
        @Override
316
272
        public void addContactOrganisation( Long id, String organisation,
317
 
                ContactData.ExtraDetail data ) throws ContactCreationException
 
273
                ContactData.ExtraDetail data )
318
274
        {
319
275
                ContentValues values = new ContentValues();
320
276
                values.put( Contacts.Organizations.PERSON_ID, id );