Showing google places api status.
parent
90238d5515
commit
af3120f874
|
@ -54,7 +54,11 @@ public class PlacesAdapter extends ArrayAdapter<GooglePlaceResult> {
|
||||||
placeAddressWidget.setText(item.getVicinity());
|
placeAddressWidget.setText(item.getVicinity());
|
||||||
|
|
||||||
TextView placeRateWidget = (TextView) resultView.findViewById(R.id.place_rate);
|
TextView placeRateWidget = (TextView) resultView.findViewById(R.id.place_rate);
|
||||||
|
if (item.getRating() != null && !item.getRating().equals(Double.NaN)) {
|
||||||
placeRateWidget.setText("" + item.getRating());
|
placeRateWidget.setText("" + item.getRating());
|
||||||
|
} else {
|
||||||
|
placeRateWidget.setText("N/A");
|
||||||
|
}
|
||||||
|
|
||||||
ImageView placePreviewWidget = (ImageView)resultView.findViewById(R.id.place_img_preview);
|
ImageView placePreviewWidget = (ImageView)resultView.findViewById(R.id.place_img_preview);
|
||||||
placePreviewWidget.setImageBitmap(BitmapFactory.decodeResource(getContext().getResources(), R.drawable.noimage));
|
placePreviewWidget.setImageBitmap(BitmapFactory.decodeResource(getContext().getResources(), R.drawable.noimage));
|
||||||
|
|
|
@ -12,6 +12,7 @@ public class GooglePlacesResponse {
|
||||||
|
|
||||||
private String nextPageToken;
|
private String nextPageToken;
|
||||||
private String originalPageToken;
|
private String originalPageToken;
|
||||||
|
private String status;
|
||||||
|
|
||||||
public List<GooglePlaceResult> getPlaces() {
|
public List<GooglePlaceResult> getPlaces() {
|
||||||
return places;
|
return places;
|
||||||
|
@ -37,12 +38,21 @@ public class GooglePlacesResponse {
|
||||||
return originalPageToken;
|
return originalPageToken;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getStatus() {
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStatus(String status) {
|
||||||
|
this.status = status;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "GooglePlacesResponse{" +
|
return "GooglePlacesResponse{" +
|
||||||
"places=" + places +
|
"places=" + places +
|
||||||
", nextPageToken='" + nextPageToken + '\'' +
|
", nextPageToken='" + nextPageToken + '\'' +
|
||||||
", originalPageToken='" + originalPageToken + '\'' +
|
", originalPageToken='" + originalPageToken + '\'' +
|
||||||
|
", status='" + status + '\'' +
|
||||||
'}';
|
'}';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -179,6 +179,8 @@ public class PlacesFragment extends Fragment {
|
||||||
|
|
||||||
if ((places == null || places.isEmpty()) && !noMoreResults) {
|
if ((places == null || places.isEmpty()) && !noMoreResults) {
|
||||||
fetchNearbyPlacesAndPresent(location);
|
fetchNearbyPlacesAndPresent(location);
|
||||||
|
} else {
|
||||||
|
lg.debug("Places: {}, no more results: {}", places, noMoreResults);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,31 +3,21 @@ package pl.tpolgrabia.urbanexplorer.worker;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.location.Location;
|
import android.location.Location;
|
||||||
import android.os.AsyncTask;
|
import android.os.AsyncTask;
|
||||||
import android.view.View;
|
import android.widget.Toast;
|
||||||
import android.widget.ListView;
|
|
||||||
import org.apache.http.HttpStatus;
|
import org.apache.http.HttpStatus;
|
||||||
import org.greenrobot.eventbus.EventBus;
|
import org.greenrobot.eventbus.EventBus;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import pl.tpolgrabia.googleutils.callback.PlacesCallback;
|
|
||||||
import pl.tpolgrabia.googleutils.dto.GooglePlacePhoto;
|
|
||||||
import pl.tpolgrabia.googleutils.dto.GooglePlaceResponse;
|
import pl.tpolgrabia.googleutils.dto.GooglePlaceResponse;
|
||||||
import pl.tpolgrabia.googleutils.dto.GooglePlaceResult;
|
|
||||||
import pl.tpolgrabia.googleutils.utils.PlacesUtils;
|
import pl.tpolgrabia.googleutils.utils.PlacesUtils;
|
||||||
import pl.tpolgrabia.urbanexplorer.AppConstants;
|
import pl.tpolgrabia.urbanexplorer.AppConstants;
|
||||||
import pl.tpolgrabia.urbanexplorer.R;
|
|
||||||
import pl.tpolgrabia.urbanexplorer.adapters.PlacesAdapter;
|
|
||||||
import pl.tpolgrabia.urbanexplorer.dto.GooglePlacesRequest;
|
import pl.tpolgrabia.urbanexplorer.dto.GooglePlacesRequest;
|
||||||
import pl.tpolgrabia.urbanexplorer.dto.GooglePlacesResponse;
|
import pl.tpolgrabia.urbanexplorer.dto.GooglePlacesResponse;
|
||||||
import pl.tpolgrabia.urbanexplorer.fragments.PlacesFragment;
|
|
||||||
import retrofit2.Response;
|
import retrofit2.Response;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Set;
|
|
||||||
import java.util.concurrent.Semaphore;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by tpolgrabia on 03.10.16.
|
* Created by tpolgrabia on 03.10.16.
|
||||||
|
@ -37,9 +27,11 @@ public class GooglePlacesWorker extends AsyncTask<GooglePlacesRequest, Integer,
|
||||||
private static final Logger lg = LoggerFactory.getLogger(GooglePlacesWorker.class);
|
private static final Logger lg = LoggerFactory.getLogger(GooglePlacesWorker.class);
|
||||||
|
|
||||||
private final PlacesUtils placesUtils;
|
private final PlacesUtils placesUtils;
|
||||||
|
private final Context ctx;
|
||||||
|
|
||||||
public GooglePlacesWorker(Context ctx) {
|
public GooglePlacesWorker(Context ctx) {
|
||||||
this.placesUtils = new PlacesUtils(ctx, AppConstants.GOOGLE_API_KEY);
|
this.placesUtils = new PlacesUtils(ctx, AppConstants.GOOGLE_API_KEY);
|
||||||
|
this.ctx = ctx;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -64,9 +56,12 @@ public class GooglePlacesWorker extends AsyncTask<GooglePlacesRequest, Integer,
|
||||||
|
|
||||||
if (placesResponse != null && placesResponse.code() == HttpStatus.SC_OK) {
|
if (placesResponse != null && placesResponse.code() == HttpStatus.SC_OK) {
|
||||||
GooglePlacesResponse response = new GooglePlacesResponse();
|
GooglePlacesResponse response = new GooglePlacesResponse();
|
||||||
response.setPlaces(placesResponse.body().getResults());
|
final GooglePlaceResponse responseBody = placesResponse.body();
|
||||||
response.setNextPageToken(placesResponse.body().getNextPageToken());
|
lg.debug("Google response body: {}", responseBody);
|
||||||
|
response.setPlaces(responseBody.getResults());
|
||||||
|
response.setNextPageToken(responseBody.getNextPageToken());
|
||||||
response.setOriginalPageToken(param.getPageToken());
|
response.setOriginalPageToken(param.getPageToken());
|
||||||
|
response.setStatus(responseBody.getStatus());
|
||||||
result.add(response);
|
result.add(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,6 +80,17 @@ public class GooglePlacesWorker extends AsyncTask<GooglePlacesRequest, Integer,
|
||||||
lg.debug("Post execute {}", googlePlacesResponses);
|
lg.debug("Post execute {}", googlePlacesResponses);
|
||||||
|
|
||||||
for (GooglePlacesResponse response : googlePlacesResponses) {
|
for (GooglePlacesResponse response : googlePlacesResponses) {
|
||||||
|
final String googleStatus = response.getStatus();
|
||||||
|
if (!"OK".equals(googleStatus) && !"SUCCESS".equals(googleStatus)) {
|
||||||
|
if (!"OVER_QUERY_LIMIT".equals(googleStatus)) {
|
||||||
|
Toast.makeText(ctx, "Google returned status {}", Toast.LENGTH_LONG).show();
|
||||||
|
} else {
|
||||||
|
Toast.makeText(ctx,
|
||||||
|
"This application has exceeded free google places api daily limit - 150k." +
|
||||||
|
" Sorry for that - I can nothing do more except from buying the premium plan which" +
|
||||||
|
" is nearly zero-probable - this is free app", Toast.LENGTH_LONG).show();
|
||||||
|
}
|
||||||
|
}
|
||||||
EventBus.getDefault().post(response);
|
EventBus.getDefault().post(response);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue