-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathReactionsClient.java
More file actions
274 lines (227 loc) · 11.8 KB
/
ReactionsClient.java
File metadata and controls
274 lines (227 loc) · 11.8 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
package io.getstream.client;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static io.getstream.core.utils.Auth.buildReactionsToken;
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.Paginated;
import io.getstream.core.models.Reaction;
import io.getstream.core.models.ReactionBatch;
import io.getstream.core.options.Filter;
import io.getstream.core.options.Limit;
import io.getstream.core.options.RequestOption;
import io.getstream.core.utils.Auth.TokenAction;
import io.getstream.core.utils.DefaultOptions;
import java.util.List;
import java.util.Map;
import java8.util.concurrent.CompletableFuture;
public final class ReactionsClient {
private final String secret;
private final StreamReactions reactions;
ReactionsClient(String secret, StreamReactions reactions) {
this.secret = secret;
this.reactions = reactions;
}
public CompletableFuture<Reaction> get(String id) throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.READ);
return reactions.get(token, id);
}
public CompletableFuture<ReactionBatch> getBatch(List<String> ids) throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.READ);
return reactions.getBatchReactions(token, ids, false);
}
public CompletableFuture<ReactionBatch> getBatch(List<String> ids, Boolean includeDeleted) throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.READ);
return reactions.getBatchReactions(token, ids, includeDeleted);
}
public CompletableFuture<List<Reaction>> filter(LookupKind lookup, String id)
throws StreamException {
return filter(lookup, id, DefaultOptions.DEFAULT_FILTER, DefaultOptions.DEFAULT_LIMIT, "");
}
public CompletableFuture<List<Reaction>> filter(
LookupKind lookup, String id, Filter filter, Limit limit, String kind, Boolean withOwnChildren, String filterUserID)
throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.READ);
return reactions.filter(token, lookup, id, filter, limit, kind, withOwnChildren, filterUserID);
}
public CompletableFuture<List<Reaction>> filter(LookupKind lookup, String id, Limit limit)
throws StreamException {
return filter(lookup, id, DefaultOptions.DEFAULT_FILTER, limit, "");
}
public CompletableFuture<List<Reaction>> filter(LookupKind lookup, String id, Filter filter)
throws StreamException {
return filter(lookup, id, filter, DefaultOptions.DEFAULT_LIMIT, "");
}
public CompletableFuture<List<Reaction>> filter(LookupKind lookup, String id, String kind)
throws StreamException {
return filter(lookup, id, DefaultOptions.DEFAULT_FILTER, DefaultOptions.DEFAULT_LIMIT, kind);
}
public CompletableFuture<List<Reaction>> filter(
LookupKind lookup, String id, Filter filter, Limit limit) throws StreamException {
return filter(lookup, id, filter, limit, "");
}
public CompletableFuture<List<Reaction>> filter(
LookupKind lookup, String id, Limit limit, String kind) throws StreamException {
return filter(lookup, id, DefaultOptions.DEFAULT_FILTER, limit, kind);
}
public CompletableFuture<List<Reaction>> filter(
LookupKind lookup, String id, Filter filter, Limit limit, String kind)
throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.READ);
return reactions.filter(token, lookup, id, filter, limit, kind);
}
public CompletableFuture<List<Reaction>> filter(
LookupKind lookup, String id, Filter filter, Limit limit, String kind, Boolean withOwnChildren)
throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.READ);
return reactions.filter(token, lookup, id, filter, limit, kind, withOwnChildren, "");
}
public CompletableFuture<Paginated<Reaction>> paginatedFilter(LookupKind lookup, String id)
throws StreamException {
return paginatedFilter(
lookup, id, DefaultOptions.DEFAULT_FILTER, DefaultOptions.DEFAULT_LIMIT, "", false);
}
public CompletableFuture<Paginated<Reaction>> paginatedFilter(
LookupKind lookup, String id, Limit limit) throws StreamException {
return paginatedFilter(lookup, id, DefaultOptions.DEFAULT_FILTER, limit, "", false);
}
public CompletableFuture<Paginated<Reaction>> paginatedFilter(
LookupKind lookup, String id, Filter filter) throws StreamException {
return paginatedFilter(lookup, id, filter, DefaultOptions.DEFAULT_LIMIT, "", false);
}
public CompletableFuture<Paginated<Reaction>> paginatedFilter(
LookupKind lookup, String id, String kind) throws StreamException {
return paginatedFilter(
lookup, id, DefaultOptions.DEFAULT_FILTER, DefaultOptions.DEFAULT_LIMIT, kind, false);
}
public CompletableFuture<Paginated<Reaction>> paginatedFilter(
LookupKind lookup, String id, Filter filter, Limit limit) throws StreamException {
return paginatedFilter(lookup, id, filter, limit, "", false);
}
public CompletableFuture<Paginated<Reaction>> paginatedFilter(
LookupKind lookup, String id, Limit limit, String kind) throws StreamException {
return paginatedFilter(lookup, id, DefaultOptions.DEFAULT_FILTER, limit, kind, false);
}
public CompletableFuture<Paginated<Reaction>> paginatedFilter(
LookupKind lookup, String id, Filter filter, Limit limit, String kind, Boolean withOwnChildren)
throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.READ);
return reactions.paginatedFilter(token, lookup, id, filter, limit, kind, withOwnChildren);
}
public CompletableFuture<Paginated<Reaction>> paginatedFilter(String next)
throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.READ);
return reactions.paginatedFilter(token, next);
}
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 {
final Token token = buildReactionsToken(secret, TokenAction.WRITE);
return reactions.add(token, userID, reaction, targetFeeds);
}
public CompletableFuture<Reaction> add(
String userID, Reaction reaction, FeedID[] targetFeeds, RequestOption... options)
throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.WRITE);
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 {
final Token token = buildReactionsToken(secret, TokenAction.WRITE);
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 {
final Token token = buildReactionsToken(secret, TokenAction.WRITE);
return reactions.update(token, reaction, targetFeeds);
}
public CompletableFuture<Void> update(
Reaction reaction, FeedID[] targetFeeds, RequestOption... options) throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.WRITE);
return reactions.update(token, reaction, targetFeeds, options);
}
public CompletableFuture<Void> delete(String id) throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.DELETE);
return reactions.delete(token, id, false);
}
public CompletableFuture<Void> delete(String id, Boolean soft) throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.DELETE);
return reactions.delete(token, id, soft);
}
public CompletableFuture<Void> softDelete(String id) throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.DELETE);
return reactions.delete(token, id, true);
}
public CompletableFuture<Void> restore(String id) throws StreamException {
final Token token = buildReactionsToken(secret, TokenAction.WRITE);
return reactions.restore(token, id);
}
}