Issue 521, avoid an NPE
[zxing.git] / android / src / com / google / zxing / client / android / result / URIResultHandler.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.URIParsedResult;
22
23 import android.app.Activity;
24
25 /**
26  * Offers appropriate actions for URLS.
27  *
28  * @author dswitkin@google.com (Daniel Switkin)
29  */
30 public final class URIResultHandler extends ResultHandler {
31
32   private static final int[] buttons = {
33       R.string.button_open_browser,
34       R.string.button_share_by_email,
35       R.string.button_share_by_sms,
36       R.string.button_search_book_contents,
37   };
38
39   public URIResultHandler(Activity activity, ParsedResult result) {
40     super(activity, result);
41   }
42
43   @Override
44   public int getButtonCount() {
45     return isGoogleBooksURI() ? buttons.length : buttons.length - 1;
46   }
47
48   @Override
49   public int getButtonText(int index) {
50     return buttons[index];
51   }
52
53   @Override
54   public void handleButtonPress(int index) {
55     URIParsedResult uriResult = (URIParsedResult) getResult();
56     String uri = uriResult.getURI();
57     switch (index) {
58       case 0:
59         openURL(uri);
60         break;
61       case 1:
62         shareByEmail(uri);
63         break;
64       case 2:
65         shareBySMS(uri);
66         break;
67       case 3:
68         searchBookContents(uri);
69         break;
70     }
71   }
72
73   @Override
74   public int getDisplayTitle() {
75     return R.string.result_uri;
76   }
77
78   private boolean isGoogleBooksURI() {
79     return ((URIParsedResult) getResult()).getURI().startsWith("http://google.com/books?id=");
80   }
81
82 }