bd80a2607dcc3b235acab6f212b56db790bb9cda
[zxing.git] / android / src / com / google / zxing / client / android / result / ISBNResultHandler.java
1 /*
2  * Copyright (C) 2008 ZXing authors
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
17 package com.google.zxing.client.android.result;
18
19 import android.app.Activity;
20 import android.app.AlertDialog;
21 import android.content.DialogInterface;
22 import android.content.SharedPreferences;
23 import android.preference.PreferenceManager;
24 import com.google.zxing.client.android.PreferencesActivity;
25 import com.google.zxing.client.android.R;
26 import com.google.zxing.client.result.ISBNParsedResult;
27 import com.google.zxing.client.result.ParsedResult;
28
29 /**
30  * Handles books encoded by their ISBN values.
31  *
32  * @author dswitkin@google.com (Daniel Switkin)
33  */
34 public final class ISBNResultHandler extends ResultHandler {
35   private static final int[] buttons = {
36       R.string.button_product_search,
37       R.string.button_book_search,
38       R.string.button_search_book_contents,
39       R.string.button_custom_product_search,
40   };
41
42   private final String customProductSearch;
43
44   public ISBNResultHandler(Activity activity, ParsedResult result) {
45     super(activity, result);
46     SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity);
47     customProductSearch = prefs.getString(PreferencesActivity.KEY_CUSTOM_PRODUCT_SEARCH, null);
48   }
49
50   @Override
51   public int getButtonCount() {
52     return customProductSearch != null && customProductSearch.length() > 0 ? buttons.length : buttons
53         .length - 1;
54   }
55
56   @Override
57   public int getButtonText(int index) {
58     return buttons[index];
59   }
60
61   @Override
62   public void handleButtonPress(final int index) {
63     showNotOurResults(index, new AlertDialog.OnClickListener() {
64       public void onClick(DialogInterface dialogInterface, int i) {
65         ISBNParsedResult isbnResult = (ISBNParsedResult) getResult();
66         switch (index) {
67           case 0:
68             openProductSearch(isbnResult.getISBN());
69             break;
70           case 1:
71             openBookSearch(isbnResult.getISBN());
72             break;
73           case 2:
74             searchBookContents(isbnResult.getISBN());
75             break;
76           case 3:
77             String url = customProductSearch.replace("%s", isbnResult.getISBN());
78             openURL(url);
79             break;
80         }
81       }
82     });
83   }
84
85   @Override
86   public int getDisplayTitle() {
87     return R.string.result_isbn;
88   }
89 }