mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-28 02:37:46 +00:00
4dd5a92817
Fixes #6671 // FREEBIE
78 lines
1.8 KiB
Java
78 lines
1.8 KiB
Java
package org.thoughtcrime.securesms.components.location;
|
|
|
|
import android.support.annotation.NonNull;
|
|
import android.support.annotation.Nullable;
|
|
import android.text.TextUtils;
|
|
import android.util.Log;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import com.google.android.gms.location.places.Place;
|
|
import com.google.android.gms.maps.model.LatLng;
|
|
|
|
import org.thoughtcrime.securesms.util.JsonUtils;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class SignalPlace {
|
|
|
|
private static final String URL = "https://maps.google.com/maps?q=%s,%s";
|
|
private static final String TAG = SignalPlace.class.getSimpleName();
|
|
|
|
@JsonProperty
|
|
private CharSequence name;
|
|
|
|
@JsonProperty
|
|
private CharSequence address;
|
|
|
|
@JsonProperty
|
|
private double latitude;
|
|
|
|
@JsonProperty
|
|
private double longitude;
|
|
|
|
public SignalPlace(Place place) {
|
|
this.name = place.getName();
|
|
this.address = place.getAddress();
|
|
this.latitude = place.getLatLng().latitude;
|
|
this.longitude = place.getLatLng().longitude;
|
|
}
|
|
|
|
public SignalPlace() {}
|
|
|
|
@JsonIgnore
|
|
public LatLng getLatLong() {
|
|
return new LatLng(latitude, longitude);
|
|
}
|
|
|
|
@JsonIgnore
|
|
public String getDescription() {
|
|
String description = "";
|
|
|
|
if (!TextUtils.isEmpty(name)) {
|
|
description += (name + "\n");
|
|
}
|
|
|
|
if (!TextUtils.isEmpty(address)) {
|
|
description += (address + "\n");
|
|
}
|
|
|
|
description += String.format(URL, latitude, longitude);
|
|
|
|
return description;
|
|
}
|
|
|
|
public @Nullable String serialize() {
|
|
try {
|
|
return JsonUtils.toJson(this);
|
|
} catch (IOException e) {
|
|
Log.w(TAG, e);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public static SignalPlace deserialize(@NonNull String serialized) throws IOException {
|
|
return JsonUtils.fromJson(serialized, SignalPlace.class);
|
|
}
|
|
}
|