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
|
package cgeo.geocaching.connector.oc;
import cgeo.geocaching.Geocache;
import cgeo.geocaching.ICache;
import cgeo.geocaching.SearchResult;
import cgeo.geocaching.Settings;
import cgeo.geocaching.connector.capability.ISearchByCenter;
import cgeo.geocaching.connector.capability.ISearchByGeocode;
import cgeo.geocaching.connector.capability.ISearchByViewPort;
import cgeo.geocaching.geopoint.Geopoint;
import cgeo.geocaching.geopoint.Viewport;
import cgeo.geocaching.ui.Formatter;
import cgeo.geocaching.utils.CancellableHandler;
import org.apache.commons.lang3.StringUtils;
public class OCXMLApiConnector extends OCConnector implements ISearchByGeocode, ISearchByCenter, ISearchByViewPort {
private final static double SEARCH_DISTANCE_LIMIT = 15.0;
private final static double NEARBY_SEARCH_DISTANCE = 5.0;
public OCXMLApiConnector(String name, String host, String prefix) {
super(name, host, prefix);
}
@Override
public SearchResult searchByGeocode(final String geocode, final String guid, CancellableHandler handler) {
final Geocache cache = OCXMLClient.getCache(geocode);
if (cache == null) {
return null;
}
return new SearchResult(cache);
}
@Override
public SearchResult searchByCenter(final Geopoint center) {
return new SearchResult(OCXMLClient.getCachesAround(center, NEARBY_SEARCH_DISTANCE));
}
@Override
public SearchResult searchByViewport(final Viewport viewport, final String[] tokens) {
final Geopoint center = viewport.getCenter();
double distance = center.distanceTo(viewport.bottomLeft) * 1.15;
if (distance > SEARCH_DISTANCE_LIMIT) {
distance = SEARCH_DISTANCE_LIMIT;
}
return new SearchResult(OCXMLClient.getCachesAround(center, distance));
}
@Override
public boolean isActivated() {
// currently only tested and working with oc.de
return Settings.isOCConnectorActive();
}
@Override
public boolean isOwner(ICache cache) {
return StringUtils.equalsIgnoreCase(cache.getOwnerDisplayName(), Settings.getOCConnectorUserName());
}
@Override
public String getLicenseText(Geocache cache) {
// not to be translated
return "© " + cache.getOwnerDisplayName() + ", " + "<a href=\"" + getCacheUrl(cache) + "\">www.opencaching.de</a>, CC-BY-NC-ND, Stand: " + Formatter.formatFullDate(cache.getUpdated());
}
}
|