-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathSetChannelMetadataOperation.cs
252 lines (216 loc) · 10.9 KB
/
SetChannelMetadataOperation.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Net;
#if !NET35 && !NET40
using System.Collections.Concurrent;
#endif
namespace PubnubApi.EndPoint
{
public class SetChannelMetadataOperation : PubnubCoreBase
{
private readonly PNConfiguration config;
private readonly IJsonPluggableLibrary jsonLibrary;
private readonly IPubnubUnitTest unit;
private readonly IPubnubLog pubnubLog;
private readonly EndPoint.TelemetryManager pubnubTelemetryMgr;
private string chMetaId = "";
private string chMetaName;
private string chMetaDesc;
private Dictionary<string, object> chMetaCustom;
private bool includeCustom;
private PNCallback<PNSetChannelMetadataResult> savedCallback;
private Dictionary<string, object> queryParam;
public SetChannelMetadataOperation(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 SetChannelMetadataOperation Channel(string channelName)
{
this.chMetaId = channelName;
return this;
}
public SetChannelMetadataOperation Name(string channelMetadataName)
{
this.chMetaName = channelMetadataName;
return this;
}
public SetChannelMetadataOperation Description(string channelMetadataDescription)
{
this.chMetaDesc = channelMetadataDescription;
return this;
}
public SetChannelMetadataOperation Custom(Dictionary<string, object> channelMetadataCustomObject)
{
this.chMetaCustom = channelMetadataCustomObject;
return this;
}
public SetChannelMetadataOperation IncludeCustom(bool includeCustomData)
{
this.includeCustom = includeCustomData;
return this;
}
public SetChannelMetadataOperation QueryParam(Dictionary<string, object> customQueryParam)
{
this.queryParam = customQueryParam;
return this;
}
public void Execute(PNCallback<PNSetChannelMetadataResult> callback)
{
if (string.IsNullOrEmpty(chMetaId) || string.IsNullOrEmpty(chMetaId.Trim()))
{
throw new ArgumentException("Missing Channel");
}
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 userCallback");
}
#if NETFX_CORE || WINDOWS_UWP || UAP || NETSTANDARD10 || NETSTANDARD11 || NETSTANDARD12
Task.Factory.StartNew(() =>
{
this.savedCallback = callback;
SetChannelMetadata(this.chMetaId, this.includeCustom, this.queryParam, callback);
}, CancellationToken.None, TaskCreationOptions.PreferFairness, TaskScheduler.Default).ConfigureAwait(false);
#else
new Thread(() =>
{
this.savedCallback = callback;
SetChannelMetadata(this.chMetaId, this.includeCustom, this.queryParam, callback);
})
{ IsBackground = true }.Start();
#endif
}
public async Task<PNResult<PNSetChannelMetadataResult>> ExecuteAsync()
{
return await SetChannelMetadata(this.chMetaId, this.includeCustom, this.queryParam).ConfigureAwait(false);
}
internal void Retry()
{
#if NETFX_CORE || WINDOWS_UWP || UAP || NETSTANDARD10 || NETSTANDARD11 || NETSTANDARD12
Task.Factory.StartNew(() =>
{
SetChannelMetadata(this.chMetaId, this.includeCustom, this.queryParam, savedCallback);
}, CancellationToken.None, TaskCreationOptions.PreferFairness, TaskScheduler.Default).ConfigureAwait(false);
#else
new Thread(() =>
{
SetChannelMetadata(this.chMetaId, this.includeCustom, this.queryParam, savedCallback);
})
{ IsBackground = true }.Start();
#endif
}
private void SetChannelMetadata(string channelMetaId, bool includeCustom, Dictionary<string, object> externalQueryParam, PNCallback<PNSetChannelMetadataResult> callback)
{
RequestState<PNSetChannelMetadataResult> requestState = new RequestState<PNSetChannelMetadataResult>();
requestState.ResponseType = PNOperationType.PNSetChannelMetadataOperation;
requestState.PubnubCallback = callback;
requestState.Reconnect = false;
requestState.EndPointOperation = this;
requestState.UsePatchMethod = true;
Dictionary<string, object> messageEnvelope = new Dictionary<string, object>();
if (this.chMetaName != null)
{
messageEnvelope.Add("name", chMetaName);
}
if (this.chMetaDesc != null)
{
messageEnvelope.Add("description", chMetaDesc);
}
if (this.chMetaCustom != null)
{
messageEnvelope.Add("custom", chMetaCustom);
}
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.BuildSetChannelMetadataRequest("PATCH", patchMessage, channelMetaId, includeCustom, 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);
}
}, TaskContinuationOptions.ExecuteSynchronously).Wait();
}
private async Task<PNResult<PNSetChannelMetadataResult>> SetChannelMetadata(string channelMetaId, bool includeCustom, Dictionary<string, object> externalQueryParam)
{
PNResult<PNSetChannelMetadataResult> ret = new PNResult<PNSetChannelMetadataResult>();
if (string.IsNullOrEmpty(channelMetaId) || string.IsNullOrEmpty(channelMetaId.Trim()))
{
PNStatus errStatus = new PNStatus { Error = true, ErrorData = new PNErrorData("Missing Channel", new ArgumentException("Missing Channel")) };
ret.Status = errStatus;
return ret;
}
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;
}
RequestState<PNSetChannelMetadataResult> requestState = new RequestState<PNSetChannelMetadataResult>();
requestState.ResponseType = PNOperationType.PNSetChannelMetadataOperation;
requestState.Reconnect = false;
requestState.EndPointOperation = this;
requestState.UsePatchMethod = true;
Dictionary<string, object> messageEnvelope = new Dictionary<string, object>();
if (this.chMetaName != null)
{
messageEnvelope.Add("name", chMetaName);
}
if (this.chMetaDesc != null)
{
messageEnvelope.Add("description", chMetaDesc);
}
if (this.chMetaCustom != null)
{
messageEnvelope.Add("custom", chMetaCustom);
}
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.BuildSetChannelMetadataRequest("PATCH", patchMessage, channelMetaId, includeCustom, 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);
PNSetChannelMetadataResult responseResult = responseBuilder.JsonToObject<PNSetChannelMetadataResult>(resultList, true);
if (responseResult != null)
{
ret.Result = responseResult;
}
}
return ret;
}
}
}