1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
|
/*
* Copyright (C) 2010 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.android.browser.preferences;
import com.android.browser.BrowserBookmarksPage;
import com.android.browser.BrowserHomepagePreference;
import com.android.browser.BrowserPreferencesPage;
import com.android.browser.BrowserSettings;
import com.android.browser.R;
import android.accounts.Account;
import android.accounts.AccountManager;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.DialogFragment;
import android.app.Fragment;
import android.content.ContentProviderOperation;
import android.content.ContentResolver;
import android.content.ContentValues;
import android.content.Context;
import android.content.DialogInterface;
import android.content.OperationApplicationException;
import android.content.SharedPreferences;
import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
import android.database.Cursor;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.RemoteException;
import android.preference.Preference;
import android.preference.Preference.OnPreferenceClickListener;
import android.preference.PreferenceFragment;
import android.preference.PreferenceManager;
import android.preference.PreferenceScreen;
import android.provider.BrowserContract;
import android.provider.BrowserContract.Bookmarks;
import android.provider.BrowserContract.ChromeSyncColumns;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.LinearLayout;
import java.util.ArrayList;
public class GeneralPreferencesFragment extends PreferenceFragment
implements OnPreferenceClickListener, Preference.OnPreferenceChangeListener {
static final String TAG = "PersonalPreferencesFragment";
static final String PREF_CHROME_SYNC = "sync_with_chrome";
Preference mChromeSync;
boolean mEnabled;
SharedPreferences mSharedPrefs;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Load the XML preferences file
addPreferencesFromResource(R.xml.general_preferences);
Preference e = findPreference(BrowserSettings.PREF_HOMEPAGE);
e.setOnPreferenceChangeListener(this);
e.setSummary(getPreferenceScreen().getSharedPreferences()
.getString(BrowserSettings.PREF_HOMEPAGE, null));
((BrowserHomepagePreference) e).setCurrentPage(
getActivity().getIntent().getStringExtra(BrowserPreferencesPage.CURRENT_PAGE));
}
@Override
public boolean onPreferenceChange(Preference pref, Object objValue) {
if (getActivity() == null) {
// We aren't attached, so don't accept preferences changes from the
// invisible UI.
Log.w("PageContentPreferencesFragment", "onPreferenceChange called from detached fragment!");
return false;
}
if (pref.getKey().equals(BrowserSettings.PREF_HOMEPAGE)) {
pref.setSummary((String) objValue);
return true;
}
return false;
}
@Override
public void onResume() {
super.onResume();
// Setup the proper state for the sync with chrome item
mChromeSync = findPreference(PREF_CHROME_SYNC);
refreshUi();
mSharedPrefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
mSharedPrefs.registerOnSharedPreferenceChangeListener(mListener);
}
@Override
public void onPause() {
super.onPause();
mSharedPrefs.unregisterOnSharedPreferenceChangeListener(mListener);
}
OnSharedPreferenceChangeListener mListener
= new OnSharedPreferenceChangeListener() {
@Override
public void onSharedPreferenceChanged(
SharedPreferences sharedPreferences, String key) {
if (BrowserBookmarksPage.PREF_ACCOUNT_NAME.equals(key)
|| BrowserBookmarksPage.PREF_ACCOUNT_TYPE.equals(key)) {
refreshUi();
}
}
};
private class GetAccountsTask extends AsyncTask<Void, Void, String> {
private Context mContext;
GetAccountsTask(Context ctx) {
mContext = ctx;
}
@Override
protected String doInBackground(Void... unused) {
AccountManager am = (AccountManager) mContext.getSystemService(Context.ACCOUNT_SERVICE);
Account[] accounts = am.getAccountsByType("com.google");
if (accounts == null || accounts.length == 0) {
// No Google accounts setup, don't offer Chrome sync
if (mChromeSync != null) {
getPreferenceScreen().removePreference(mChromeSync);
}
} else {
// Google accounts are present.
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mContext);
Bundle args = mChromeSync.getExtras();
args.putParcelableArray("accounts", accounts);
mEnabled = BrowserContract.Settings.isSyncEnabled(mContext);
mChromeSync.setOnPreferenceClickListener(GeneralPreferencesFragment.this);
if (!mEnabled) {
// Setup a link to the enable wizard
return mContext.getResources().getString(
R.string.pref_personal_sync_with_chrome_summary);
} else {
// Chrome sync is enabled, setup a link to account switcher
String accountName = prefs.getString(
BrowserBookmarksPage.PREF_ACCOUNT_NAME, null);
args.putString("curAccount", accountName);
return accountName;
}
}
return null;
}
@Override
protected void onPostExecute(String summary) {
if (summary != null) {
mChromeSync.setSummary(summary);
}
}
}
void refreshUi() {
new GetAccountsTask(getActivity()).execute();
PreferenceScreen autoFillSettings =
(PreferenceScreen)findPreference(BrowserSettings.PREF_AUTOFILL_PROFILE);
autoFillSettings.setDependency(BrowserSettings.PREF_AUTOFILL_ENABLED);
}
@Override
public boolean onPreferenceClick(Preference preference) {
Fragment frag;
if (mEnabled) {
frag = new AccountChooserDialog();
} else {
frag = new ImportWizardDialog();
}
frag.setArguments(preference.getExtras());
getFragmentManager().openTransaction()
.add(frag, null)
.commit();
return true;
}
public static class AccountChooserDialog extends DialogFragment
implements DialogInterface.OnClickListener {
AlertDialog mDialog;
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Bundle args = getArguments();
Account[] accounts = (Account[]) args.getParcelableArray("accounts");
String curAccount = args.getString("curAccount");
int length = accounts.length;
int curAccountOffset = 0;
CharSequence[] accountNames = new CharSequence[length];
for (int i = 0; i < length; i++) {
String name = accounts[i].name;
if (name.equals(curAccount)) {
curAccountOffset = i;
}
accountNames[i] = name;
}
mDialog = new AlertDialog.Builder(getActivity())
.setIcon(android.R.drawable.ic_dialog_alert)
.setTitle("Choose account") // STOPSHIP localize
.setSingleChoiceItems(accountNames, curAccountOffset, this)
.create();
return mDialog;
}
@Override
public void onClick(DialogInterface dialog, int which) {
String accountName = mDialog.getListView().getAdapter().getItem(which).toString();
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
prefs.edit().putString(BrowserBookmarksPage.PREF_ACCOUNT_NAME, accountName).apply();
dismiss();
}
}
public static class ImportWizardDialog extends DialogFragment implements OnClickListener {
View mRemoveButton;
View mCancelButton;
String mDefaultAccount;
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Context context = getActivity();
Dialog dialog = new Dialog(context);
dialog.setTitle(R.string.import_bookmarks_dialog_title);
dialog.setContentView(R.layout.import_bookmarks_dialog);
mRemoveButton = dialog.findViewById(R.id.remove);
mRemoveButton.setOnClickListener(this);
mCancelButton = dialog.findViewById(R.id.cancel);
mCancelButton.setOnClickListener(this);
LayoutInflater inflater = dialog.getLayoutInflater();
LinearLayout accountList = (LinearLayout) dialog.findViewById(R.id.accountList);
Account[] accounts = (Account[]) getArguments().getParcelableArray("accounts");
mDefaultAccount = accounts[0].name;
int length = accounts.length;
for (int i = 0; i < length; i++) {
Button button = (Button) inflater.inflate(R.layout.import_bookmarks_dialog_button,
null);
button.setText(context.getString(R.string.import_bookmarks_dialog_import,
accounts[i].name));
button.setTag(accounts[i].name);
button.setOnClickListener(this);
accountList.addView(button);
}
return dialog;
}
@Override
public void onClick(View view) {
if (view == mCancelButton) {
dismiss();
return;
}
ContentResolver resolver = getActivity().getContentResolver();
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
String accountName;
if (view == mRemoveButton) {
// The user chose to remove their old bookmarks, delete them now
resolver.delete(Bookmarks.CONTENT_URI,
Bookmarks.PARENT + "=1 AND " + Bookmarks.ACCOUNT_NAME + " IS NULL", null);
accountName = mDefaultAccount;
} else {
// The user chose to migrate their old bookmarks to the account they're syncing
accountName = view.getTag().toString();
migrateBookmarks(resolver, accountName);
}
// Record the fact that we turned on sync
BrowserContract.Settings.setSyncEnabled(getActivity(), true);
prefs.edit()
.putString(BrowserBookmarksPage.PREF_ACCOUNT_TYPE, "com.google")
.putString(BrowserBookmarksPage.PREF_ACCOUNT_NAME, accountName)
.apply();
// Enable bookmark sync on all accounts
Account[] accounts = (Account[]) getArguments().getParcelableArray("accounts");
for (Account account : accounts) {
ContentResolver.setIsSyncable(account, BrowserContract.AUTHORITY, 1);
}
dismiss();
}
/**
* Migrates bookmarks to the given account
*/
void migrateBookmarks(ContentResolver resolver, String accountName) {
Cursor cursor = null;
try {
// Re-parent the bookmarks in the default root folder
cursor = resolver.query(Bookmarks.CONTENT_URI, new String[] { Bookmarks._ID },
Bookmarks.ACCOUNT_NAME + " =? AND " +
ChromeSyncColumns.SERVER_UNIQUE + " =?",
new String[] { accountName,
ChromeSyncColumns.FOLDER_NAME_BOOKMARKS_BAR },
null);
ContentValues values = new ContentValues();
if (cursor == null || !cursor.moveToFirst()) {
// The root folders don't exist for the account, create them now
ArrayList<ContentProviderOperation> ops =
new ArrayList<ContentProviderOperation>();
// Chrome sync root folder
values.clear();
values.put(ChromeSyncColumns.SERVER_UNIQUE, ChromeSyncColumns.FOLDER_NAME_ROOT);
values.put(Bookmarks.TITLE, "Google Chrome");
values.put(Bookmarks.POSITION, 0);
values.put(Bookmarks.IS_FOLDER, true);
values.put(Bookmarks.DIRTY, true);
ops.add(ContentProviderOperation.newInsert(
Bookmarks.CONTENT_URI.buildUpon().appendQueryParameter(
BrowserContract.CALLER_IS_SYNCADAPTER, "true").build())
.withValues(values)
.build());
// Bookmarks folder
values.clear();
values.put(ChromeSyncColumns.SERVER_UNIQUE,
ChromeSyncColumns.FOLDER_NAME_BOOKMARKS);
values.put(Bookmarks.TITLE, "Bookmarks");
values.put(Bookmarks.POSITION, 0);
values.put(Bookmarks.IS_FOLDER, true);
values.put(Bookmarks.DIRTY, true);
ops.add(ContentProviderOperation.newInsert(Bookmarks.CONTENT_URI)
.withValues(values)
.withValueBackReference(Bookmarks.PARENT, 0)
.build());
// Bookmarks Bar folder
values.clear();
values.put(ChromeSyncColumns.SERVER_UNIQUE,
ChromeSyncColumns.FOLDER_NAME_BOOKMARKS_BAR);
values.put(Bookmarks.TITLE, "Bookmarks Bar");
values.put(Bookmarks.POSITION, 0);
values.put(Bookmarks.IS_FOLDER, true);
values.put(Bookmarks.DIRTY, true);
ops.add(ContentProviderOperation.newInsert(Bookmarks.CONTENT_URI)
.withValues(values)
.withValueBackReference(Bookmarks.PARENT, 1)
.build());
// Other Bookmarks folder
values.clear();
values.put(ChromeSyncColumns.SERVER_UNIQUE,
ChromeSyncColumns.FOLDER_NAME_OTHER_BOOKMARKS);
values.put(Bookmarks.TITLE, "Other Bookmarks");
values.put(Bookmarks.POSITION, 1000);
values.put(Bookmarks.IS_FOLDER, true);
values.put(Bookmarks.DIRTY, true);
ops.add(ContentProviderOperation.newInsert(Bookmarks.CONTENT_URI)
.withValues(values)
.withValueBackReference(Bookmarks.PARENT, 1)
.build());
// Re-parent the existing bookmarks to the newly create bookmarks bar folder
ops.add(ContentProviderOperation.newUpdate(Bookmarks.CONTENT_URI)
.withValueBackReference(Bookmarks.PARENT, 2)
.withSelection(Bookmarks.PARENT + "=?",
new String[] { Integer.toString(1) })
.build());
// Mark all non-root folder items as belonging to the new account
values.clear();
values.put(Bookmarks.ACCOUNT_TYPE, "com.google");
values.put(Bookmarks.ACCOUNT_NAME, accountName);
ops.add(ContentProviderOperation.newUpdate(Bookmarks.CONTENT_URI)
.withValues(values)
.withSelection(Bookmarks.ACCOUNT_NAME + " IS NULL AND " +
Bookmarks._ID + "<>1", null)
.build());
try {
resolver.applyBatch(BrowserContract.AUTHORITY, ops);
} catch (RemoteException e) {
Log.e(TAG, "failed to create root folder for account " + accountName, e);
return;
} catch (OperationApplicationException e) {
Log.e(TAG, "failed to create root folder for account " + accountName, e);
return;
}
} else {
values.put(Bookmarks.PARENT, cursor.getLong(0));
resolver.update(Bookmarks.CONTENT_URI, values, Bookmarks.PARENT + "=?",
new String[] { Integer.toString(1) });
// Mark all bookmarks at all levels as part of the new account
values.clear();
values.put(Bookmarks.ACCOUNT_TYPE, "com.google");
values.put(Bookmarks.ACCOUNT_NAME, accountName);
resolver.update(Bookmarks.CONTENT_URI, values,
Bookmarks.ACCOUNT_NAME + " IS NULL AND " + Bookmarks._ID + "<>1",
null);
}
} finally {
if (cursor != null) cursor.close();
}
}
}
}
|