-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathCloudFeed.java
More file actions
358 lines (314 loc) · 13.1 KB
/
CloudFeed.java
File metadata and controls
358 lines (314 loc) · 13.1 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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
package io.getstream.cloud;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static io.getstream.core.utils.Serialization.*;
import com.google.common.collect.Iterables;
import io.getstream.core.exceptions.StreamException;
import io.getstream.core.faye.subscription.ChannelSubscription;
import io.getstream.core.http.Response;
import io.getstream.core.models.Activity;
import io.getstream.core.models.FeedID;
import io.getstream.core.models.FollowRelation;
import io.getstream.core.options.CustomQueryParameter;
import io.getstream.core.options.Limit;
import io.getstream.core.options.Offset;
import io.getstream.core.options.RequestOption;
import io.getstream.core.utils.DefaultOptions;
import io.getstream.core.utils.Streams;
import java.io.IOException;
import java.lang.reflect.ParameterizedType;
import java.util.List;
import java8.util.J8Arrays;
import java8.util.concurrent.CompletableFuture;
import java8.util.concurrent.CompletionException;
public class CloudFeed {
private final CloudClient client;
private final FeedID id;
private final FeedSubscriber subscriber;
CloudFeed(CloudClient client, FeedID id) {
checkNotNull(client, "Can't create feed w/o a client");
checkNotNull(id, "Can't create feed w/o an ID");
this.client = client;
this.id = id;
this.subscriber = null;
}
CloudFeed(CloudClient client, FeedID id, FeedSubscriber subscriber) {
checkNotNull(client, "Can't create feed w/o a client");
checkNotNull(id, "Can't create feed w/o an ID");
this.client = client;
this.id = id;
this.subscriber = subscriber;
}
protected final CloudClient getClient() {
return client;
}
public final CompletableFuture<ChannelSubscription> subscribe(
RealtimeMessageCallback messageCallback) {
checkNotNull(subscriber, "A subscriber must be provided in order to start listening to a feed");
return subscriber.subscribe(id, messageCallback);
}
public final FeedID getID() {
return id;
}
public final String getSlug() {
return id.getSlug();
}
public final String getUserID() {
return id.getUserID();
}
public final CompletableFuture<Activity> addActivity(Activity activity, RequestOption... options)
throws StreamException {
return getClient()
.addActivity(id, activity, options)
.thenApply(
response -> {
try {
return deserialize(response, Activity.class);
} catch (StreamException | IOException e) {
throw new CompletionException(e);
}
});
}
public final <T> CompletableFuture<T> addCustomActivity(T activity, RequestOption... options)
throws StreamException {
return getClient()
.addActivity(id, Activity.builder().fromCustomActivity(activity).build(), options)
.thenApply(
response -> {
try {
return deserialize(response, (Class<T>) activity.getClass());
} catch (StreamException | IOException e) {
throw new CompletionException(e);
}
});
}
public final CompletableFuture<List<Activity>> addActivities(Iterable<Activity> activities)
throws StreamException {
return addActivities(Iterables.toArray(activities, Activity.class), new RequestOption[0]);
}
public final <T> CompletableFuture<List<T>> addCustomActivities(Iterable<T> activities)
throws StreamException {
final Activity[] custom =
Streams.stream(activities)
.map(activity -> Activity.builder().fromCustomActivity(activity).build())
.toArray(Activity[]::new);
return getClient()
.addActivities(id, custom, new RequestOption[0])
.thenApply(
(Response response) -> {
try {
Class<T> element =
(Class<T>)
((ParameterizedType) getClass().getGenericSuperclass())
.getActualTypeArguments()[0];
return deserializeContainer(response, "activities", element);
} catch (StreamException | IOException e) {
throw new CompletionException(e);
}
});
}
public final CompletableFuture<List<Activity>> addActivities(Activity... activities)
throws StreamException {
return addActivities(activities, new RequestOption[0]);
}
public final CompletableFuture<List<Activity>> addActivities(
Activity[] activities, RequestOption... options) throws StreamException {
return getClient()
.addActivities(id, activities, options)
.thenApply(
(Response response) -> {
try {
return deserializeContainer(response, "activities", Activity.class);
} catch (StreamException | IOException e) {
throw new CompletionException(e);
}
});
}
public final <T> CompletableFuture<List<T>> addCustomActivities(T... activities)
throws StreamException {
final Activity[] custom =
J8Arrays.stream(activities)
.map(activity -> Activity.builder().fromCustomActivity(activity).build())
.toArray(Activity[]::new);
return getClient()
.addActivities(id, custom, new RequestOption[0])
.thenApply(
(Response response) -> {
try {
Class<T> element = (Class<T>) activities.getClass().getComponentType();
return deserializeContainer(response, "activities", element);
} catch (StreamException | IOException e) {
throw new CompletionException(e);
}
});
}
public final CompletableFuture<Void> removeActivityByID(String id) throws StreamException {
return client
.removeActivityByID(this.id, id)
.thenApply(
(Response response) -> {
try {
return deserializeError(response);
} catch (StreamException | IOException e) {
throw new CompletionException(e);
}
});
}
public final CompletableFuture<Void> removeActivityByForeignID(String foreignID)
throws StreamException {
return client
.removeActivityByForeignID(id, foreignID)
.thenApply(
(Response response) -> {
try {
return deserializeError(response);
} catch (StreamException | IOException e) {
throw new CompletionException(e);
}
});
}
public final CompletableFuture<Void> follow(CloudFlatFeed feed) throws StreamException {
return follow(feed, DefaultOptions.DEFAULT_ACTIVITY_COPY_LIMIT);
}
public final CompletableFuture<Void> follow(CloudFlatFeed feed, int activityCopyLimit)
throws StreamException {
checkArgument(
activityCopyLimit <= DefaultOptions.MAX_ACTIVITY_COPY_LIMIT,
String.format(
"Activity copy limit should be less then %d", DefaultOptions.MAX_ACTIVITY_COPY_LIMIT));
return client
.follow(id, feed.getID(), activityCopyLimit)
.thenApply(
(Response response) -> {
try {
return deserializeError(response);
} catch (StreamException | IOException e) {
throw new CompletionException(e);
}
});
}
public final CompletableFuture<List<FollowRelation>> getFollowers(Iterable<FeedID> feedIDs)
throws StreamException {
return getFollowers(
DefaultOptions.DEFAULT_LIMIT,
DefaultOptions.DEFAULT_OFFSET,
Iterables.toArray(feedIDs, FeedID.class));
}
public final CompletableFuture<List<FollowRelation>> getFollowers(FeedID... feedIDs)
throws StreamException {
return getFollowers(DefaultOptions.DEFAULT_LIMIT, DefaultOptions.DEFAULT_OFFSET, feedIDs);
}
public final CompletableFuture<List<FollowRelation>> getFollowers(
Limit limit, Iterable<FeedID> feedIDs) throws StreamException {
return getFollowers(
limit, DefaultOptions.DEFAULT_OFFSET, Iterables.toArray(feedIDs, FeedID.class));
}
public final CompletableFuture<List<FollowRelation>> getFollowers(Limit limit, FeedID... feedIDs)
throws StreamException {
return getFollowers(limit, DefaultOptions.DEFAULT_OFFSET, feedIDs);
}
public final CompletableFuture<List<FollowRelation>> getFollowers(
Offset offset, Iterable<FeedID> feedIDs) throws StreamException {
return getFollowers(
DefaultOptions.DEFAULT_LIMIT, offset, Iterables.toArray(feedIDs, FeedID.class));
}
public final CompletableFuture<List<FollowRelation>> getFollowers(
Offset offset, FeedID... feedIDs) throws StreamException {
return getFollowers(DefaultOptions.DEFAULT_LIMIT, offset, feedIDs);
}
public final CompletableFuture<List<FollowRelation>> getFollowers(
Limit limit, Offset offset, Iterable<FeedID> feedIDs) throws StreamException {
return getFollowers(limit, offset, Iterables.toArray(feedIDs, FeedID.class));
}
public final CompletableFuture<List<FollowRelation>> getFollowers(
Limit limit, Offset offset, FeedID... feeds) throws StreamException {
checkNotNull(feeds, "No feed ids to filter on");
final String[] feedIDs = J8Arrays.stream(feeds).map(id -> id.toString()).toArray(String[]::new);
final RequestOption[] options =
feedIDs.length == 0
? new RequestOption[] {limit, offset}
: new RequestOption[] {
limit, offset, new CustomQueryParameter("filter", String.join(",", feedIDs))
};
return client
.getFollowers(id, options)
.thenApply(
(Response response) -> {
try {
return deserializeContainer(response, FollowRelation.class);
} catch (StreamException | IOException e) {
throw new CompletionException(e);
}
});
}
public final CompletableFuture<List<FollowRelation>> getFollowed(Iterable<FeedID> feedIDs)
throws StreamException {
return getFollowed(
DefaultOptions.DEFAULT_LIMIT,
DefaultOptions.DEFAULT_OFFSET,
Iterables.toArray(feedIDs, FeedID.class));
}
public final CompletableFuture<List<FollowRelation>> getFollowed(FeedID... feedIDs)
throws StreamException {
return getFollowed(DefaultOptions.DEFAULT_LIMIT, DefaultOptions.DEFAULT_OFFSET, feedIDs);
}
public final CompletableFuture<List<FollowRelation>> getFollowed(
Limit limit, Iterable<FeedID> feedIDs) throws StreamException {
return getFollowed(
limit, DefaultOptions.DEFAULT_OFFSET, Iterables.toArray(feedIDs, FeedID.class));
}
public final CompletableFuture<List<FollowRelation>> getFollowed(Limit limit, FeedID... feedIDs)
throws StreamException {
return getFollowed(limit, DefaultOptions.DEFAULT_OFFSET, feedIDs);
}
public final CompletableFuture<List<FollowRelation>> getFollowed(
Offset offset, Iterable<FeedID> feedIDs) throws StreamException {
return getFollowed(
DefaultOptions.DEFAULT_LIMIT, offset, Iterables.toArray(feedIDs, FeedID.class));
}
public final CompletableFuture<List<FollowRelation>> getFollowed(Offset offset, FeedID... feedIDs)
throws StreamException {
return getFollowed(DefaultOptions.DEFAULT_LIMIT, offset, feedIDs);
}
public final CompletableFuture<List<FollowRelation>> getFollowed(
Limit limit, Offset offset, Iterable<FeedID> feedIDs) throws StreamException {
return getFollowed(limit, offset, Iterables.toArray(feedIDs, FeedID.class));
}
public final CompletableFuture<List<FollowRelation>> getFollowed(
Limit limit, Offset offset, FeedID... feeds) throws StreamException {
checkNotNull(feeds, "No feed ids to filter on");
final String[] feedIDs = J8Arrays.stream(feeds).map(id -> id.toString()).toArray(String[]::new);
final RequestOption[] options =
feedIDs.length == 0
? new RequestOption[] {limit, offset}
: new RequestOption[] {
limit, offset, new CustomQueryParameter("filter", String.join(",", feedIDs))
};
return client
.getFollowed(id, options)
.thenApply(
(Response response) -> {
try {
return deserializeContainer(response, FollowRelation.class);
} catch (StreamException | IOException e) {
throw new CompletionException(e);
}
});
}
public final CompletableFuture<Void> unfollow(CloudFlatFeed feed) throws StreamException {
return unfollow(feed, io.getstream.core.KeepHistory.NO);
}
public final CompletableFuture<Void> unfollow(
CloudFlatFeed feed, io.getstream.core.KeepHistory keepHistory) throws StreamException {
return client
.unfollow(id, feed.getID(), new io.getstream.core.options.KeepHistory(keepHistory))
.thenApply(
(Response response) -> {
try {
return deserializeError(response);
} catch (StreamException | IOException e) {
throw new CompletionException(e);
}
});
}
}