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 / ProductResultHandler.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.ParsedResult;
21 import com.google.zxing.client.result.ProductParsedResult;
22
23 import android.app.Activity;
24 import android.app.AlertDialog;
25 import android.content.DialogInterface;
26
27 /**
28  * Handles generic products which are not books.
29  *
30  * @author dswitkin@google.com (Daniel Switkin)
31  */
32 public final class ProductResultHandler extends ResultHandler {
33   private static final int[] buttons = {
34       R.string.button_product_search,
35       R.string.button_web_search,
36       R.string.button_google_shopper,
37       R.string.button_custom_product_search,
38   };
39
40   private final String customProductSearch;
41
42   public ProductResultHandler(Activity activity, ParsedResult result) {
43     super(activity, result);
44     customProductSearch = parseCustomSearchURL();
45   }
46
47   @Override
48   public int getButtonCount() {
49     return customProductSearch != null ? buttons.length : buttons.length - 1;
50   }
51
52   @Override
53   public int getButtonText(int index) {
54     return buttons[index];
55   }
56
57   @Override
58   public void handleButtonPress(final int index) {
59     showNotOurResults(index, new AlertDialog.OnClickListener() {
60       public void onClick(DialogInterface dialogInterface, int i) {
61         ProductParsedResult productResult = (ProductParsedResult) getResult();
62         switch (index) {
63           case 0:
64             openProductSearch(productResult.getNormalizedProductID());
65             break;
66           case 1:
67             webSearch(productResult.getNormalizedProductID());
68             break;
69           case 2:
70             openGoogleShopper(productResult.getNormalizedProductID());
71             break;
72           case 3:
73             String url = customProductSearch.replace("%s", productResult.getNormalizedProductID());
74             openURL(url);
75             break;
76         }
77       }
78     });
79   }
80
81   @Override
82   public int getDisplayTitle() {
83     return R.string.result_product;
84   }
85 }