Make sure it's possible un-set custom search URL; sometimes remains as a newline...
[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 com.google.zxing.client.android.R;
20 import com.google.zxing.client.result.ISBNParsedResult;
21 import com.google.zxing.client.result.ParsedResult;
22
23 import android.app.Activity;
24 import android.app.AlertDialog;
25 import android.content.DialogInterface;
26
27 /**
28  * Handles books encoded by their ISBN values.
29  *
30  * @author dswitkin@google.com (Daniel Switkin)
31  */
32 public final class ISBNResultHandler extends ResultHandler {
33   private static final int[] buttons = {
34       R.string.button_product_search,
35       R.string.button_book_search,
36       R.string.button_search_book_contents,
37       R.string.button_google_shopper
38   };
39
40   private final String customProductSearch;
41
42   public ISBNResultHandler(Activity activity, ParsedResult result) {
43     super(activity, result);
44     customProductSearch = parseCustomSearchURL();
45   }
46
47   @Override
48   public int getButtonCount() {
49     // Always show four buttons - Shopper and Custom Search are mutually exclusive.
50     return buttons.length;
51   }
52
53   @Override
54   public int getButtonText(int index) {
55     if (index == buttons.length - 1 && customProductSearch != null) {
56       return R.string.button_custom_product_search;
57     }
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             if (customProductSearch != null) {
78               String url = customProductSearch.replace("%s", isbnResult.getISBN());
79               openURL(url);
80             } else {
81               openGoogleShopper(isbnResult.getISBN());
82             }
83             break;
84         }
85       }
86     });
87   }
88
89   @Override
90   public int getDisplayTitle() {
91     return R.string.result_isbn;
92   }
93 }