-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathCloudReactionsClient.java
More file actions
307 lines (254 loc) · 10.5 KB
/
CloudReactionsClient.java
File metadata and controls
307 lines (254 loc) · 10.5 KB
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
package io.getstream.cloud;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import com.google.common.collect.Iterables;
import io.getstream.core.LookupKind;
import io.getstream.core.StreamReactions;
import io.getstream.core.exceptions.StreamException;
import io.getstream.core.http.Token;
import io.getstream.core.models.FeedID;
import io.getstream.core.models.Reaction;
import io.getstream.core.options.Filter;
import io.getstream.core.options.Limit;
import io.getstream.core.options.RequestOption;
import io.getstream.core.utils.DefaultOptions;
import java.util.List;
import java.util.Map;
import java8.util.concurrent.CompletableFuture;
public final class CloudReactionsClient {
private final Token token;
private final String userID;
private final StreamReactions reactions;
CloudReactionsClient(Token token, String userID, StreamReactions reactions) {
this.token = token;
this.userID = userID;
this.reactions = reactions;
}
public CompletableFuture<Reaction> get(String id) throws StreamException {
return reactions.get(token, id);
}
public CompletableFuture<List<Reaction>> filter(LookupKind lookup, String id)
throws StreamException {
Params params = new Params(lookup, id);
return filter(params);
}
public CompletableFuture<List<Reaction>> filter(LookupKind lookup, String id, Limit limit)
throws StreamException {
Params params = new Params(lookup, id).withLimit(limit);
return filter(params);
}
public CompletableFuture<List<Reaction>> filter(LookupKind lookup, String id, Filter filter)
throws StreamException {
Params params = new Params(lookup, id).withFilter(filter);
return filter(params);
}
public CompletableFuture<List<Reaction>> filter(LookupKind lookup, String id, String kind)
throws StreamException {
Params params = new Params(lookup, id).withKind(kind);
return filter(params);
}
public CompletableFuture<List<Reaction>> filter(
LookupKind lookup, String id, Filter filter, Limit limit) throws StreamException {
Params params = new Params(lookup, id).withFilter(filter).withLimit(limit);
return filter(params);
}
public CompletableFuture<List<Reaction>> filter(
LookupKind lookup, String id, Limit limit, String kind) throws StreamException {
Params params = new Params(lookup, id).withLimit(limit).withKind(kind);
return filter(params);
}
public CompletableFuture<List<Reaction>> filter(
LookupKind lookup, String id, Filter filter, Limit limit, String kind)
throws StreamException {
Params params =
new Params(lookup, id).withLimit(limit).withKind(kind).withFilter(filter).withLimit(limit);
return filter(params);
}
public CompletableFuture<List<Reaction>> filter(
LookupKind lookup,
String id,
Filter filter,
Limit limit,
String kind,
Boolean includeOwnChildren)
throws StreamException {
Params params =
new Params(lookup, id)
.withLimit(limit)
.withKind(kind)
.withFilter(filter)
.withLimit(limit)
.includeOwnChildren(includeOwnChildren);
return filter(params);
}
private CompletableFuture<List<Reaction>> filter(Params params) throws StreamException {
return reactions.filter(
token,
params.getLookupKind(),
params.getId(),
params.getFilter(),
params.getLimit(),
params.getKind(),
params.getWithOwnChildren(), "");
}
public CompletableFuture<Reaction> add(
String kind, String activityID, Iterable<FeedID> targetFeeds) throws StreamException {
return add(userID, kind, activityID, targetFeeds);
}
public CompletableFuture<Reaction> add(String kind, String activityID, FeedID... targetFeeds)
throws StreamException {
return add(userID, activityID, targetFeeds);
}
public CompletableFuture<Reaction> add(Reaction reaction, Iterable<FeedID> targetFeeds)
throws StreamException {
return add(userID, reaction, targetFeeds);
}
public CompletableFuture<Reaction> add(Reaction reaction, FeedID... targetFeeds)
throws StreamException {
return add(userID, reaction, targetFeeds);
}
public CompletableFuture<Reaction> add(
String userID, String kind, String activityID, Iterable<FeedID> targetFeeds)
throws StreamException {
return add(userID, kind, activityID, Iterables.toArray(targetFeeds, FeedID.class));
}
public CompletableFuture<Reaction> add(
String userID, String kind, String activityID, FeedID... targetFeeds) throws StreamException {
checkNotNull(kind, "Reaction kind can't be null");
checkArgument(!kind.isEmpty(), "Reaction kind can't be empty");
checkNotNull(activityID, "Reaction activity id can't be null");
checkArgument(!activityID.isEmpty(), "Reaction activity id can't be empty");
return add(userID, Reaction.builder().activityID(activityID).kind(kind).build(), targetFeeds);
}
public CompletableFuture<Reaction> add(
String userID, Reaction reaction, Iterable<FeedID> targetFeeds) throws StreamException {
return add(userID, reaction, Iterables.toArray(targetFeeds, FeedID.class));
}
public CompletableFuture<Reaction> add(String userID, Reaction reaction, FeedID... targetFeeds)
throws StreamException {
return reactions.add(token, userID, reaction, targetFeeds);
}
public CompletableFuture<Reaction> add(
String userID, Reaction reaction, FeedID[] targetFeeds, RequestOption... options)
throws StreamException {
return reactions.add(token, userID, reaction, targetFeeds, null, options);
}
public CompletableFuture<Reaction> add(
String userID, Reaction reaction, FeedID[] targetFeeds,
Map<String, Object> targetFeedsExtraData, RequestOption... options) throws StreamException {
return reactions.add(token, userID, reaction, targetFeeds, targetFeedsExtraData, options);
}
public CompletableFuture<Reaction> addChild(
String userID, String kind, String parentID, Iterable<FeedID> targetFeeds)
throws StreamException {
Reaction child = Reaction.builder().kind(kind).parent(parentID).build();
return add(userID, child, targetFeeds);
}
public CompletableFuture<Reaction> addChild(
String userID, String kind, String parentID, FeedID... targetFeeds) throws StreamException {
Reaction child = Reaction.builder().kind(kind).parent(parentID).build();
return add(userID, child, targetFeeds);
}
public CompletableFuture<Reaction> addChild(
String userID, String kind, String parentID, FeedID[] targetFeeds, Map<String, Object> targetFeedsExtraData) throws StreamException {
Reaction child = Reaction.builder().kind(kind).parent(parentID).build();
return add(userID, child, targetFeeds, targetFeedsExtraData);
}
public CompletableFuture<Reaction> addChild(
String userID, String parentID, Reaction reaction, Iterable<FeedID> targetFeeds)
throws StreamException {
Reaction child = Reaction.builder().fromReaction(reaction).parent(parentID).build();
return add(userID, child, targetFeeds);
}
public CompletableFuture<Reaction> addChild(
String userID, String parentID, Reaction reaction, FeedID... targetFeeds)
throws StreamException {
Reaction child = Reaction.builder().fromReaction(reaction).parent(parentID).build();
return add(userID, child, targetFeeds);
}
public CompletableFuture<Reaction> addChild(
String userID, String parentID, Reaction reaction, FeedID[] targetFeeds, Map<String, Object> targetFeedsExtraData)
throws StreamException {
Reaction child = Reaction.builder().fromReaction(reaction).parent(parentID).build();
return add(userID, child, targetFeeds, targetFeedsExtraData);
}
public CompletableFuture<Void> update(String id, Iterable<FeedID> targetFeeds)
throws StreamException {
return update(id, Iterables.toArray(targetFeeds, FeedID.class));
}
public CompletableFuture<Void> update(String id, FeedID... targetFeeds) throws StreamException {
checkNotNull(id, "Reaction id can't be null");
checkArgument(!id.isEmpty(), "Reaction id can't be empty");
return update(Reaction.builder().id(id).build(), targetFeeds);
}
public CompletableFuture<Void> update(Reaction reaction, Iterable<FeedID> targetFeeds)
throws StreamException {
return update(reaction, Iterables.toArray(targetFeeds, FeedID.class));
}
public CompletableFuture<Void> update(Reaction reaction, FeedID... targetFeeds)
throws StreamException {
return reactions.update(token, reaction, targetFeeds);
}
public CompletableFuture<Void> update(
Reaction reaction, FeedID[] targetFeeds, RequestOption... options) throws StreamException {
return reactions.update(token, reaction, targetFeeds, options);
}
public CompletableFuture<Void> delete(String id) throws StreamException {
return reactions.delete(token, id, false);
}
public CompletableFuture<Void> delete(String id, Boolean soft) throws StreamException {
return reactions.delete(token, id, soft);
}
public CompletableFuture<Void> softDelete(String id) throws StreamException {
return reactions.delete(token, id, true);
}
public CompletableFuture<Void> restore(String id) throws StreamException {
return reactions.restore(token, id);
}
public class Params {
private LookupKind lookupKind;
private String id;
private Filter filter;
private Limit limit;
private String kind;
private Boolean withOwnChildren;
public Params(LookupKind lookupKind, String id) {
this.id = id;
this.lookupKind = lookupKind;
}
public Params withLimit(Limit limit) {
this.limit = limit;
return this;
}
public Params withFilter(Filter filter) {
this.filter = filter;
return this;
}
public Params withKind(String kind) {
this.kind = kind;
return this;
}
public Params includeOwnChildren(Boolean includeOwnChildren) {
this.withOwnChildren = includeOwnChildren;
return this;
}
public LookupKind getLookupKind() {
return lookupKind;
}
public String getId() {
return id;
}
public Filter getFilter() {
return (filter != null) ? filter : DefaultOptions.DEFAULT_FILTER;
}
public Limit getLimit() {
return (limit != null) ? limit : DefaultOptions.DEFAULT_LIMIT;
}
public String getKind() {
return (kind != null) ? kind : "";
}
public Boolean getWithOwnChildren() {
return (withOwnChildren != null) ? withOwnChildren : false;
}
}
}