Parameter checking.
parent
f3fc8622e8
commit
f3ff01fb2f
|
@ -126,7 +126,7 @@ public class HomeFragment extends Fragment {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
|
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
|
||||||
pageId = Math.max(1, NumberUtils.safeParseLong(charSequence));
|
pageId = Math.max(1, NumberUtils.safeParseLong(safeAndroidText2String(charSequence)));
|
||||||
Log.d(CLASS_TAG, "text changed");
|
Log.d(CLASS_TAG, "text changed");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -252,11 +252,16 @@ public class HomeFragment extends Fragment {
|
||||||
}
|
}
|
||||||
|
|
||||||
private Long fetchLocationPageSize() {
|
private Long fetchLocationPageSize() {
|
||||||
return NumberUtils.safeParseLong(pageSizeWidget.getText());
|
CharSequence page_size = pageSizeWidget.getText();
|
||||||
|
return NumberUtils.safeParseLong(safeAndroidText2String(page_size));
|
||||||
|
}
|
||||||
|
|
||||||
|
private String safeAndroidText2String(CharSequence page_size) {
|
||||||
|
return page_size != null ? page_size.toString() : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Long fetchLocationPageId() {
|
private Long fetchLocationPageId() {
|
||||||
return Math.max(0L, NumberUtils.safeParseLong(pageIdWidget.getText()));
|
return Math.max(0L, NumberUtils.safeParseLong(safeAndroidText2String(pageIdWidget.getText())));
|
||||||
}
|
}
|
||||||
|
|
||||||
private Double fetchRadiusX() {
|
private Double fetchRadiusX() {
|
||||||
|
|
|
@ -5,6 +5,7 @@ import android.location.Location;
|
||||||
import android.location.LocationManager;
|
import android.location.LocationManager;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.support.v4.app.Fragment;
|
import android.support.v4.app.Fragment;
|
||||||
|
import android.text.Editable;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
|
@ -58,14 +59,16 @@ public class WikiLocationsFragment extends Fragment {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View v) {
|
public void onClick(View v) {
|
||||||
final Location location = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(getActivity()));
|
final Location location = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(getActivity()));
|
||||||
|
Editable search_limit = ((EditText) inflatedView.findViewById(R.id.wiki_search_limit)).getText();
|
||||||
|
Editable radius_limit = ((EditText) inflatedView.findViewById(R.id.wiki_search_radius)).getText();
|
||||||
WikiUtils.fetchNearPlaces(
|
WikiUtils.fetchNearPlaces(
|
||||||
getActivity(),
|
getActivity(),
|
||||||
location.getLatitude(),
|
location.getLatitude(),
|
||||||
location.getLongitude(),
|
location.getLongitude(),
|
||||||
NumberUtils.safeParseLong(
|
NumberUtils.safeParseLong(
|
||||||
((EditText) inflatedView.findViewById(R.id.wiki_search_limit)).getText()),
|
search_limit != null ? search_limit.toString(): null),
|
||||||
NumberUtils.safeParseLong(
|
NumberUtils.safeParseLong(
|
||||||
((EditText) inflatedView.findViewById(R.id.wiki_search_radius)).getText()),
|
radius_limit != null ? radius_limit.toString() : null),
|
||||||
new WikiResponseCallback() {
|
new WikiResponseCallback() {
|
||||||
@Override
|
@Override
|
||||||
public void callback(WikiStatus status, WikiResponse response) {
|
public void callback(WikiStatus status, WikiResponse response) {
|
||||||
|
|
|
@ -4,15 +4,15 @@ package pl.tpolgrabia.urbanexplorer.utils;
|
||||||
* Created by tpolgrabia on 27.08.16.
|
* Created by tpolgrabia on 27.08.16.
|
||||||
*/
|
*/
|
||||||
public class NumberUtils {
|
public class NumberUtils {
|
||||||
public static Long safeParseLong(CharSequence charSequence) {
|
public static Long safeParseLong(String s) {
|
||||||
if (charSequence == null) {
|
if (s == null || "".equals(s)) {
|
||||||
return 1L;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
return Long.parseLong(charSequence.toString());
|
return Long.parseLong(s);
|
||||||
} catch (NumberFormatException e) {
|
} catch (NumberFormatException e) {
|
||||||
return 1L;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,6 +19,7 @@ import pl.tpolgrabia.urbanexplorer.dto.WikiThumbnail;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by tpolgrabia on 28.08.16.
|
* Created by tpolgrabia on 28.08.16.
|
||||||
|
@ -26,12 +27,15 @@ import java.util.List;
|
||||||
public class WikiUtils {
|
public class WikiUtils {
|
||||||
private static final String CLASS_TAG = WikiUtils.class.getSimpleName();
|
private static final String CLASS_TAG = WikiUtils.class.getSimpleName();
|
||||||
private static final String WIKI_FORMAT = "json";
|
private static final String WIKI_FORMAT = "json";
|
||||||
|
private static final long WIKI_MIN_RADIUS = 10L;
|
||||||
|
private static final Long WIKI_MAX_RESULTS_LIMIT = 500L;
|
||||||
|
private static final Long WIKI_MIN_RESULTS = 10L;
|
||||||
|
|
||||||
public static void fetchNearPlaces(Context ctx,
|
public static void fetchNearPlaces(Context ctx,
|
||||||
final double latitude,
|
final double latitude,
|
||||||
final double longitude,
|
final double longitude,
|
||||||
final long resultsLimit,
|
final Long resultsLimit,
|
||||||
final long radiusLimit,
|
final Long radiusLimit,
|
||||||
final WikiResponseCallback callback) {
|
final WikiResponseCallback callback) {
|
||||||
final AQuery aq = new AQuery(ctx);
|
final AQuery aq = new AQuery(ctx);
|
||||||
aq.ajax("TODO", JSONObject.class, new AjaxCallback<JSONObject>(){
|
aq.ajax("TODO", JSONObject.class, new AjaxCallback<JSONObject>(){
|
||||||
|
@ -48,8 +52,9 @@ public class WikiUtils {
|
||||||
"&wbptterms=description" +
|
"&wbptterms=description" +
|
||||||
"&generator=geosearch" +
|
"&generator=geosearch" +
|
||||||
"&ggscoord=" + latitude + "%7C" + longitude +
|
"&ggscoord=" + latitude + "%7C" + longitude +
|
||||||
"&ggsradius=" + radiusLimit +
|
"&ggsradius=" + Math.max(WIKI_MIN_RADIUS, ifNullSet(radiusLimit, 10000L)) +
|
||||||
"&ggslimit=" + resultsLimit +
|
"&ggslimit=" + Math.min(WIKI_MIN_RESULTS, Math.max(WIKI_MAX_RESULTS_LIMIT,
|
||||||
|
checkIfNullLong(resultsLimit))) +
|
||||||
"&format=" + WIKI_FORMAT;
|
"&format=" + WIKI_FORMAT;
|
||||||
aq.ajax(qurl, JSONObject.class, new AjaxCallback<JSONObject>() {
|
aq.ajax(qurl, JSONObject.class, new AjaxCallback<JSONObject>() {
|
||||||
@Override
|
@Override
|
||||||
|
@ -70,6 +75,14 @@ public class WikiUtils {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static <T> T ifNullSet(T val, T def) {
|
||||||
|
return val == null ? def : val;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Long checkIfNullLong(Long lval) {
|
||||||
|
return lval != null ? lval : 0L;
|
||||||
|
}
|
||||||
|
|
||||||
public static WikiResponse fetchWikiResponse(JSONObject object) throws JSONException {
|
public static WikiResponse fetchWikiResponse(JSONObject object) throws JSONException {
|
||||||
if (object == null) {
|
if (object == null) {
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in New Issue