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