-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathDownloadFileOperation.cs
260 lines (228 loc) · 11.7 KB
/
DownloadFileOperation.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
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
#if !NET35 && !NET40
using System.Collections.Concurrent;
#endif
using PubnubApi.Security.Crypto;
using PubnubApi.Security.Crypto.Cryptors;
namespace PubnubApi.EndPoint
{
public class DownloadFileOperation : PubnubCoreBase
{
private readonly PNConfiguration config;
private readonly IJsonPluggableLibrary jsonLibrary;
private readonly IPubnubUnitTest unit;
private readonly IPubnubLog pubnubLog;
private readonly EndPoint.TelemetryManager pubnubTelemetryMgr;
private PNCallback<PNDownloadFileResult> savedCallback;
private Dictionary<string, object> queryParam;
private string channelName;
private string currentFileId;
private string currentFileName;
private string currentFileCipherKey;
public DownloadFileOperation(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 DownloadFileOperation Channel(string channel)
{
this.channelName = channel;
return this;
}
public DownloadFileOperation FileId(string fileId)
{
this.currentFileId = fileId;
return this;
}
public DownloadFileOperation FileName(string fileName)
{
this.currentFileName = fileName;
return this;
}
public DownloadFileOperation CipherKey(string cipherKeyForFile)
{
this.currentFileCipherKey = cipherKeyForFile;
return this;
}
public DownloadFileOperation QueryParam(Dictionary<string, object> customQueryParam)
{
this.queryParam = customQueryParam;
return this;
}
public void Execute(PNCallback<PNDownloadFileResult> callback)
{
if (callback == null)
{
throw new ArgumentException("Missing callback");
}
if (string.IsNullOrEmpty(this.currentFileId))
{
throw new ArgumentException("Missing File Id");
}
if (string.IsNullOrEmpty(this.currentFileName))
{
throw new ArgumentException("Missing File Name");
}
#if NETFX_CORE || WINDOWS_UWP || UAP || NETSTANDARD10 || NETSTANDARD11 || NETSTANDARD12
Task.Factory.StartNew(() =>
{
this.savedCallback = callback;
ProcessFileDownloadRequest(this.queryParam, savedCallback);
}, CancellationToken.None, TaskCreationOptions.PreferFairness, TaskScheduler.Default).ConfigureAwait(false);
#else
new Thread(() =>
{
this.savedCallback = callback;
ProcessFileDownloadRequest(this.queryParam, savedCallback);
})
{ IsBackground = true }.Start();
#endif
}
public async Task<PNResult<PNDownloadFileResult>> ExecuteAsync()
{
return await ProcessFileDownloadRequest(this.queryParam).ConfigureAwait(false);
}
internal void Retry()
{
#if NETFX_CORE || WINDOWS_UWP || UAP || NETSTANDARD10 || NETSTANDARD11 || NETSTANDARD12
Task.Factory.StartNew(() =>
{
ProcessFileDownloadRequest(this.queryParam, savedCallback);
}, CancellationToken.None, TaskCreationOptions.PreferFairness, TaskScheduler.Default).ConfigureAwait(false);
#else
new Thread(() =>
{
ProcessFileDownloadRequest(this.queryParam, savedCallback);
})
{ IsBackground = true }.Start();
#endif
}
private void ProcessFileDownloadRequest(Dictionary<string, object> externalQueryParam, PNCallback<PNDownloadFileResult> callback)
{
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.BuildGetFileUrlOrDeleteReqest("GET", "", this.channelName, this.currentFileId, this.currentFileName, externalQueryParam, PNOperationType.PNDownloadFileOperation);
RequestState<PNDownloadFileResult> requestState = new RequestState<PNDownloadFileResult>();
requestState.ResponseType = PNOperationType.PNDownloadFileOperation;
requestState.PubnubCallback = callback;
requestState.Reconnect = false;
requestState.EndPointOperation = this;
byte[] item1Bytes = null;
UrlProcessRequestForStream(request, requestState, false,"").ContinueWith(r =>
{
item1Bytes = r.Result.Item1;
if (item1Bytes != null)
{
byte[] outputBytes = null;
if (string.IsNullOrEmpty(this.currentFileCipherKey) && string.IsNullOrEmpty(config.CipherKey) && config.CryptoModule == null)
{
outputBytes = item1Bytes;
}
else
{
CryptoModule currentCryptoModule = !string.IsNullOrEmpty(this.currentFileCipherKey) ? new CryptoModule(new LegacyCryptor(this.currentFileCipherKey, true, pubnubLog), null) : (config.CryptoModule ??= new CryptoModule(new LegacyCryptor(config.CipherKey, true, pubnubLog), null));
try
{
outputBytes = currentCryptoModule.Decrypt(item1Bytes);
LoggingMethod.WriteToLog(pubnubLog, string.Format(CultureInfo.InvariantCulture, "DateTime {0}, Stream length (after Decrypt)= {1}", DateTime.Now.ToString(CultureInfo.InvariantCulture), item1Bytes.Length), config.LogVerbosity);
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("{0}\nMessage might be not encrypted, returning as is...", ex.ToString());
outputBytes = item1Bytes;
}
}
PNDownloadFileResult result = new PNDownloadFileResult();
result.FileBytes = outputBytes;
result.FileName = currentFileName;
callback.OnResponse(result, r.Result.Item2);
}
else
{
if (r.Result.Item2 != null)
{
callback.OnResponse(null, r.Result.Item2);
}
}
}, TaskContinuationOptions.ExecuteSynchronously).Wait();
}
private async Task<PNResult<PNDownloadFileResult>> ProcessFileDownloadRequest(Dictionary<string, object> externalQueryParam)
{
PNResult<PNDownloadFileResult> ret = new PNResult<PNDownloadFileResult>();
if (string.IsNullOrEmpty(this.currentFileId))
{
PNStatus errStatus = new PNStatus { Error = true, ErrorData = new PNErrorData("Missing File Id", new ArgumentException("Missing File Id")) };
ret.Status = errStatus;
return ret;
}
if (string.IsNullOrEmpty(this.currentFileName))
{
PNStatus errStatus = new PNStatus { Error = true, ErrorData = new PNErrorData("Invalid file name", new ArgumentException("Invalid file name")) };
ret.Status = errStatus;
return ret;
}
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.BuildGetFileUrlOrDeleteReqest("GET", "", this.channelName, this.currentFileId, this.currentFileName, externalQueryParam, PNOperationType.PNDownloadFileOperation);
RequestState<PNDownloadFileResult> requestState = new RequestState<PNDownloadFileResult>();
requestState.ResponseType = PNOperationType.PNDownloadFileOperation;
requestState.Reconnect = false;
requestState.EndPointOperation = this;
Tuple<byte[], PNStatus> JsonAndStatusTuple = await UrlProcessRequestForStream(request, requestState, false,"").ConfigureAwait(false);
ret.Status = JsonAndStatusTuple.Item2;
byte[] item1Bytes = JsonAndStatusTuple.Item1;
if (item1Bytes != null)
{
byte[] outputBytes = null;
if (string.IsNullOrEmpty(this.currentFileCipherKey) && string.IsNullOrEmpty(config.CipherKey) && config.CryptoModule == null)
{
outputBytes = item1Bytes;
}
else
{
CryptoModule currentCryptoModule = !string.IsNullOrEmpty(this.currentFileCipherKey) ? new CryptoModule(new LegacyCryptor(this.currentFileCipherKey, true, pubnubLog), null) : (config.CryptoModule ??= new CryptoModule(new LegacyCryptor(config.CipherKey, true, pubnubLog), null));
try
{
outputBytes = currentCryptoModule.Decrypt(item1Bytes);
LoggingMethod.WriteToLog(pubnubLog, string.Format(CultureInfo.InvariantCulture, "DateTime {0}, Stream length (after Decrypt)= {1}", DateTime.Now.ToString(CultureInfo.InvariantCulture), item1Bytes.Length), config.LogVerbosity);
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("{0}\nMessage might be not encrypted, returning as is...", ex.ToString());
outputBytes = item1Bytes;
ret.Status = new PNStatus { Error = true, ErrorData = new PNErrorData("Decryption error", ex) };
}
}
PNDownloadFileResult result = new PNDownloadFileResult();
result.FileBytes = outputBytes;
result.FileName = currentFileName;
ret.Result = result;
}
return ret;
}
}
}