-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathRemoveMembershipsOperation.cs
313 lines (279 loc) · 14.4 KB
/
RemoveMembershipsOperation.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Net;
using Newtonsoft.Json;
#if !NET35 && !NET40
using System.Collections.Concurrent;
#endif
namespace PubnubApi.EndPoint
{
public class RemoveMembershipsOperation : PubnubCoreBase
{
private readonly PNConfiguration config;
private readonly IJsonPluggableLibrary jsonLibrary;
private readonly IPubnubUnitTest unit;
private readonly IPubnubLog pubnubLog;
private readonly EndPoint.TelemetryManager pubnubTelemetryMgr;
private string uuidMetadataId = "";
private List<string> delMembership;
private string commandDelimitedIncludeOptions = "";
private PNPageObject page;
private int limit = -1;
private bool includeCount;
private List<string> sortField;
private PNCallback<PNMembershipsResult> savedCallback;
private Dictionary<string, object> queryParam;
public RemoveMembershipsOperation(PNConfiguration pubnubConfig, IJsonPluggableLibrary jsonPluggableLibrary, IPubnubUnitTest pubnubUnit, IPubnubLog log, EndPoint.TelemetryManager telemetryManager, EndPoint.TokenManager tokenManager, Pubnub instance) : base(pubnubConfig, jsonPluggableLibrary, pubnubUnit, log, telemetryManager, tokenManager, instance)
{
config = pubnubConfig;
jsonLibrary = jsonPluggableLibrary;
unit = pubnubUnit;
pubnubLog = log;
pubnubTelemetryMgr = telemetryManager;
if (instance != null)
{
if (!ChannelRequest.ContainsKey(instance.InstanceId))
{
ChannelRequest.GetOrAdd(instance.InstanceId, new ConcurrentDictionary<string, HttpWebRequest>());
}
if (!ChannelInternetStatus.ContainsKey(instance.InstanceId))
{
ChannelInternetStatus.GetOrAdd(instance.InstanceId, new ConcurrentDictionary<string, bool>());
}
if (!ChannelGroupInternetStatus.ContainsKey(instance.InstanceId))
{
ChannelGroupInternetStatus.GetOrAdd(instance.InstanceId, new ConcurrentDictionary<string, bool>());
}
}
}
public RemoveMembershipsOperation Uuid(string id)
{
this.uuidMetadataId = id;
return this;
}
public RemoveMembershipsOperation Channels(List<string> channelIdList)
{
this.delMembership = channelIdList;
return this;
}
public RemoveMembershipsOperation Include(PNMembershipField[] includeOptions)
{
if (includeOptions != null)
{
string[] arrayInclude = includeOptions.Select(x => MapEnumValueToEndpoint(x.ToString())).ToArray();
this.commandDelimitedIncludeOptions = string.Join(",", arrayInclude);
}
return this;
}
public RemoveMembershipsOperation Page(PNPageObject pageObject)
{
this.page = pageObject;
return this;
}
public RemoveMembershipsOperation Limit(int numberOfObjects)
{
this.limit = numberOfObjects;
return this;
}
public RemoveMembershipsOperation IncludeCount(bool includeTotalCount)
{
this.includeCount = includeTotalCount;
return this;
}
public RemoveMembershipsOperation Sort(List<string> sortByField)
{
this.sortField = sortByField;
return this;
}
public RemoveMembershipsOperation QueryParam(Dictionary<string, object> customQueryParam)
{
this.queryParam = customQueryParam;
return this;
}
public void Execute(PNCallback<PNMembershipsResult> callback)
{
if (string.IsNullOrEmpty(config.SubscribeKey) || string.IsNullOrEmpty(config.SubscribeKey.Trim()) || config.SubscribeKey.Length <= 0)
{
throw new MissingMemberException("Invalid subscribe key");
}
if (callback == null)
{
throw new ArgumentException("Missing callback");
}
#if NETFX_CORE || WINDOWS_UWP || UAP || NETSTANDARD10 || NETSTANDARD11 || NETSTANDARD12
Task.Factory.StartNew(() =>
{
this.savedCallback = callback;
RemoveUuidMemberships(this.uuidMetadataId, this.delMembership, this.page, this.limit, this.includeCount, this.commandDelimitedIncludeOptions, this.sortField, this.queryParam, callback);
}, CancellationToken.None, TaskCreationOptions.PreferFairness, TaskScheduler.Default).ConfigureAwait(false);
#else
new Thread(() =>
{
this.savedCallback = callback;
RemoveUuidMemberships(this.uuidMetadataId, this.delMembership, this.page, this.limit, this.includeCount, this.commandDelimitedIncludeOptions, this.sortField, this.queryParam, callback);
})
{ IsBackground = true }.Start();
#endif
}
public async Task<PNResult<PNMembershipsResult>> ExecuteAsync()
{
return await RemoveUuidMemberships(this.uuidMetadataId, this.delMembership, this.page, this.limit, this.includeCount, this.commandDelimitedIncludeOptions, this.sortField, this.queryParam).ConfigureAwait(false);
}
internal void Retry()
{
#if NETFX_CORE || WINDOWS_UWP || UAP || NETSTANDARD10 || NETSTANDARD11 || NETSTANDARD12
Task.Factory.StartNew(() =>
{
RemoveUuidMemberships(this.uuidMetadataId, this.delMembership, this.page, this.limit, this.includeCount, this.commandDelimitedIncludeOptions, this.sortField, this.queryParam, savedCallback);
}, CancellationToken.None, TaskCreationOptions.PreferFairness, TaskScheduler.Default).ConfigureAwait(false);
#else
new Thread(() =>
{
RemoveUuidMemberships(this.uuidMetadataId, this.delMembership, this.page, this.limit, this.includeCount, this.commandDelimitedIncludeOptions, this.sortField, this.queryParam, savedCallback);
})
{ IsBackground = true }.Start();
#endif
}
private void RemoveUuidMemberships(string uuid, List<string> removeMembership, PNPageObject page, int limit, bool includeCount, string includeOptions, List<string> sort, Dictionary<string, object> externalQueryParam, PNCallback<PNMembershipsResult> callback)
{
if (string.IsNullOrEmpty(uuid))
{
uuid = config.UserId;
}
PNPageObject internalPage;
if (page == null) { internalPage = new PNPageObject(); }
else { internalPage = page; }
RequestState<PNMembershipsResult> requestState = new RequestState<PNMembershipsResult>();
requestState.ResponseType = PNOperationType.PNRemoveMembershipsOperation;
requestState.PubnubCallback = callback;
requestState.Reconnect = false;
requestState.EndPointOperation = this;
requestState.UsePatchMethod = true;
Dictionary<string, object> messageEnvelope = new Dictionary<string, object>();
if (removeMembership != null)
{
List<Dictionary<string, Dictionary<string, string>>> removeMembershipFormatList = new List<Dictionary<string, Dictionary<string, string>>>();
for (int index = 0; index < removeMembership.Count; index++)
{
Dictionary<string, Dictionary<string, string>> currentMembershipFormat = new Dictionary<string, Dictionary<string, string>>();
if (!string.IsNullOrEmpty(removeMembership[index]))
{
currentMembershipFormat.Add("channel", new Dictionary<string, string> { { "id", removeMembership[index] } });
removeMembershipFormatList.Add(currentMembershipFormat);
}
}
if (removeMembershipFormatList.Count > 0)
{
messageEnvelope.Add("delete", removeMembershipFormatList);
}
}
string patchMessage = jsonLibrary.SerializeToJsonString(messageEnvelope);
byte[] patchData = Encoding.UTF8.GetBytes(patchMessage);
IUrlRequestBuilder urlBuilder = new UrlRequestBuilder(config, jsonLibrary, unit, pubnubLog, pubnubTelemetryMgr, (PubnubInstance != null && !string.IsNullOrEmpty(PubnubInstance.InstanceId) && PubnubTokenMgrCollection.ContainsKey(PubnubInstance.InstanceId)) ? PubnubTokenMgrCollection[PubnubInstance.InstanceId] : null, (PubnubInstance != null) ? PubnubInstance.InstanceId : "");
Uri request = urlBuilder.BuildMembershipSetRemoveManageUserRequest(requestState.ResponseType, "PATCH", patchMessage, uuid, internalPage.Next, internalPage.Prev, limit, includeCount, includeOptions, sort, externalQueryParam);
UrlProcessRequest(request, requestState, false, patchData).ContinueWith(r =>
{
string json = r.Result.Item1;
if (!string.IsNullOrEmpty(json))
{
List<object> result = ProcessJsonResponse(requestState, json);
ProcessResponseCallbacks(result, requestState);
}
else
{
if (r.Result.Item2 != null)
{
callback.OnResponse(null, r.Result.Item2);
}
}
}, TaskContinuationOptions.ExecuteSynchronously).Wait();
}
private async Task<PNResult<PNMembershipsResult>> RemoveUuidMemberships(string uuid, List<string> removeMembership, PNPageObject page, int limit, bool includeCount, string includeOptions, List<string> sort, Dictionary<string, object> externalQueryParam)
{
PNResult<PNMembershipsResult> ret = new PNResult<PNMembershipsResult>();
if (string.IsNullOrEmpty(uuid))
{
uuid = config.UserId;
}
if (string.IsNullOrEmpty(config.SubscribeKey) || string.IsNullOrEmpty(config.SubscribeKey.Trim()) || config.SubscribeKey.Length <= 0)
{
PNStatus errStatus = new PNStatus { Error = true, ErrorData = new PNErrorData("Invalid Subscribe key", new ArgumentException("Invalid Subscribe key")) };
ret.Status = errStatus;
return ret;
}
PNPageObject internalPage;
if (page == null) { internalPage = new PNPageObject(); }
else { internalPage = page; }
RequestState<PNMembershipsResult> requestState = new RequestState<PNMembershipsResult>();
requestState.ResponseType = PNOperationType.PNRemoveMembershipsOperation;
requestState.Reconnect = false;
requestState.EndPointOperation = this;
requestState.UsePatchMethod = true;
Dictionary<string, object> messageEnvelope = new Dictionary<string, object>();
if (removeMembership != null)
{
List<Dictionary<string, Dictionary<string, string>>> removeMembershipFormatList = new List<Dictionary<string, Dictionary<string, string>>>();
for (int index = 0; index < removeMembership.Count; index++)
{
Dictionary<string, Dictionary<string, string>> currentMembershipFormat = new Dictionary<string, Dictionary<string, string>>();
if (!string.IsNullOrEmpty(removeMembership[index]))
{
currentMembershipFormat.Add("channel", new Dictionary<string, string> { { "id", removeMembership[index] } });
removeMembershipFormatList.Add(currentMembershipFormat);
}
}
if (removeMembershipFormatList.Count > 0)
{
messageEnvelope.Add("delete", removeMembershipFormatList);
}
}
string patchMessage = jsonLibrary.SerializeToJsonString(messageEnvelope);
byte[] patchData = Encoding.UTF8.GetBytes(patchMessage);
IUrlRequestBuilder urlBuilder = new UrlRequestBuilder(config, jsonLibrary, unit, pubnubLog, pubnubTelemetryMgr, (PubnubInstance != null && !string.IsNullOrEmpty(PubnubInstance.InstanceId) && PubnubTokenMgrCollection.ContainsKey(PubnubInstance.InstanceId)) ? PubnubTokenMgrCollection[PubnubInstance.InstanceId] : null, (PubnubInstance != null) ? PubnubInstance.InstanceId : "");
Uri request = urlBuilder.BuildMembershipSetRemoveManageUserRequest(requestState.ResponseType, "PATCH", patchMessage, uuid, internalPage.Next, internalPage.Prev, limit, includeCount, includeOptions, sort, externalQueryParam);
Tuple<string, PNStatus> JsonAndStatusTuple = await UrlProcessRequest(request, requestState, false, patchData).ConfigureAwait(false);
ret.Status = JsonAndStatusTuple.Item2;
string json = JsonAndStatusTuple.Item1;
if (!string.IsNullOrEmpty(json))
{
List<object> resultList = ProcessJsonResponse(requestState, json);
ResponseBuilder responseBuilder = new ResponseBuilder(config, jsonLibrary, pubnubLog);
PNMembershipsResult responseResult = responseBuilder.JsonToObject<PNMembershipsResult>(resultList, true);
if (responseResult != null)
{
ret.Result = responseResult;
}
}
return ret;
}
private static string MapEnumValueToEndpoint(string enumValue)
{
string ret = "";
if (enumValue.ToLowerInvariant() == "custom")
{
ret = "custom";
}
else if (enumValue.ToLowerInvariant() == "uuid")
{
ret = "uuid";
}
else if (enumValue.ToLowerInvariant() == "channel")
{
ret = "channel";
}
else if (enumValue.ToLowerInvariant() == "channel_custom")
{
ret = "channel.custom";
}
else if (enumValue.ToLowerInvariant() == "uuid_custom")
{
ret = "uuid.custom";
}
return ret;
}
}
}