-
Notifications
You must be signed in to change notification settings - Fork 12
/
UploadedFileInfo.cs
417 lines (371 loc) · 12.7 KB
/
UploadedFileInfo.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
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
#region using statements
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Forms;
using System;
using System.Drawing;
using System.IO;
#endregion
namespace DataJuggler.Blazor.FileUpload
{
public class UploadedFileInfo
{
#region Private Variables
private bool appendPartialGuid;
private string partialGuid;
private DateTime lastModified;
private string name;
private long size;
private string type;
private int height;
private int width;
private bool aborted;
private string errorMessage;
private string extension;
private string uploadFolder;
private int customId;
private string tag;
private bool lastFileInBatch;
private Exception exception;
private MemoryStream stream;
private Image image;
#endregion
#region Constructor
/// <summary>
/// Create a new instance of an UploadedFileInfo object
/// </summary>
/// <param name="file"></param>
/// <param name="partialGuid"></param>
public UploadedFileInfo(IBrowserFile file, string partialGuid, bool appendPartialGuid, string uploadFolder)
{
// verify both objects exist
if ((file != null) && (!String.IsNullOrWhiteSpace(partialGuid)))
{
// store the arg
UploadFolder = uploadFolder;
// Set all the properties
this.LastModified = file.LastModified.DateTime;
this.AppendPartialGuid = appendPartialGuid;
this.Name = file.Name;
this.Extension = GetExtension(file.Name);
this.PartialGuid = partialGuid;
this.Size = file.Size;
this.Type = GetExtension(file.Name);
}
}
#endregion
#region Methods
#region GetExtension(string fileName)
/// <summary>
/// This method returns the Extension
/// </summary>
public string GetExtension(string fileName)
{
// initial value
string extension = "";
// if the string exists
if (!String.IsNullOrEmpty(fileName))
{
// get the last index of a period
int index = fileName.LastIndexOf(".");
// if the string exists
if (index >= 0)
{
// set the extension
extension = fileName.Substring(index);
}
}
// return value
return extension;
}
#endregion
#endregion
#region Properties
#region Aborted
/// <summary>
/// This property gets or sets the value for 'Aborted'.
/// </summary>
public bool Aborted
{
get { return aborted; }
set
{
aborted = value;
if (aborted)
{
// break point only
aborted = true;
}
}
}
#endregion
#region AppendPartialGuid
/// <summary>
/// This property gets or sets the value for 'AppendPartialGuid'.
/// </summary>
public bool AppendPartialGuid
{
get { return appendPartialGuid; }
set { appendPartialGuid = value; }
}
#endregion
#region CustomId
/// <summary>
/// This property gets or sets the value for RequireCustomIddSizeMessage.
/// Optional. This property can be used to set information such as databaseId, parentId,
/// categoryId or some other external classification. This value will lbe returned with
/// this class if included in the FileUpload component.
/// </summary>
public int CustomId
{
get { return customId; }
set { customId = value; }
}
#endregion
#region ErrorMessage
/// <summary>
/// This property gets or sets the value for 'ErrorMessage'.
/// </summary>
public string ErrorMessage
{
get { return errorMessage; }
set { errorMessage = value; }
}
#endregion
#region Exception
/// <summary>
/// This property gets or sets the value for 'Exception'.
/// </summary>
public Exception Exception
{
get { return exception; }
set { exception = value; }
}
#endregion
#region Extension
/// <summary>
/// This property gets or sets the value for 'Extension'.
/// </summary>
public string Extension
{
get { return extension; }
set { extension = value; }
}
#endregion
#region FullName
/// <summary>
/// This read only property returns the File Name plus the PartialGuid, if AppendPartialGuid is true.
/// </summary>
public string FullName
{
get
{
// return value
return NameWithPartialGuid;
}
}
#endregion
#region FullPath
/// <summary>
/// This read only property returns the File Name plus the PartialGuid, if AppendPartialGuid is true.
/// </summary>
public string FullPath
{
get
{
// return value
return Path.Combine(UploadFolder, FullName);
}
}
#endregion
#region HasException
/// <summary>
/// This property returns true if this object has an 'Exception'.
/// </summary>
public bool HasException
{
get
{
// initial value
bool hasException = (this.Exception != null);
// return value
return hasException;
}
}
#endregion
#region HasPartialGuid
/// <summary>
/// This property returns true if the 'PartialGuid' exists.
/// </summary>
public bool HasPartialGuid
{
get
{
// initial value
bool hasPartialGuid = (!String.IsNullOrWhiteSpace(this.PartialGuid));
// return value
return hasPartialGuid;
}
}
#endregion
#region HasStream
/// <summary>
/// This property returns true if this object has a 'Stream'.
/// </summary>
public bool HasStream
{
get
{
// initial value
bool hasStream = (this.Stream != null);
// return value
return hasStream;
}
}
#endregion
#region Height
/// <summary>
/// This property gets or sets the value for 'Height'.
/// This property is only available for .jpg and .png files for now.
/// </summary>
public int Height
{
get { return height; }
set { height = value; }
}
#endregion
#region Image
/// <summary>
/// This property gets or sets the value for 'Image'.
/// </summary>
public Image Image
{
get { return image; }
set { image = value; }
}
#endregion
#region LastFileInBatch
/// <summary>
/// This property gets or sets the value for 'LastFileInBatch'.
/// </summary>
public bool LastFileInBatch
{
get { return lastFileInBatch; }
set { lastFileInBatch = value; }
}
#endregion
#region LastModified
/// <summary>
/// This property gets or sets the value for 'LastModified'.
/// </summary>
public DateTime LastModified
{
get { return lastModified; }
set { lastModified = value; }
}
#endregion
#region Name
/// <summary>
/// This property gets or sets the value for 'Name'.
/// </summary>
public string Name
{
get { return name; }
set { name = value; }
}
#endregion
#region NameWithPartialGuid
/// <summary>
/// This read only property returns the File Name plus the PartialGuid.
/// </summary>
public string NameWithPartialGuid
{
get
{
// initial value
string nameWithPartialGuid = Name;
// if the value for AppendPartialGuid is true
if (AppendPartialGuid)
{
// set the return value
nameWithPartialGuid = name.Substring(0, name.Length - extension.Length + 1) + partialGuid + extension;
}
// return value
return nameWithPartialGuid;
}
}
#endregion
#region PartialGuid
/// <summary>
/// This property gets or sets the value for 'PartialGuid'.
/// </summary>
public string PartialGuid
{
get { return partialGuid; }
set { partialGuid = value; }
}
#endregion
#region Size
/// <summary>
/// This property gets or sets the value for 'Size'.
/// </summary>
public long Size
{
get { return size; }
set { size = value; }
}
#endregion
#region Stream
/// <summary>
/// This property gets or sets the value for 'Stream'.
/// </summary>
public MemoryStream Stream
{
get { return stream; }
set { stream = value; }
}
#endregion
#region Tag
/// This property gets or sets the value for Tag.
/// If set on the FileUpload control, this property can be used to pass information to help
/// name or classify uploaded files.
public string Tag
{
get { return tag; }
set { tag = value; }
}
#endregion
#region Type
/// <summary>
/// This property gets or sets the value for 'Type'.
/// </summary>
public string Type
{
get { return type; }
set { type = value; }
}
#endregion
#region UploadFolder
/// <summary>
/// This property gets or sets the value for 'UploadFolder'.
/// </summary>
public string UploadFolder
{
get { return uploadFolder; }
set { uploadFolder = value; }
}
#endregion
#region Width
/// <summary>
/// This property gets or sets the value for 'Width'.
/// This property is only available for .jpg and .png files for now.
/// </summary>
public int Width
{
get { return width; }
set { width = value; }
}
#endregion
#endregion
}
}