]> Pileus Git - ~andy/freeotp/blob - src/org/fedorahosted/freeotp/MainActivity.java
Migrate Manual token entry to use a DialogFragment
[~andy/freeotp] / src / org / fedorahosted / freeotp / MainActivity.java
1 /*
2  * FreeOTP
3  *
4  * Authors: Nathaniel McCallum <npmccallum@redhat.com>
5  *
6  * Copyright (C) 2013  Nathaniel McCallum, Red Hat
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *     http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20
21 /*
22  * Portions Copyright 2009 ZXing authors
23  *
24  * Licensed under the Apache License, Version 2.0 (the "License");
25  * you may not use this file except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *      http://www.apache.org/licenses/LICENSE-2.0
29  *
30  * Unless required by applicable law or agreed to in writing, software
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  */
36
37 package org.fedorahosted.freeotp;
38
39 import org.fedorahosted.freeotp.Token.TokenUriInvalidException;
40 import org.fedorahosted.freeotp.adapters.TokenAdapter;
41
42 import android.app.Activity;
43 import android.content.pm.PackageManager;
44 import android.database.DataSetObserver;
45 import android.os.Bundle;
46 import android.view.Menu;
47 import android.view.MenuItem;
48 import android.view.MenuItem.OnMenuItemClickListener;
49 import android.view.View;
50 import android.widget.GridView;
51 import android.widget.Toast;
52
53 public class MainActivity extends Activity implements OnMenuItemClickListener {
54         private TokenAdapter mTokenAdapter;
55         private DataSetObserver mDataSetObserver;
56
57     @Override
58     protected void onCreate(Bundle savedInstanceState) {
59                 super.onCreate(savedInstanceState);
60                 setContentView(R.layout.main);
61
62                 mTokenAdapter = new TokenAdapter(this);
63                 ((GridView) findViewById(R.id.grid)).setAdapter(mTokenAdapter);
64
65                 mDataSetObserver = new DataSetObserver() {
66                         @Override
67                         public void onChanged() {
68                                 super.onChanged();
69                                 if (mTokenAdapter.getCount() == 0)
70                                         findViewById(android.R.id.empty).setVisibility(View.VISIBLE);
71                                 else
72                                         findViewById(android.R.id.empty).setVisibility(View.GONE);
73                         }
74                 };
75                 mTokenAdapter.registerDataSetObserver(mDataSetObserver);
76                 mDataSetObserver.onChanged();
77     }
78
79         @Override
80         protected void onDestroy() {
81                 super.onDestroy();
82                 mTokenAdapter.unregisterDataSetObserver(mDataSetObserver);
83         }
84
85     @Override
86     public boolean onCreateOptionsMenu(Menu menu) {
87         getMenuInflater().inflate(R.menu.main, menu);
88         menu.findItem(R.id.action_add).setOnMenuItemClickListener(this);
89                 menu.findItem(R.id.action_about).setOnMenuItemClickListener(this);
90         return true;
91     }
92
93         @Override
94         public boolean onMenuItemClick(MenuItem item) {
95                 switch (item.getItemId()) {
96                 case R.id.action_add:
97                         // If the device has a camera available, try to scan for QR code
98                         PackageManager pm = getPackageManager();
99                         if (pm.hasSystemFeature(PackageManager.FEATURE_CAMERA) &&
100                                 pm.hasSystemFeature(PackageManager.FEATURE_CAMERA_AUTOFOCUS)) {
101                                 new CameraDialogFragment().show(getFragmentManager(),
102                                                 CameraDialogFragment.FRAGMENT_TAG);
103                         } else {
104                                 new ManualDialogFragment().show(getFragmentManager(),
105                                                 ManualDialogFragment.FRAGMENT_TAG);
106                         }
107
108                         return true;
109
110                 case R.id.action_about:
111                         new AboutDialogFragment().show(getFragmentManager(),
112                                         AboutDialogFragment.FRAGMENT_TAG);
113                         return true;
114                 }
115
116                 return false;
117         }
118
119         public void tokenURIReceived(String uri) {
120                 try {
121                         mTokenAdapter.add(uri);
122                 } catch (TokenUriInvalidException e) {
123                         Toast.makeText(this, R.string.invalid_token, Toast.LENGTH_SHORT).show();
124                         e.printStackTrace();
125                 }
126         }
127 }