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
183
184
185
186
187
188
|
package cgeo.geocaching;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.tuple.ImmutablePair;
import android.util.Log;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public final class GCVote {
private static final Pattern patternLogIn = Pattern.compile("loggedIn='([^']+)'", Pattern.CASE_INSENSITIVE);
private static final Pattern patternGuid = Pattern.compile("cacheId='([^']+)'", Pattern.CASE_INSENSITIVE);
private static final Pattern patternRating = Pattern.compile("voteAvg='([0-9.]+)'", Pattern.CASE_INSENSITIVE);
private static final Pattern patternVotes = Pattern.compile("voteCnt='([0-9]+)'", Pattern.CASE_INSENSITIVE);
private static final Pattern patternVote = Pattern.compile("voteUser='([0-9.]+)'", Pattern.CASE_INSENSITIVE);
private static final Pattern patternVoteElement = Pattern.compile("<vote ([^>]+)>", Pattern.CASE_INSENSITIVE);
public static cgRating getRating(String guid, String geocode) {
List<String> guids = null;
List<String> geocodes = null;
if (StringUtils.isNotBlank(guid)) {
guids = new ArrayList<String>();
guids.add(guid);
} else if (StringUtils.isNotBlank(geocode)) {
geocodes = new ArrayList<String>();
geocodes.add(geocode);
} else {
return null;
}
final Map<String, cgRating> ratings = getRating(guids, geocodes);
if (ratings != null) {
for (Entry<String, cgRating> entry : ratings.entrySet()) {
return entry.getValue();
}
}
return null;
}
public static Map<String, cgRating> getRating(List<String> guids, List<String> geocodes) {
if (guids == null && geocodes == null) {
return null;
}
final Map<String, cgRating> ratings = new HashMap<String, cgRating>();
try {
final Parameters params = new Parameters();
if (Settings.isLogin()) {
final ImmutablePair<String, String> login = Settings.getGCvoteLogin();
if (login != null) {
params.put("userName", login.left, "password", login.right);
}
}
if (CollectionUtils.isNotEmpty(guids)) {
params.put("cacheIds", StringUtils.join(guids.toArray(), ','));
} else {
params.put("waypoints", StringUtils.join(geocodes.toArray(), ','));
}
params.put("version", "cgeo");
final String votes = cgBase.getResponseData(cgBase.request("http://gcvote.com/getVotes.php", params, false, false, false));
if (votes == null) {
return null;
}
String voteData = null;
final Matcher matcherVoteElement = patternVoteElement.matcher(votes);
while (matcherVoteElement.find()) {
if (matcherVoteElement.groupCount() > 0) {
voteData = matcherVoteElement.group(1);
}
if (voteData == null) {
continue;
}
String guid = null;
cgRating rating = new cgRating();
boolean loggedIn = false;
try {
final Matcher matcherGuid = patternGuid.matcher(voteData);
if (matcherGuid.find()) {
if (matcherGuid.groupCount() > 0) {
guid = matcherGuid.group(1);
}
}
} catch (Exception e) {
Log.w(Settings.tag, "cgBase.getRating: Failed to parse guid");
}
try {
final Matcher matcherLoggedIn = patternLogIn.matcher(votes);
if (matcherLoggedIn.find()) {
if (matcherLoggedIn.groupCount() > 0) {
if (matcherLoggedIn.group(1).equalsIgnoreCase("true")) {
loggedIn = true;
}
}
}
} catch (Exception e) {
Log.w(Settings.tag, "cgBase.getRating: Failed to parse loggedIn");
}
try {
final Matcher matcherRating = patternRating.matcher(voteData);
if (matcherRating.find()) {
if (matcherRating.groupCount() > 0) {
rating.rating = Float.parseFloat(matcherRating.group(1));
}
}
} catch (Exception e) {
Log.w(Settings.tag, "cgBase.getRating: Failed to parse rating");
}
try {
final Matcher matcherVotes = patternVotes.matcher(voteData);
if (matcherVotes.find()) {
if (matcherVotes.groupCount() > 0) {
rating.votes = Integer.parseInt(matcherVotes.group(1));
}
}
} catch (Exception e) {
Log.w(Settings.tag, "cgBase.getRating: Failed to parse vote count");
}
if (loggedIn) {
try {
final Matcher matcherVote = patternVote.matcher(voteData);
if (matcherVote.find()) {
if (matcherVote.groupCount() > 0) {
rating.myVote = Float.parseFloat(matcherVote.group(1));
}
}
} catch (Exception e) {
Log.w(Settings.tag, "cgBase.getRating: Failed to parse user's vote");
}
}
if (StringUtils.isNotBlank(guid)) {
ratings.put(guid, rating);
}
}
} catch (Exception e) {
Log.e(Settings.tag, "cgBase.getRating: " + e.toString());
}
return ratings;
}
public static boolean setRating(cgCache cache, double vote) {
if (!cache.supportsGCVote()) {
return false;
}
String guid = cache.getGuid();
if (StringUtils.isBlank(guid)) {
return false;
}
if (vote <= 0.0 || vote > 5.0) {
return false;
}
final ImmutablePair<String, String> login = Settings.getGCvoteLogin();
if (login == null) {
return false;
}
final Parameters params = new Parameters(
"userName", login.left,
"password", login.right,
"cacheId", guid,
"voteUser", String.format("%.1f", vote).replace(',', '.'),
"version", "cgeo");
final String result = cgBase.getResponseData(cgBase.request("http://gcvote.com/setVote.php", params, false, false, false));
return result.trim().equalsIgnoreCase("ok");
}
}
|