Issue 155: allow custom product search, and, other small tweaks I think nobody will...
[zxing.git] / android / src / com / google / zxing / client / android / ShareActivity.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;
18
19 import android.app.Activity;
20 import android.content.ContentResolver;
21 import android.content.Intent;
22 import android.database.Cursor;
23 import android.net.Uri;
24 import android.os.Bundle;
25 import android.provider.Browser;
26 import android.provider.Contacts;
27 import android.provider.BaseColumns;
28 import android.text.ClipboardManager;
29 import android.view.View;
30 import android.widget.Button;
31
32 public final class ShareActivity extends Activity {
33
34   private static final int PICK_BOOKMARK = 0;
35   private static final int PICK_CONTACT = 1;
36
37   //private static final int METHODS_ID_COLUMN = 0;
38   private static final int METHODS_KIND_COLUMN = 1;
39   private static final int METHODS_DATA_COLUMN = 2;
40
41   private static final String[] METHODS_PROJECTION = {
42       BaseColumns._ID, // 0
43       Contacts.ContactMethodsColumns.KIND, // 1
44       Contacts.ContactMethodsColumns.DATA, // 2
45   };
46
47   private static final int PHONES_NUMBER_COLUMN = 1;
48
49   private static final String[] PHONES_PROJECTION = {
50       BaseColumns._ID, // 0
51       Contacts.PhonesColumns.NUMBER // 1
52   };
53
54   private Button mClipboardButton;
55
56   @Override
57   public void onCreate(Bundle icicle) {
58     super.onCreate(icicle);
59     setContentView(R.layout.share);
60
61     Button mContactButton = (Button) findViewById(R.id.contact_button);
62     mContactButton.setOnClickListener(mContactListener);
63     Button mBookmarkButton = (Button) findViewById(R.id.bookmark_button);
64     mBookmarkButton.setOnClickListener(mBookmarkListener);
65     mClipboardButton = (Button) findViewById(R.id.clipboard_button);
66     mClipboardButton.setOnClickListener(mClipboardListener);
67   }
68
69   @Override
70   protected void onResume() {
71     super.onResume();
72
73     ClipboardManager clipboard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
74     if (clipboard.hasText()) {
75       mClipboardButton.setEnabled(true);
76       mClipboardButton.setText(R.string.button_share_clipboard);
77     } else {
78       mClipboardButton.setEnabled(false);
79       mClipboardButton.setText(R.string.button_clipboard_empty);
80     }
81   }
82
83   private final Button.OnClickListener mContactListener = new Button.OnClickListener() {
84     public void onClick(View v) {
85       startActivityForResult(new Intent(Intent.ACTION_PICK, Contacts.People.CONTENT_URI),
86           PICK_CONTACT);
87     }
88   };
89
90   private final Button.OnClickListener mBookmarkListener = new Button.OnClickListener() {
91     public void onClick(View v) {
92       Intent intent = new Intent(Intent.ACTION_PICK);
93       intent.setClassName(ShareActivity.this, BookmarkPickerActivity.class.getName());
94       startActivityForResult(intent, PICK_BOOKMARK);
95     }
96   };
97
98   private final Button.OnClickListener mClipboardListener = new Button.OnClickListener() {
99     public void onClick(View v) {
100       ClipboardManager clipboard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
101       // Should always be true, because we grey out the clipboard button in onResume() if it's empty
102       if (clipboard.hasText()) {
103         Intent intent = new Intent(Intents.Encode.ACTION);
104         intent.putExtra(Intents.Encode.TYPE, Contents.Type.TEXT);
105         intent.putExtra(Intents.Encode.DATA, clipboard.getText());
106         startActivity(intent);
107       }
108     }
109   };
110
111   @Override
112   public void onActivityResult(int requestCode, int resultCode, Intent intent) {
113     if (resultCode == RESULT_OK) {
114       switch (requestCode) {
115         case PICK_BOOKMARK:
116           showTextAsBarcode(intent.getStringExtra(Browser.BookmarkColumns.URL));
117           break;
118         case PICK_CONTACT:
119           // Data field is content://contacts/people/984
120           showContactAsBarcode(intent.getData());
121           break;
122       }
123     }
124   }
125
126   private void showTextAsBarcode(String text) {
127     Intent intent = new Intent(Intents.Encode.ACTION);
128     intent.putExtra(Intents.Encode.TYPE, Contents.Type.TEXT);
129     intent.putExtra(Intents.Encode.DATA, text);
130     startActivity(intent);
131   }
132
133   /**
134    * Takes a contact Uri and does the necessary database lookups to retrieve that person's info,
135    * then sends an Encode intent to render it as a QR Code.
136    *
137    * @param contactUri A Uri of the form content://contacts/people/17
138    */
139   private void showContactAsBarcode(Uri contactUri) {
140     ContentResolver resolver = getContentResolver();
141     Cursor contactCursor = resolver.query(contactUri, null, null, null, null);
142     Bundle bundle = new Bundle();
143     if (contactCursor != null && contactCursor.moveToFirst()) {
144       int nameColumn = contactCursor.getColumnIndex(Contacts.PeopleColumns.NAME);
145       String name = contactCursor.getString(nameColumn);
146
147       // Don't require a name to be present, this contact might be just a phone number.
148       if (name != null && name.length() > 0) {
149         bundle.putString(Contacts.Intents.Insert.NAME, massageContactData(name));
150       }
151       contactCursor.close();
152
153       Uri phonesUri = Uri.withAppendedPath(contactUri, Contacts.People.Phones.CONTENT_DIRECTORY);
154       Cursor phonesCursor = resolver.query(phonesUri, PHONES_PROJECTION, null, null, null);
155       if (phonesCursor != null) {
156         int foundPhone = 0;
157         while (phonesCursor.moveToNext()) {
158           String number = phonesCursor.getString(PHONES_NUMBER_COLUMN);
159           if (foundPhone < Contents.PHONE_KEYS.length) {
160             bundle.putString(Contents.PHONE_KEYS[foundPhone], massageContactData(number));
161             foundPhone++;
162           }
163         }
164         phonesCursor.close();
165       }
166
167       Uri methodsUri = Uri.withAppendedPath(contactUri,
168           Contacts.People.ContactMethods.CONTENT_DIRECTORY);
169       Cursor methodsCursor = resolver.query(methodsUri, METHODS_PROJECTION, null, null, null);
170       if (methodsCursor != null) {
171         int foundEmail = 0;
172         boolean foundPostal = false;
173         while (methodsCursor.moveToNext()) {
174           int kind = methodsCursor.getInt(METHODS_KIND_COLUMN);
175           String data = methodsCursor.getString(METHODS_DATA_COLUMN);
176           switch (kind) {
177             case Contacts.KIND_EMAIL:
178               if (foundEmail < Contents.EMAIL_KEYS.length) {
179                 bundle.putString(Contents.EMAIL_KEYS[foundEmail], massageContactData(data));
180                 foundEmail++;
181               }
182               break;
183             case Contacts.KIND_POSTAL:
184               if (!foundPostal) {
185                 bundle.putString(Contacts.Intents.Insert.POSTAL, massageContactData(data));
186                 foundPostal = true;
187               }
188               break;
189           }
190         }
191         methodsCursor.close();
192       }
193
194       Intent intent = new Intent(Intents.Encode.ACTION);
195       intent.putExtra(Intents.Encode.TYPE, Contents.Type.CONTACT);
196       intent.putExtra(Intents.Encode.DATA, bundle);
197       startActivity(intent);
198     }
199   }
200
201   private static String massageContactData(String data) {
202     // For now -- make sure we don't put newlines in shared contact data. It messes up
203     // any known encoding of contact data. Replace with space.
204     if (data.indexOf('\n') >= 0) {
205       data = data.replace("\n", " ");
206     }
207     if (data.indexOf('\r') >= 0) {
208       data = data.replace("\r", " ");
209     }
210     return data;
211   }
212
213 }