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