Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Bijan Amirzada | 41242f2 | 2014-03-21 12:12:18 -0700 | [diff] [blame] | 17 | package com.android.browser; |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 18 | |
| 19 | import android.content.ContentResolver; |
| 20 | import android.content.ContentUris; |
| 21 | import android.content.ContentValues; |
| 22 | import android.content.Context; |
Jeff Hamilton | 7f6cf3e | 2010-09-17 17:22:21 -0500 | [diff] [blame] | 23 | import android.content.SharedPreferences; |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 24 | import android.database.Cursor; |
Pankaj Garg | 6bedeba | 2015-06-23 15:47:37 -0700 | [diff] [blame] | 25 | import android.database.sqlite.SQLiteException; |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 26 | import android.graphics.Bitmap; |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 27 | import android.net.Uri; |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 28 | import android.os.AsyncTask; |
Jeff Hamilton | 7f6cf3e | 2010-09-17 17:22:21 -0500 | [diff] [blame] | 29 | import android.preference.PreferenceManager; |
Bijan Amirzada | 9b1e988 | 2014-02-26 17:15:46 -0800 | [diff] [blame] | 30 | |
Bijan Amirzada | 41242f2 | 2014-03-21 12:12:18 -0700 | [diff] [blame] | 31 | import com.android.browser.R; |
| 32 | import com.android.browser.platformsupport.BrowserContract; |
| 33 | import com.android.browser.platformsupport.BrowserContract.Combined; |
| 34 | import com.android.browser.platformsupport.BrowserContract.Images; |
Bijan Amirzada | 9b1e988 | 2014-02-26 17:15:46 -0800 | [diff] [blame] | 35 | |
John Reck | 568467e | 2010-12-21 14:15:50 -0800 | [diff] [blame] | 36 | import android.text.TextUtils; |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 37 | import android.util.Log; |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 38 | import android.widget.Toast; |
| 39 | |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 40 | import java.io.ByteArrayOutputStream; |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 41 | |
| 42 | /** |
| 43 | * This class is purely to have a common place for adding/deleting bookmarks. |
| 44 | */ |
John Reck | 5792845 | 2011-02-17 12:44:07 -0800 | [diff] [blame] | 45 | public class Bookmarks { |
Ben Murdoch | de35362 | 2009-10-12 10:29:00 +0100 | [diff] [blame] | 46 | // We only want the user to be able to bookmark content that |
| 47 | // the browser can handle directly. |
| 48 | private static final String acceptableBookmarkSchemes[] = { |
| 49 | "http:", |
| 50 | "https:", |
| 51 | "about:", |
| 52 | "data:", |
| 53 | "javascript:", |
| 54 | "file:", |
| 55 | "content:" |
| 56 | }; |
| 57 | |
Leon Scroggins | 2c0f611 | 2010-03-12 18:09:39 -0500 | [diff] [blame] | 58 | private final static String LOGTAG = "Bookmarks"; |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 59 | /** |
| 60 | * Add a bookmark to the database. |
| 61 | * @param context Context of the calling Activity. This is used to make |
| 62 | * Toast confirming that the bookmark has been added. If the |
| 63 | * caller provides null, the Toast will not be shown. |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 64 | * @param url URL of the website to be bookmarked. |
| 65 | * @param name Provided name for the bookmark. |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 66 | * @param thumbnail A thumbnail for the bookmark. |
Christopher Tate | 9c0dd8c | 2009-07-10 17:51:48 -0700 | [diff] [blame] | 67 | * @param retainIcon Whether to retain the page's icon in the icon database. |
| 68 | * This will usually be <code>true</code> except when bookmarks are |
| 69 | * added by a settings restore agent. |
Leon Scroggins III | 052ce66 | 2010-09-13 14:44:16 -0400 | [diff] [blame] | 70 | * @param parent ID of the parent folder. |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 71 | */ |
Jeff Hamilton | 7f6cf3e | 2010-09-17 17:22:21 -0500 | [diff] [blame] | 72 | /* package */ static void addBookmark(Context context, boolean showToast, String url, |
John Reck | af262e7 | 2011-07-25 13:55:44 -0700 | [diff] [blame] | 73 | String name, Bitmap thumbnail, long parent) { |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 74 | // Want to append to the beginning of the list |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 75 | ContentValues values = new ContentValues(); |
Leon Scroggins | 2c0f611 | 2010-03-12 18:09:39 -0500 | [diff] [blame] | 76 | try { |
Jeff Hamilton | 7f6cf3e | 2010-09-17 17:22:21 -0500 | [diff] [blame] | 77 | SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 78 | values.put(BrowserContract.Bookmarks.TITLE, name); |
| 79 | values.put(BrowserContract.Bookmarks.URL, url); |
| 80 | values.put(BrowserContract.Bookmarks.IS_FOLDER, 0); |
| 81 | values.put(BrowserContract.Bookmarks.THUMBNAIL, |
| 82 | bitmapToBytes(thumbnail)); |
Leon Scroggins III | 052ce66 | 2010-09-13 14:44:16 -0400 | [diff] [blame] | 83 | values.put(BrowserContract.Bookmarks.PARENT, parent); |
Jeff Hamilton | 7f6cf3e | 2010-09-17 17:22:21 -0500 | [diff] [blame] | 84 | context.getContentResolver().insert(BrowserContract.Bookmarks.CONTENT_URI, values); |
Leon Scroggins | 2c0f611 | 2010-03-12 18:09:39 -0500 | [diff] [blame] | 85 | } catch (IllegalStateException e) { |
| 86 | Log.e(LOGTAG, "addBookmark", e); |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 87 | } |
Jeff Hamilton | 7f6cf3e | 2010-09-17 17:22:21 -0500 | [diff] [blame] | 88 | if (showToast) { |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 89 | Toast.makeText(context, R.string.added_to_bookmarks, |
| 90 | Toast.LENGTH_LONG).show(); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Remove a bookmark from the database. If the url is a visited site, it |
| 96 | * will remain in the database, but only as a history item, and not as a |
| 97 | * bookmarked site. |
| 98 | * @param context Context of the calling Activity. This is used to make |
John Reck | 03b2054 | 2011-01-06 16:22:48 -0800 | [diff] [blame] | 99 | * Toast confirming that the bookmark has been removed and to |
| 100 | * lookup the correct content uri. It must not be null. |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 101 | * @param cr The ContentResolver being used to remove the bookmark. |
| 102 | * @param url URL of the website to be removed. |
| 103 | */ |
| 104 | /* package */ static void removeFromBookmarks(Context context, |
Andrei Popescu | c952619 | 2009-09-23 15:52:16 +0100 | [diff] [blame] | 105 | ContentResolver cr, String url, String title) { |
Leon Scroggins | 2c0f611 | 2010-03-12 18:09:39 -0500 | [diff] [blame] | 106 | Cursor cursor = null; |
| 107 | try { |
John Reck | 4b59db8 | 2010-11-16 15:40:34 -0800 | [diff] [blame] | 108 | Uri uri = BookmarkUtils.getBookmarksUri(context); |
| 109 | cursor = cr.query(uri, |
Jeff Hamilton | 8ce956c | 2010-08-17 11:13:53 -0500 | [diff] [blame] | 110 | new String[] { BrowserContract.Bookmarks._ID }, |
| 111 | BrowserContract.Bookmarks.URL + " = ? AND " + |
| 112 | BrowserContract.Bookmarks.TITLE + " = ?", |
Leon Scroggins | 2c0f611 | 2010-03-12 18:09:39 -0500 | [diff] [blame] | 113 | new String[] { url, title }, |
| 114 | null); |
Jeff Hamilton | 8ce956c | 2010-08-17 11:13:53 -0500 | [diff] [blame] | 115 | |
Jeff Hamilton | 8ce956c | 2010-08-17 11:13:53 -0500 | [diff] [blame] | 116 | if (!cursor.moveToFirst()) { |
John Reck | 4b59db8 | 2010-11-16 15:40:34 -0800 | [diff] [blame] | 117 | return; |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 118 | } |
Jeff Hamilton | 8ce956c | 2010-08-17 11:13:53 -0500 | [diff] [blame] | 119 | |
Leon Scroggins | 2c0f611 | 2010-03-12 18:09:39 -0500 | [diff] [blame] | 120 | // Remove from bookmarks |
John Reck | 4b59db8 | 2010-11-16 15:40:34 -0800 | [diff] [blame] | 121 | uri = ContentUris.withAppendedId(BrowserContract.Bookmarks.CONTENT_URI, |
Jeff Hamilton | 8ce956c | 2010-08-17 11:13:53 -0500 | [diff] [blame] | 122 | cursor.getLong(0)); |
| 123 | cr.delete(uri, null, null); |
Leon Scroggins | 2c0f611 | 2010-03-12 18:09:39 -0500 | [diff] [blame] | 124 | if (context != null) { |
John Reck | 03b2054 | 2011-01-06 16:22:48 -0800 | [diff] [blame] | 125 | Toast.makeText(context, R.string.removed_from_bookmarks, |
| 126 | Toast.LENGTH_LONG).show(); |
Leon Scroggins | 2c0f611 | 2010-03-12 18:09:39 -0500 | [diff] [blame] | 127 | } |
| 128 | } catch (IllegalStateException e) { |
| 129 | Log.e(LOGTAG, "removeFromBookmarks", e); |
| 130 | } finally { |
| 131 | if (cursor != null) cursor.close(); |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 132 | } |
Leon Scroggins | e372c02 | 2009-06-12 17:07:29 -0400 | [diff] [blame] | 133 | } |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 134 | |
| 135 | private static byte[] bitmapToBytes(Bitmap bm) { |
| 136 | if (bm == null) { |
| 137 | return null; |
| 138 | } |
| 139 | |
| 140 | final ByteArrayOutputStream os = new ByteArrayOutputStream(); |
| 141 | bm.compress(Bitmap.CompressFormat.PNG, 100, os); |
| 142 | return os.toByteArray(); |
| 143 | } |
Ben Murdoch | de35362 | 2009-10-12 10:29:00 +0100 | [diff] [blame] | 144 | |
| 145 | /* package */ static boolean urlHasAcceptableScheme(String url) { |
| 146 | if (url == null) { |
| 147 | return false; |
| 148 | } |
| 149 | |
| 150 | for (int i = 0; i < acceptableBookmarkSchemes.length; i++) { |
| 151 | if (url.startsWith(acceptableBookmarkSchemes[i])) { |
| 152 | return true; |
| 153 | } |
| 154 | } |
| 155 | return false; |
| 156 | } |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 157 | |
Jeff Hamilton | 8ce956c | 2010-08-17 11:13:53 -0500 | [diff] [blame] | 158 | static final String QUERY_BOOKMARKS_WHERE = |
Jeff Hamilton | 1a80565 | 2010-09-07 12:36:30 -0700 | [diff] [blame] | 159 | Combined.URL + " == ? OR " + |
John Reck | 5792845 | 2011-02-17 12:44:07 -0800 | [diff] [blame] | 160 | Combined.URL + " == ?"; |
Jeff Hamilton | 8ce956c | 2010-08-17 11:13:53 -0500 | [diff] [blame] | 161 | |
Pankaj Garg | 6bedeba | 2015-06-23 15:47:37 -0700 | [diff] [blame] | 162 | private static String eatTrailingSlash(String input) { |
| 163 | if (TextUtils.isEmpty(input)) { |
| 164 | return input; |
| 165 | } |
| 166 | |
| 167 | if (input.charAt(input.length() - 1) == '/') { |
| 168 | return input.substring(0, input.length() - 1); |
| 169 | } |
| 170 | |
| 171 | return input; |
| 172 | } |
| 173 | |
John Reck | 5792845 | 2011-02-17 12:44:07 -0800 | [diff] [blame] | 174 | public static Cursor queryCombinedForUrl(ContentResolver cr, |
Jeff Hamilton | 8ce956c | 2010-08-17 11:13:53 -0500 | [diff] [blame] | 175 | String originalUrl, String url) { |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 176 | if (cr == null || url == null) { |
| 177 | return null; |
| 178 | } |
Bijan Amirzada | 9b1e988 | 2014-02-26 17:15:46 -0800 | [diff] [blame] | 179 | |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 180 | // If originalUrl is null, just set it to url. |
| 181 | if (originalUrl == null) { |
| 182 | originalUrl = url; |
| 183 | } |
Bijan Amirzada | 9b1e988 | 2014-02-26 17:15:46 -0800 | [diff] [blame] | 184 | |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 185 | // Look for both the original url and the actual url. This takes in to |
| 186 | // account redirects. |
Bijan Amirzada | 9b1e988 | 2014-02-26 17:15:46 -0800 | [diff] [blame] | 187 | |
John Reck | 5792845 | 2011-02-17 12:44:07 -0800 | [diff] [blame] | 188 | final String[] selArgs = new String[] { originalUrl, url }; |
Jeff Hamilton | 1a80565 | 2010-09-07 12:36:30 -0700 | [diff] [blame] | 189 | final String[] projection = new String[] { Combined.URL }; |
| 190 | return cr.query(Combined.CONTENT_URI, projection, QUERY_BOOKMARKS_WHERE, selArgs, null); |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | // Strip the query from the given url. |
| 194 | static String removeQuery(String url) { |
| 195 | if (url == null) { |
| 196 | return null; |
| 197 | } |
| 198 | int query = url.indexOf('?'); |
| 199 | String noQuery = url; |
| 200 | if (query != -1) { |
| 201 | noQuery = url.substring(0, query); |
| 202 | } |
| 203 | return noQuery; |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * Update the bookmark's favicon. This is a convenience method for updating |
| 208 | * a bookmark favicon for the originalUrl and url of the passed in WebView. |
| 209 | * @param cr The ContentResolver to use. |
| 210 | * @param originalUrl The original url before any redirects. |
| 211 | * @param url The current url. |
| 212 | * @param favicon The favicon bitmap to write to the db. |
| 213 | */ |
Jeff Hamilton | 1a80565 | 2010-09-07 12:36:30 -0700 | [diff] [blame] | 214 | /* package */ static void updateFavicon(final ContentResolver cr, |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 215 | final String originalUrl, final String url, final Bitmap favicon) { |
| 216 | new AsyncTask<Void, Void, Void>() { |
| 217 | @Override |
| 218 | protected Void doInBackground(Void... unused) { |
John Reck | 568467e | 2010-12-21 14:15:50 -0800 | [diff] [blame] | 219 | final ByteArrayOutputStream os = new ByteArrayOutputStream(); |
| 220 | favicon.compress(Bitmap.CompressFormat.PNG, 100, os); |
Pankaj Garg | 6bedeba | 2015-06-23 15:47:37 -0700 | [diff] [blame] | 221 | byte[] image = os.toByteArray(); |
Jeff Hamilton | 1a80565 | 2010-09-07 12:36:30 -0700 | [diff] [blame] | 222 | |
John Reck | 568467e | 2010-12-21 14:15:50 -0800 | [diff] [blame] | 223 | // The Images update will insert if it doesn't exist |
| 224 | ContentValues values = new ContentValues(); |
Pankaj Garg | 6bedeba | 2015-06-23 15:47:37 -0700 | [diff] [blame] | 225 | values.put(Images.FAVICON, image); |
| 226 | values.put(Images.THUMBNAIL, image); |
| 227 | |
| 228 | updateImages(cr, removeQuery(originalUrl), values); |
| 229 | updateImages(cr, removeQuery(url), values); |
| 230 | |
| 231 | Cursor cursor = null; |
| 232 | try { |
| 233 | cursor = queryCombinedForUrl(cr, originalUrl, url); |
| 234 | if (cursor != null && cursor.moveToFirst()) { |
| 235 | do { |
| 236 | updateImages(cr, cursor.getString(0), values); |
| 237 | } while (cursor.moveToNext()); |
| 238 | } |
Pankaj Garg | 68faf1c | 2015-06-26 17:07:37 -0700 | [diff] [blame] | 239 | |
| 240 | cursor = queryCombinedForUrl(cr, eatTrailingSlash(originalUrl), |
| 241 | eatTrailingSlash(url)); |
| 242 | if (cursor != null && cursor.moveToFirst()) { |
| 243 | do { |
| 244 | updateImages(cr, cursor.getString(0), values); |
| 245 | } while (cursor.moveToNext()); |
| 246 | } |
Pankaj Garg | 6bedeba | 2015-06-23 15:47:37 -0700 | [diff] [blame] | 247 | } catch (IllegalStateException e) { |
| 248 | // Ignore |
| 249 | } catch (SQLiteException s) { |
| 250 | // Ignore |
| 251 | } finally { |
| 252 | if (cursor != null) cursor.close(); |
| 253 | } |
| 254 | |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 255 | return null; |
| 256 | } |
John Reck | 568467e | 2010-12-21 14:15:50 -0800 | [diff] [blame] | 257 | |
| 258 | private void updateImages(final ContentResolver cr, |
Pankaj Garg | 6bedeba | 2015-06-23 15:47:37 -0700 | [diff] [blame] | 259 | final String url, ContentValues values) { |
| 260 | if (!TextUtils.isEmpty(url)) { |
| 261 | values.put(Images.URL, url); |
John Reck | 568467e | 2010-12-21 14:15:50 -0800 | [diff] [blame] | 262 | cr.update(BrowserContract.Images.CONTENT_URI, values, null, null); |
| 263 | } |
| 264 | } |
Jeff Hamilton | 8402962 | 2010-08-05 14:29:28 -0500 | [diff] [blame] | 265 | }.execute(); |
| 266 | } |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 267 | } |