1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
|
package cgeo.geocaching;
import gnu.android.app.appmanualclient.*;
import java.util.HashMap;
import android.os.Bundle;
import android.app.Activity;
import android.app.SearchManager;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.EditText;
import android.content.Intent;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.Log;
import android.view.KeyEvent;
import android.view.inputmethod.EditorInfo;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class cgeoadvsearch extends Activity {
private Resources res = null;
private Activity activity = null;
private cgeoapplication app = null;
private cgSettings settings = null;
private cgBase base = null;
private cgWarning warning = null;
private cgGeo geo = null;
private cgUpdateLoc geoUpdate = new update();
private EditText latEdit = null;
private EditText lonEdit = null;
private String[] geocodesInCache = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// init
activity = this;
res = this.getResources();
app = (cgeoapplication) this.getApplication();
app.setAction(null);
settings = new cgSettings(this, getSharedPreferences(cgSettings.preferences, 0));
base = new cgBase(app, settings, getSharedPreferences(cgSettings.preferences, 0));
warning = new cgWarning(this);
// search query
Intent intent = getIntent();
if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
final String query = intent.getStringExtra(SearchManager.QUERY);
final boolean found = instantSearch(query);
if (found) {
finish();
return;
}
}
// set layout
if (settings.skin == 1) {
setTheme(R.style.light);
} else {
setTheme(R.style.dark);
}
setContentView(R.layout.search);
base.setTitle(activity, res.getString(R.string.search));
// google analytics
base.sendAnal(activity, "/advanced-search");
init();
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
init();
}
@Override
public void onResume() {
super.onResume();
settings.load();
init();
}
@Override
public void onDestroy() {
if (geo != null) {
geo = app.removeGeo();
}
super.onDestroy();
}
@Override
public void onStop() {
if (geo != null) {
geo = app.removeGeo();
}
super.onStop();
}
@Override
public void onPause() {
if (geo != null) {
geo = app.removeGeo();
}
super.onPause();
}
private boolean instantSearch(String query) {
boolean found = false;
final Pattern gcCode = Pattern.compile("^GC[0-9A-Z]+$", Pattern.CASE_INSENSITIVE);
final Pattern tbCode = Pattern.compile("^TB[0-9A-Z]+$", Pattern.CASE_INSENSITIVE);
final Matcher gcCodeM = gcCode.matcher(query);
final Matcher tbCodeM = tbCode.matcher(query);
try {
if (gcCodeM.find()) { // GC-code
final Intent cachesIntent = new Intent(activity, cgeodetail.class);
cachesIntent.putExtra("geocode", query.trim().toUpperCase());
activity.startActivity(cachesIntent);
found = true;
} else if (tbCodeM.find()) { // TB-code
final Intent trackablesIntent = new Intent(activity, cgeotrackable.class);
trackablesIntent.putExtra("geocode", query.trim().toUpperCase());
activity.startActivity(trackablesIntent);
found = true;
} else { // keyword (fallback)
final Intent cachesIntent = new Intent(activity, cgeocaches.class);
cachesIntent.putExtra("type", "keyword");
cachesIntent.putExtra("keyword", query);
cachesIntent.putExtra("cachetype", settings.cacheType);
activity.startActivity(cachesIntent);
found = true;
}
} catch (Exception e) {
Log.w(cgSettings.tag, "cgeoadvsearch.instantSearch: " + e.toString());
}
return found;
}
private void init() {
settings.getLogin();
settings.reloadCacheType();
if (settings.cacheType != null && cgBase.cacheTypesInv.containsKey(settings.cacheType) == false) {
settings.setCacheType(null);
}
if (geo == null) {
geo = app.startGeo(activity, geoUpdate, base, settings, warning, 0, 0);
}
((EditText) findViewById(R.id.latitude)).setOnEditorActionListener(new findByCoordsAction());
((EditText) findViewById(R.id.longitude)).setOnEditorActionListener(new findByCoordsAction());
final Button findByCoords = (Button) findViewById(R.id.search_coordinates);
findByCoords.setOnClickListener(new findByCoordsListener());
((EditText) findViewById(R.id.address)).setOnEditorActionListener(new findByAddressAction());
final Button findByAddress = (Button) findViewById(R.id.search_address);
findByAddress.setOnClickListener(new findByAddressListener());
final AutoCompleteTextView geocodeEdit = (AutoCompleteTextView) findViewById(R.id.geocode);
geocodeEdit.setOnEditorActionListener(new findByGeocodeAction());
geocodesInCache = app.geocodesInCache();
if (geocodesInCache != null) {
final ArrayAdapter<String> geocodesAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line, geocodesInCache);
geocodeEdit.setAdapter(geocodesAdapter);
}
// geocodeEdit.addTextChangedListener(new UpperCaseTextWatcher(geocodeEdit));
final Button displayByGeocode = (Button) findViewById(R.id.display_geocode);
displayByGeocode.setOnClickListener(new findByGeocodeListener());
((EditText) findViewById(R.id.keyword)).setOnEditorActionListener(new findByKeywordAction());
final Button findByKeyword = (Button) findViewById(R.id.search_keyword);
findByKeyword.setOnClickListener(new findByKeywordListener());
((EditText) findViewById(R.id.username)).setOnEditorActionListener(new findByUsernameAction());
final Button findByUserName = (Button) findViewById(R.id.search_username);
findByUserName.setOnClickListener(new findByUsernameListener());
((EditText) findViewById(R.id.owner)).setOnEditorActionListener(new findByOwnerAction());
final Button findByOwner = (Button) findViewById(R.id.search_owner);
findByOwner.setOnClickListener(new findByOwnerListener());
EditText trackable = (EditText) findViewById(R.id.trackable);
trackable.setOnEditorActionListener(new findTrackableAction());
// trackable.addTextChangedListener(new UpperCaseTextWatcher(trackable)); // not working with HTC IMEs.
final Button displayTrackable = (Button) findViewById(R.id.display_trackable);
displayTrackable.setOnClickListener(new findTrackableListener());
}
/**
* converts user input to uppercase during typing
* @author bananeweizen
*
*/
private final class UpperCaseTextWatcher implements TextWatcher {
private final EditText editText;
private UpperCaseTextWatcher(EditText editText) {
this.editText = editText;
}
@Override
public void afterTextChanged(Editable arg0) {
// empty
}
@Override
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {
// empty
}
@Override
public void onTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {
String oldText = editText.getText().toString();
String upperText = oldText.toUpperCase();
if (!oldText.equals(upperText)) {
int selectionStart = editText.getSelectionStart();
int selectionEnd = editText.getSelectionEnd();
editText.setText(upperText);
editText.setSelection(selectionStart, selectionEnd);
}
}
}
private class update extends cgUpdateLoc {
@Override
public void updateLoc(cgGeo geo) {
if (geo == null) {
return;
}
try {
if (latEdit == null) {
latEdit = (EditText) findViewById(R.id.latitude);
}
if (lonEdit == null) {
lonEdit = (EditText) findViewById(R.id.longitude);
}
if (geo.latitudeNow != null && geo.longitudeNow != null) {
latEdit.setHint(base.formatCoordinate(geo.latitudeNow, "lat", false));
lonEdit.setHint(base.formatCoordinate(geo.longitudeNow, "lon", false));
}
} catch (Exception e) {
Log.w(cgSettings.tag, "Failed to update location.");
}
}
}
private class findByCoordsAction implements TextView.OnEditorActionListener {
@Override
public boolean onEditorAction(TextView view, int action, KeyEvent event) {
if (action == EditorInfo.IME_ACTION_GO) {
findByCoordsFn();
return true;
}
return false;
}
}
private class findByCoordsListener implements View.OnClickListener {
public void onClick(View arg0) {
findByCoordsFn();
}
}
private void findByCoordsFn() {
final EditText latView = (EditText) findViewById(R.id.latitude);
final EditText lonView = (EditText) findViewById(R.id.longitude);
final String latText = latView.getText().toString();
final String lonText = lonView.getText().toString();
if (latText == null || latText.length() == 0 || lonText == null || lonText.length() == 0) {
latView.setText(base.formatCoordinate(geo.latitudeNow, "lat", true));
lonView.setText(base.formatCoordinate(geo.longitudeNow, "lon", true));
} else {
HashMap<String, Object> latParsed = base.parseCoordinate(latText, "lat");
HashMap<String, Object> lonParsed = base.parseCoordinate(lonText, "lat");
if (latParsed == null || latParsed.get("coordinate") == null || latParsed.get("string") == null) {
warning.showToast(res.getString(R.string.err_parse_lat));
return;
}
if (lonParsed == null || lonParsed.get("coordinate") == null || lonParsed.get("string") == null) {
warning.showToast(res.getString(R.string.err_parse_lon));
return;
}
final Intent cachesIntent = new Intent(activity, cgeocaches.class);
cachesIntent.putExtra("type", "coordinate");
cachesIntent.putExtra("latitude", (Double) latParsed.get("coordinate"));
cachesIntent.putExtra("longitude", (Double) lonParsed.get("coordinate"));
cachesIntent.putExtra("cachetype", settings.cacheType);
activity.startActivity(cachesIntent);
}
}
private class findByKeywordAction implements TextView.OnEditorActionListener {
@Override
public boolean onEditorAction(TextView view, int action, KeyEvent event) {
if (action == EditorInfo.IME_ACTION_GO) {
findByKeywordFn();
return true;
}
return false;
}
}
private class findByKeywordListener implements View.OnClickListener {
public void onClick(View arg0) {
findByKeywordFn();
}
}
private void findByKeywordFn() {
// find caches by coordinates
String keyText = ((EditText) findViewById(R.id.keyword)).getText().toString();
if (keyText == null || keyText.length() == 0) {
warning.helpDialog(res.getString(R.string.warn_search_help_title), res.getString(R.string.warn_search_help_keyword));
return;
}
final Intent cachesIntent = new Intent(activity, cgeocaches.class);
cachesIntent.putExtra("type", "keyword");
cachesIntent.putExtra("keyword", keyText);
cachesIntent.putExtra("cachetype", settings.cacheType);
activity.startActivity(cachesIntent);
}
private class findByAddressAction implements TextView.OnEditorActionListener {
@Override
public boolean onEditorAction(TextView view, int action, KeyEvent event) {
if (action == EditorInfo.IME_ACTION_GO) {
findByAddressFn();
return true;
}
return false;
}
}
private class findByAddressListener implements View.OnClickListener {
public void onClick(View arg0) {
findByAddressFn();
}
}
private void findByAddressFn() {
final String addText = ((EditText) findViewById(R.id.address)).getText().toString();
if (addText == null || addText.length() == 0) {
warning.helpDialog(res.getString(R.string.warn_search_help_title), res.getString(R.string.warn_search_help_address));
return;
}
final Intent addressesIntent = new Intent(activity, cgeoaddresses.class);
addressesIntent.putExtra("keyword", addText);
activity.startActivity(addressesIntent);
}
private class findByUsernameAction implements TextView.OnEditorActionListener {
@Override
public boolean onEditorAction(TextView view, int action, KeyEvent event) {
if (action == EditorInfo.IME_ACTION_GO) {
findByUsernameFn();
return true;
}
return false;
}
}
private class findByUsernameListener implements View.OnClickListener {
public void onClick(View arg0) {
findByUsernameFn();
}
}
public void findByUsernameFn() {
final String usernameText = ((EditText) findViewById(R.id.username)).getText().toString();
if (usernameText == null || usernameText.length() == 0) {
warning.helpDialog(res.getString(R.string.warn_search_help_title), res.getString(R.string.warn_search_help_user));
return;
}
final Intent cachesIntent = new Intent(activity, cgeocaches.class);
cachesIntent.putExtra("type", "username");
cachesIntent.putExtra("username", usernameText);
cachesIntent.putExtra("cachetype", settings.cacheType);
activity.startActivity(cachesIntent);
}
private class findByOwnerAction implements TextView.OnEditorActionListener {
@Override
public boolean onEditorAction(TextView view, int action, KeyEvent event) {
if (action == EditorInfo.IME_ACTION_GO) {
findByOwnerFn();
return true;
}
return false;
}
}
private class findByOwnerListener implements View.OnClickListener {
public void onClick(View arg0) {
findByOwnerFn();
}
}
private void findByOwnerFn() {
final String usernameText = ((EditText) findViewById(R.id.owner)).getText().toString();
if (usernameText == null || usernameText.length() == 0) {
warning.helpDialog(res.getString(R.string.warn_search_help_title), res.getString(R.string.warn_search_help_user));
return;
}
final Intent cachesIntent = new Intent(activity, cgeocaches.class);
cachesIntent.putExtra("type", "owner");
cachesIntent.putExtra("username", usernameText);
cachesIntent.putExtra("cachetype", settings.cacheType);
activity.startActivity(cachesIntent);
}
private class findByGeocodeAction implements TextView.OnEditorActionListener {
@Override
public boolean onEditorAction(TextView view, int action, KeyEvent event) {
if (action == EditorInfo.IME_ACTION_GO) {
findByGeocodeFn();
return true;
}
return false;
}
}
private class findByGeocodeListener implements View.OnClickListener {
public void onClick(View arg0) {
findByGeocodeFn();
}
}
private void findByGeocodeFn() {
final String geocodeText = ((EditText) findViewById(R.id.geocode)).getText().toString();
if (geocodeText == null || geocodeText.length() == 0 || geocodeText.equalsIgnoreCase("GC")) {
warning.helpDialog(res.getString(R.string.warn_search_help_title), res.getString(R.string.warn_search_help_gccode));
return;
}
final Intent cachesIntent = new Intent(activity, cgeodetail.class);
cachesIntent.putExtra("geocode", geocodeText.toUpperCase());
activity.startActivity(cachesIntent);
}
private class findTrackableAction implements TextView.OnEditorActionListener {
@Override
public boolean onEditorAction(TextView view, int action, KeyEvent event) {
if (action == EditorInfo.IME_ACTION_GO) {
findTrackableFn();
return true;
}
return false;
}
}
private class findTrackableListener implements View.OnClickListener {
public void onClick(View arg0) {
findTrackableFn();
}
}
private void findTrackableFn() {
final String trackableText = ((EditText) findViewById(R.id.trackable)).getText().toString();
if (trackableText == null || trackableText.length() == 0 || trackableText.equalsIgnoreCase("TB")) {
warning.helpDialog(res.getString(R.string.warn_search_help_title), res.getString(R.string.warn_search_help_tb));
return;
}
final Intent trackablesIntent = new Intent(activity, cgeotrackable.class);
trackablesIntent.putExtra("geocode", trackableText.toUpperCase());
activity.startActivity(trackablesIntent);
}
public void goHome(View view) {
base.goHome(activity);
}
public void goManual(View view) {
try {
AppManualReaderClient.openManual(
"c-geo",
"c:geo-search",
activity,
"http://cgeo.carnero.cc/manual/");
} catch (Exception e) {
// nothing
}
}
}
|