/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:51:35 UTC
  • Revision ID: tim@ed.am-20121219175135-1cpuafp76jg1ib1p
added preliminary (buggy) ContactsContract backend

Show diffs side-by-side

added added

removed removed

34
34
import android.net.Uri;
35
35
import android.provider.Contacts;
36
36
 
37
 
 
 
37
@SuppressWarnings( "deprecation" )
38
38
public class ContactsBackend implements Backend
39
39
{
40
40
        private Activity _activity = null;
50
50
                Cursor cur;
51
51
 
52
52
                // set of contact ids that we have not yet added
53
 
                HashSet< Long > unadded = new HashSet< Long >();
 
53
                HashSet< Long > unadded_ids = new HashSet< Long >();
54
54
 
55
55
                // get all contacts
56
56
                cur = _activity.managedQuery( Contacts.People.CONTENT_URI,
76
76
 
77
77
                        // record that a lookup for this contact's id still needs to be
78
78
                        // added by some other means
79
 
                        unadded.add( id );
 
79
                        unadded_ids.add( id );
80
80
                }
81
81
 
82
82
                // get contact organisations, primary ones first
96
96
                                // if this is an organisation name for a contact for whom we
97
97
                                // have not added a lookup, add a lookup for the contact id
98
98
                                // by organisation
99
 
                                if( unadded.contains( id ) ) {
 
99
                                if( unadded_ids.contains( id ) ) {
100
100
                                        cache.addLookup( new CacheIdentifier(
101
101
                                                CacheIdentifier.Type.ORGANISATION, organisation ), id );
102
 
                                        unadded.remove( id );
 
102
                                        unadded_ids.remove( id );
103
103
                                }
104
104
 
105
105
                                // add associated data
124
124
                                // if this is a number for a contact for whom we have not
125
125
                                // added a lookup, add a lookup for the contact id by phone
126
126
                                // number
127
 
                                if( unadded.contains( id ) ) {
 
127
                                if( unadded_ids.contains( id ) ) {
128
128
                                        cache.addLookup( new CacheIdentifier(
129
129
                                                CacheIdentifier.Type.PRIMARY_NUMBER, number ), id );
130
 
                                        unadded.remove( id );
 
130
                                        unadded_ids.remove( id );
131
131
                                }
132
132
 
133
133
                                // add associated data
141
141
                                Contacts.ContactMethods.PERSON_ID,
142
142
                                Contacts.ContactMethods.DATA,
143
143
                                Contacts.ContactMethods.KIND,
144
 
                        }, Contacts.ContactMethods.KIND + " IN( ?, ? )", new String[] {
 
144
                        }, Contacts.ContactMethods.KIND + " IN( ?, ? )",
 
145
                        new String[] {
145
146
                                "" + Contacts.KIND_EMAIL,
146
147
                                "" + Contacts.KIND_POSTAL,
147
148
                        }, Contacts.ContactMethods.ISPRIMARY + " DESC" );
160
161
                                        // if this is an email address for a contact for whom we
161
162
                                        // have not added a lookup, add a lookup for the contact
162
163
                                        // id by email address
163
 
                                        if( unadded.contains( id ) ) {
 
164
                                        if( unadded_ids.contains( id ) ) {
164
165
                                                cache.addLookup( new CacheIdentifier(
165
166
                                                        CacheIdentifier.Type.PRIMARY_EMAIL, email ), id );
166
 
                                                unadded.remove( id );
 
167
                                                unadded_ids.remove( id );
167
168
                                        }
168
169
 
169
170
                                        // add associated data
193
194
        }
194
195
 
195
196
        @Override
196
 
        public Long addContact( String name )
 
197
        public Long addContact( String name ) throws ContactCreationException
197
198
        {
198
199
                ContentValues values = new ContentValues();
199
 
                values.put( Contacts.People.NAME, name );
 
200
                if( name != null )
 
201
                        values.put( Contacts.People.NAME, name );
200
202
                Uri contact_uri = _activity.getContentResolver().insert(
201
203
                        Contacts.People.CONTENT_URI, values );
202
204
                Long id = ContentUris.parseId( contact_uri );
 
205
                if( id == 0 )
 
206
                        throw new ContactCreationException();
203
207
 
204
208
                // try to add them to the "My Contacts" group
205
 
                if( id != null && id > 0 ) {
206
 
                        try {
207
 
                                Contacts.People.addToMyContactsGroup(
208
 
                                        _activity.getContentResolver(), id );
209
 
                        }
210
 
                        catch( IllegalStateException e ) {
211
 
                                // ignore any failure
212
 
                        }
213
 
                }
214
 
 
215
 
                return id == null? 0 : id;
 
209
                try {
 
210
                        Contacts.People.addToMyContactsGroup(
 
211
                                _activity.getContentResolver(), id );
 
212
                }
 
213
                catch( IllegalStateException e ) {
 
214
                        // ignore any failure
 
215
                }
 
216
 
 
217
                return id;
 
218
        }
 
219
 
 
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();
216
254
        }
217
255
 
218
256
        @Override
219
257
        public void addContactPhone( Long id, String number,
220
 
                ContactData.PreferredDetail data )
 
258
                ContactData.PreferredDetail data ) throws ContactCreationException
221
259
        {
222
260
                Uri contact_phones_uri = Uri.withAppendedPath(
223
261
                        ContentUris.withAppendedId( Contacts.People.CONTENT_URI, id ),
224
262
                        Contacts.People.Phones.CONTENT_DIRECTORY );
225
263
 
226
264
                ContentValues values = new ContentValues();
227
 
                values.put( Contacts.Phones.TYPE, data.getType() );
 
265
                values.put( Contacts.Phones.TYPE,
 
266
                        convertTypeToBackendType( Contacts.Phones.class,
 
267
                                data.getType() ) );
228
268
                values.put( Contacts.Phones.NUMBER, number );
229
269
                if( data.isPreferred() )
230
270
                        values.put( Contacts.Phones.ISPRIMARY, 1 );
234
274
 
235
275
        @Override
236
276
        public void addContactEmail( Long id, String email,
237
 
                ContactData.PreferredDetail data )
 
277
                ContactData.PreferredDetail data ) throws ContactCreationException
238
278
        {
239
279
                Uri contact_contact_methods_uri = Uri.withAppendedPath(
240
280
                        ContentUris.withAppendedId( Contacts.People.CONTENT_URI, id ),
243
283
                ContentValues values = new ContentValues();
244
284
                values.put( Contacts.ContactMethods.KIND, Contacts.KIND_EMAIL );
245
285
                values.put( Contacts.ContactMethods.DATA, email );
246
 
                values.put( Contacts.ContactMethods.TYPE, data.getType() );
 
286
                values.put( Contacts.ContactMethods.TYPE,
 
287
                        convertTypeToBackendType( Contacts.ContactMethods.class,
 
288
                                data.getType() ) );
247
289
                if( data.isPreferred() )
248
290
                        values.put( Contacts.ContactMethods.ISPRIMARY, 1 );
249
291
 
253
295
 
254
296
        @Override
255
297
        public void addContactAddresses( Long id, String address,
256
 
                ContactData.TypeDetail data )
 
298
                ContactData.TypeDetail data ) throws ContactCreationException
257
299
        {
258
300
                Uri contact_contact_methods_uri = Uri.withAppendedPath(
259
301
                        ContentUris.withAppendedId( Contacts.People.CONTENT_URI, id ),
262
304
                ContentValues values = new ContentValues();
263
305
                values.put( Contacts.ContactMethods.KIND, Contacts.KIND_POSTAL );
264
306
                values.put( Contacts.ContactMethods.DATA, address );
265
 
                values.put( Contacts.ContactMethods.TYPE, data.getType() );
 
307
                values.put( Contacts.ContactMethods.TYPE,
 
308
                        convertTypeToBackendType( Contacts.ContactMethods.class,
 
309
                                data.getType() ) );
266
310
 
267
311
                _activity.getContentResolver().insert( contact_contact_methods_uri,
268
312
                        values );
270
314
 
271
315
        @Override
272
316
        public void addContactOrganisation( Long id, String organisation,
273
 
                ContactData.ExtraDetail data )
 
317
                ContactData.ExtraDetail data ) throws ContactCreationException
274
318
        {
275
319
                ContentValues values = new ContentValues();
276
320
                values.put( Contacts.Organizations.PERSON_ID, id );