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
|
package cgeo.geocaching.connector.oc;
import cgeo.geocaching.CgeoApplication;
import cgeo.geocaching.DataStore;
import cgeo.geocaching.Geocache;
import cgeo.geocaching.LogCacheActivity;
import cgeo.geocaching.SearchResult;
import cgeo.geocaching.connector.ILoggingManager;
import cgeo.geocaching.connector.capability.ILogin;
import cgeo.geocaching.connector.capability.ISearchByCenter;
import cgeo.geocaching.connector.capability.ISearchByFinder;
import cgeo.geocaching.connector.capability.ISearchByKeyword;
import cgeo.geocaching.connector.capability.ISearchByOwner;
import cgeo.geocaching.connector.capability.ISearchByViewPort;
import cgeo.geocaching.connector.gc.MapTokens;
import cgeo.geocaching.connector.oc.UserInfo.UserInfoStatus;
import cgeo.geocaching.geopoint.Geopoint;
import cgeo.geocaching.geopoint.Viewport;
import cgeo.geocaching.loaders.RecaptchaReceiver;
import cgeo.geocaching.settings.Settings;
import cgeo.geocaching.utils.CryptUtils;
import org.apache.commons.lang3.StringUtils;
import org.eclipse.jdt.annotation.NonNull;
import android.content.Context;
import android.os.Handler;
public class OCApiLiveConnector extends OCApiConnector implements ISearchByCenter, ISearchByViewPort, ILogin, ISearchByKeyword, ISearchByOwner, ISearchByFinder {
private final String cS;
private final int isActivePrefKeyId;
private final int tokenPublicPrefKeyId;
private final int tokenSecretPrefKeyId;
private UserInfo userInfo = new UserInfo(StringUtils.EMPTY, 0, UserInfoStatus.NOT_RETRIEVED);
public OCApiLiveConnector(String name, String host, String prefix, String licenseString, int cKResId, int cSResId, int isActivePrefKeyId, int tokenPublicPrefKeyId, int tokenSecretPrefKeyId, ApiSupport apiSupport) {
super(name, host, prefix, CryptUtils.rot13(CgeoApplication.getInstance().getResources().getString(cKResId)), licenseString, apiSupport);
cS = CryptUtils.rot13(CgeoApplication.getInstance().getResources().getString(cSResId));
this.isActivePrefKeyId = isActivePrefKeyId;
this.tokenPublicPrefKeyId = tokenPublicPrefKeyId;
this.tokenSecretPrefKeyId = tokenSecretPrefKeyId;
}
@Override
public boolean isActive() {
return Settings.isOCConnectorActive(isActivePrefKeyId);
}
@Override
public SearchResult searchByViewport(@NonNull Viewport viewport, MapTokens tokens) {
return new SearchResult(OkapiClient.getCachesBBox(viewport, this));
}
@Override
public SearchResult searchByCenter(@NonNull Geopoint center, final @NonNull RecaptchaReceiver recaptchaReceiver) {
return new SearchResult(OkapiClient.getCachesAround(center, this));
}
@Override
public SearchResult searchByOwner(@NonNull String username, final @NonNull RecaptchaReceiver recaptchaReceiver) {
return new SearchResult(OkapiClient.getCachesByOwner(username, this));
}
@Override
public SearchResult searchByFinder(@NonNull String username, final @NonNull RecaptchaReceiver recaptchaReceiver) {
return new SearchResult(OkapiClient.getCachesByFinder(username, this));
}
@Override
public OAuthLevel getSupportedAuthLevel() {
if (Settings.hasOCAuthorization(tokenPublicPrefKeyId, tokenSecretPrefKeyId)) {
return OAuthLevel.Level3;
}
return OAuthLevel.Level1;
}
@Override
public String getCS() {
return CryptUtils.rot13(cS);
}
@Override
public int getTokenPublicPrefKeyId() {
return tokenPublicPrefKeyId;
}
@Override
public int getTokenSecretPrefKeyId() {
return tokenSecretPrefKeyId;
}
@Override
public boolean supportsWatchList() {
return true;
}
@Override
public boolean addToWatchlist(Geocache cache) {
final boolean added = OkapiClient.setWatchState(cache, true, this);
if (added) {
DataStore.saveChangedCache(cache);
}
return added;
}
@Override
public boolean removeFromWatchlist(Geocache cache) {
final boolean removed = OkapiClient.setWatchState(cache, false, this);
if (removed) {
DataStore.saveChangedCache(cache);
}
return removed;
}
@Override
public boolean supportsLogging() {
return true;
}
@Override
public ILoggingManager getLoggingManager(final LogCacheActivity activity, final Geocache cache) {
return new OkapiLoggingManager(activity, this, cache);
}
@Override
public boolean canLog(Geocache cache) {
return true;
}
public boolean supportsPersonalization() {
return getSupportedAuthLevel() == OAuthLevel.Level3;
}
@Override
public boolean login(Handler handler, Context fromActivity) {
if (supportsPersonalization()) {
userInfo = OkapiClient.getUserInfo(this);
} else {
userInfo = new UserInfo(StringUtils.EMPTY, 0, UserInfoStatus.NOT_SUPPORTED);
}
return userInfo.getStatus() == UserInfoStatus.SUCCESSFUL;
}
@Override
public String getUserName() {
return userInfo.getName();
}
@Override
public int getCachesFound() {
return userInfo.getFinds();
}
@Override
public String getLoginStatusString() {
return CgeoApplication.getInstance().getString(userInfo.getStatus().resId);
}
@Override
public boolean isLoggedIn() {
return userInfo.getStatus() == UserInfoStatus.SUCCESSFUL;
}
@Override
public SearchResult searchByKeyword(final @NonNull String name, final @NonNull RecaptchaReceiver recaptchaReceiver) {
final Geopoint currentPos = CgeoApplication.getInstance().currentGeo().getCoords();
return new SearchResult(OkapiClient.getCachesNamed(currentPos, name, this));
}
@Override
public boolean isSearchForMyCaches(String username) {
return StringUtils.equalsIgnoreCase(username, getUserName());
}
}
|