-
Notifications
You must be signed in to change notification settings - Fork 229
/
BucketOperations.cs
864 lines (803 loc) · 46.4 KB
/
BucketOperations.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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
/*
* MinIO .NET Library for Amazon S3 Compatible Cloud Storage,
* (C) 2017-2021 MinIO, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System.Diagnostics.CodeAnalysis;
using System.Net;
using System.Reactive.Linq;
using System.Runtime.CompilerServices;
using System.Web;
using System.Xml.Linq;
using CommunityToolkit.HighPerformance;
using Minio.ApiEndpoints;
using Minio.DataModel;
using Minio.DataModel.Args;
using Minio.DataModel.Encryption;
using Minio.DataModel.ILM;
using Minio.DataModel.Notification;
using Minio.DataModel.ObjectLock;
using Minio.DataModel.Replication;
using Minio.DataModel.Response;
using Minio.DataModel.Result;
using Minio.DataModel.Tags;
using Minio.Exceptions;
using Minio.Helper;
namespace Minio;
[SuppressMessage("Design", "MA0048:File name must match type name", Justification = "Split up in partial classes")]
public partial class MinioClient : IBucketOperations
{
/// <summary>
/// List all the buckets for the current Endpoint URL
/// </summary>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns>Task with an iterator lazily populated with objects</returns>
public async Task<ListAllMyBucketsResult> ListBucketsAsync(
CancellationToken cancellationToken = default)
{
var requestMessageBuilder = await this.CreateRequest(HttpMethod.Get).ConfigureAwait(false);
using var response =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
var bucketList = new ListAllMyBucketsResult();
if (HttpStatusCode.OK == response.StatusCode)
{
using var stream = response.ContentBytes.AsStream();
bucketList = Utils.DeserializeXml<ListAllMyBucketsResult>(stream);
}
return bucketList;
}
/// <summary>
/// Check if a private bucket with the given name exists.
/// </summary>
/// <param name="args">BucketExistsArgs Arguments Object which has bucket identifier information - bucket name, region</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns> Task </returns>
public async Task<bool> BucketExistsAsync(BucketExistsArgs args, CancellationToken cancellationToken = default)
{
args?.Validate();
try
{
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var response =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken).ConfigureAwait(false);
return response is not null &&
(response.Exception is null ||
response.Exception.GetType() != typeof(BucketNotFoundException));
}
catch (InternalClientException ice)
{
return (ice.ServerResponse is null ||
HttpStatusCode.NotFound != ice.ServerResponse.StatusCode) &&
ice.ServerResponse is not null;
}
catch (BucketNotFoundException)
{
return false;
}
}
/// <summary>
/// Remove the bucket with the given name.
/// </summary>
/// <param name="args">RemoveBucketArgs Arguments Object which has bucket identifier information like bucket name .etc.</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns> Task </returns>
/// <exception cref="InvalidBucketNameException">When bucketName is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucketName is not found</exception>
/// <exception cref="InvalidBucketNameException">When bucketName is null</exception>
public async Task RemoveBucketAsync(RemoveBucketArgs args, CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var response = await this.ExecuteTaskAsync(ResponseErrorHandlers,
requestMessageBuilder, cancellationToken: cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Create a bucket with the given name.
/// </summary>
/// <param name="args">MakeBucketArgs Arguments Object that has bucket info like name, location. etc</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns> Task </returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucketName is invalid</exception>
/// <exception cref="NotImplementedException">When object-lock or another extension is not implemented</exception>
public async Task MakeBucketAsync(MakeBucketArgs args, CancellationToken cancellationToken = default)
{
args?.Validate();
if (string.IsNullOrEmpty(args.Location))
args.Location = Config.Region;
if (string.Equals(args.Location, "us-east-1", StringComparison.OrdinalIgnoreCase) &&
!string.IsNullOrEmpty(Config.Region))
args.Location = Config.Region;
args.IsBucketCreationRequest = true;
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var response =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Get Versioning information on the bucket with given bucket name
/// </summary>
/// <param name="args">GetVersioningArgs takes bucket as argument. </param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns> GetVersioningResponse with information populated from REST response </returns>
/// <exception cref="InvalidBucketNameException">When bucketName is invalid</exception>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
public async Task<VersioningConfiguration> GetVersioningAsync(GetVersioningArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var responseResult =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
var versioningResponse = new GetVersioningResponse(responseResult.StatusCode, responseResult.Content);
return versioningResponse.VersioningConfig;
}
/// <summary>
/// Set Versioning as specified on the bucket with given bucket name
/// </summary>
/// <param name="args">SetVersioningArgs Arguments Object with information like Bucket name, Versioning configuration</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns> Task </returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public async Task SetVersioningAsync(SetVersioningArgs args, CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var response = await this.ExecuteTaskAsync(ResponseErrorHandlers,
requestMessageBuilder, cancellationToken: cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// List all objects along with versions non-recursively in a bucket with a given prefix, optionally emulating a
/// directory
/// </summary>
/// <param name="args">
/// ListObjectsArgs Arguments Object with information like Bucket name, prefix, recursive listing,
/// versioning
/// </param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns>An observable of items that client can subscribe to</returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="NotImplementedException">If a functionality or extension (like versioning) is not implemented</exception>
/// <exception cref="InvalidOperationException">
/// For example, if you call ListObjectsAsync on a bucket with versioning
/// enabled or object lock enabled
/// </exception>
public async IAsyncEnumerable<Item> ListObjectsEnumAsync(ListObjectsArgs args,
[EnumeratorCancellation] CancellationToken cancellationToken = default)
{
if (args == null) throw new ArgumentNullException(nameof(args));
args.Validate();
var goArgs = new GetObjectListArgs()
.WithBucket(args.BucketName)
.WithPrefix(args.Prefix)
.WithDelimiter(args.Recursive ? string.Empty : "/")
.WithVersions(args.Versions)
.WithIncludeUserMetadata(args.IncludeUserMetadata)
.WithMarker(string.Empty)
.WithListObjectsV1(!args.UseV2)
.WithHeaders(args.Headers)
.WithVersionIdMarker(string.Empty);
XNamespace ns = "http://s3.amazonaws.com/doc/2006-03-01/";
var tag = ns + (args.Versions ? "Version" : "Contents");
while (true)
{
cancellationToken.ThrowIfCancellationRequested();
var requestMessageBuilder = await this.CreateRequest(goArgs).ConfigureAwait(false);
using var responseResult = await this
.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder, cancellationToken: cancellationToken)
.ConfigureAwait(false);
if (responseResult.StatusCode != HttpStatusCode.OK)
throw new ErrorResponseException(
$"HTTP status-code {responseResult.StatusCode:D}: {responseResult.StatusCode}", responseResult);
#if NET2_0_OR_GREATER
var root = await XDocument.LoadAsync(responseResult.ContentStream, LoadOptions.None, ct).ConfigureAwait(false);
#else
var root = XDocument.Load(responseResult.ContentStream);
#endif
var items = root.Root.Descendants(tag).Select(t =>
{
string contentType = null;
string expires = null;
Dictionary<string, string> userMetaData = null;
if (args.IncludeUserMetadata)
{
var xUserMetadata = t.Element(ns + "UserMetadata");
if (xUserMetadata == null)
throw new InvalidOperationException(
"Client doesn't support metadata while listing objects (MinIO specific feature)");
contentType = xUserMetadata.Element(ns + "content-type")?.Value;
expires = xUserMetadata.Element(ns + "expires")?.Value;
const string metaElementPrefix = "X-Amz-Meta-";
userMetaData = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
foreach (var xHeader in xUserMetadata.Elements().Where(x =>
x.Name.Namespace == ns && x.Name.LocalName.StartsWith(metaElementPrefix,
StringComparison.OrdinalIgnoreCase)))
{
var key = xHeader.Name.LocalName[metaElementPrefix.Length..];
userMetaData[key] = xHeader.Value;
}
}
var objectKey = t.Element(ns + "Key")?.Value;
if (objectKey != null)
objectKey = HttpUtility.UrlDecode(objectKey);
return new Item
{
Key = objectKey,
LastModified = t.Element(ns + "LastModified")?.Value,
ETag = t.Element(ns + "ETag")?.Value,
Size = ulong.TryParse(t.Element(ns + "Size")?.Value, out var size) ? size : 0,
VersionId = t.Element(ns + "VersionId")?.Value,
ContentType = contentType,
Expires = expires,
UserMetadata = userMetaData,
IsDir = false
};
});
foreach (var item in items)
yield return item;
var prefixes = from c in root.Root.Descendants(ns + "CommonPrefixes")
select new Item { Key = c.Element(ns + "Prefix")?.Value, IsDir = true };
foreach (var item in prefixes)
yield return item;
var nextContinuationToken = root.Root.Element(ns + "NextContinuationToken")?.Value;
if (string.IsNullOrEmpty(nextContinuationToken)) break;
goArgs.WithContinuationToken(nextContinuationToken);
}
}
/// <summary>
/// Gets notification configuration for this bucket
/// </summary>
/// <param name="args">GetBucketNotificationsArgs Arguments Object with information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns></returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
public async Task<BucketNotification> GetBucketNotificationsAsync(GetBucketNotificationsArgs args,
CancellationToken cancellationToken = default)
{
if (args is null)
throw new ArgumentNullException(nameof(args));
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var responseResult =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
var getBucketNotificationsResponse =
new GetBucketNotificationsResponse(responseResult.StatusCode, responseResult.Content);
return getBucketNotificationsResponse.BucketNotificationConfiguration;
}
/// <summary>
/// Sets the notification configuration for this bucket
/// </summary>
/// <param name="args">
/// SetBucketNotificationsArgs Arguments Object with information like Bucket name, notification object
/// with configuration to set
/// </param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns></returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public async Task SetBucketNotificationsAsync(SetBucketNotificationsArgs args,
CancellationToken cancellationToken = default)
{
if (args is null)
throw new ArgumentNullException(nameof(args));
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var response =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Removes all bucket notification configurations stored on the server.
/// </summary>
/// <param name="args">RemoveAllBucketNotificationsArgs Arguments Object with information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns></returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public async Task RemoveAllBucketNotificationsAsync(RemoveAllBucketNotificationsArgs args,
CancellationToken cancellationToken = default)
{
if (args is null)
throw new ArgumentNullException(nameof(args));
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var response =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Subscribes to bucket change notifications (a Minio-only extension)
/// </summary>
/// <param name="args">
/// ListenBucketNotificationsArgs Arguments Object with information like Bucket name, listen events,
/// prefix filter keys, suffix filter keys
/// </param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns>An observable of JSON-based notification events</returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public IObservable<MinioNotificationRaw> ListenBucketNotificationsAsync(ListenBucketNotificationsArgs args,
CancellationToken cancellationToken = default)
{
if (S3utils.IsAmazonEndPoint(Config.BaseUrl))
// Amazon AWS does not support bucket notifications
throw new ConnectionException(
"Listening for bucket notification is specific only to `minio` server endpoints");
return Observable.Create<MinioNotificationRaw>(
async (obs, ct) =>
{
using var cts = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, ct);
var requestMessageBuilder =
await this.CreateRequest(args).ConfigureAwait(false);
args = args.WithNotificationObserver(obs)
.WithEnableTrace(Config.TraceHttp);
using var response =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
cts.Token.ThrowIfCancellationRequested();
});
}
/// <summary>
/// Gets Tagging values set for this bucket
/// </summary>
/// <param name="args">GetBucketTagsArgs Arguments Object with information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns>Tagging Object with key-value tag pairs</returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
public async Task<Tagging> GetBucketTagsAsync(GetBucketTagsArgs args, CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var responseResult =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
var getBucketNotificationsResponse =
new GetBucketTagsResponse(responseResult.StatusCode, responseResult.Content);
return getBucketNotificationsResponse.BucketTags;
}
/// <summary>
/// Sets the Encryption Configuration for the mentioned bucket.
/// </summary>
/// <param name="args">SetBucketEncryptionArgs Arguments Object with information like Bucket name, encryption config</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns> Task </returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public async Task SetBucketEncryptionAsync(SetBucketEncryptionArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var restResponse =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Returns the Encryption Configuration for the mentioned bucket.
/// </summary>
/// <param name="args">GetBucketEncryptionArgs Arguments Object encapsulating information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns> An object of type ServerSideEncryptionConfiguration </returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
public async Task<ServerSideEncryptionConfiguration> GetBucketEncryptionAsync(GetBucketEncryptionArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var responseResult =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
var getBucketEncryptionResponse =
new GetBucketEncryptionResponse(responseResult.StatusCode, responseResult.Content);
return getBucketEncryptionResponse.BucketEncryptionConfiguration;
}
/// <summary>
/// Removes the Encryption Configuration for the mentioned bucket.
/// </summary>
/// <param name="args">RemoveBucketEncryptionArgs Arguments Object encapsulating information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns> Task </returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public async Task RemoveBucketEncryptionAsync(RemoveBucketEncryptionArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var restResponse =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Sets the Tagging values for this bucket
/// </summary>
/// <param name="args">SetBucketTagsArgs Arguments Object with information like Bucket name, tag key-value pairs</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns></returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public async Task SetBucketTagsAsync(SetBucketTagsArgs args, CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var restResponse =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Removes Tagging values stored for the bucket.
/// </summary>
/// <param name="args">RemoveBucketTagsArgs Arguments Object with information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns></returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public async Task RemoveBucketTagsAsync(RemoveBucketTagsArgs args, CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var restResponse =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Sets the Object Lock Configuration on this bucket
/// </summary>
/// <param name="args">
/// SetObjectLockConfigurationArgs Arguments Object with information like Bucket name, object lock
/// configuration to set
/// </param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns></returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="MissingObjectLockConfigurationException">When object lock configuration on bucket is not set</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public async Task SetObjectLockConfigurationAsync(SetObjectLockConfigurationArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var restResponse =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Gets the Object Lock Configuration on this bucket
/// </summary>
/// <param name="args">GetObjectLockConfigurationArgs Arguments Object with information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns>ObjectLockConfiguration object</returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="MissingObjectLockConfigurationException">When object lock configuration on bucket is not set</exception>
public async Task<ObjectLockConfiguration> GetObjectLockConfigurationAsync(GetObjectLockConfigurationArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var responseResult =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
var resp = new GetObjectLockConfigurationResponse(responseResult.StatusCode, responseResult.Content);
return resp.LockConfiguration;
}
/// <summary>
/// Removes the Object Lock Configuration on this bucket
/// </summary>
/// <param name="args">RemoveObjectLockConfigurationArgs Arguments Object with information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns></returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="MissingObjectLockConfigurationException">When object lock configuration on bucket is not set</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public async Task RemoveObjectLockConfigurationAsync(RemoveObjectLockConfigurationArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var restResponse =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Sets the Lifecycle configuration for this bucket
/// </summary>
/// <param name="args">
/// SetBucketLifecycleArgs Arguments Object with information like Bucket name, Lifecycle configuration
/// object
/// </param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns></returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public async Task SetBucketLifecycleAsync(SetBucketLifecycleArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var restResponse =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Gets Lifecycle configuration set for this bucket returned in an object
/// </summary>
/// <param name="args">GetBucketLifecycleArgs Arguments Object with information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns>LifecycleConfiguration Object with the lifecycle configuration</returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
public async Task<LifecycleConfiguration> GetBucketLifecycleAsync(GetBucketLifecycleArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var responseResult =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
var response = new GetBucketLifecycleResponse(responseResult.StatusCode, responseResult.Content);
return response.BucketLifecycle;
}
/// <summary>
/// Removes Lifecycle configuration stored for the bucket.
/// </summary>
/// <param name="args">RemoveBucketLifecycleArgs Arguments Object with information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns></returns>
/// <exception cref="AuthorizationException">When access or secret key is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="MalFormedXMLException">When configuration XML provided is invalid</exception>
public async Task RemoveBucketLifecycleAsync(RemoveBucketLifecycleArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var restResponse =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Get Replication configuration for the bucket
/// </summary>
/// <param name="args">GetBucketReplicationArgs Arguments Object with information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns>Replication configuration object</returns>
/// <exception cref="AuthorizationException">When access or secret key provided is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="MissingBucketReplicationConfigurationException">When bucket replication configuration is not set</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
public async Task<ReplicationConfiguration> GetBucketReplicationAsync(GetBucketReplicationArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var responseResult =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
var response = new GetBucketReplicationResponse(responseResult.StatusCode, responseResult.Content);
return response.Config;
}
/// <summary>
/// Set the Replication configuration for the bucket
/// </summary>
/// <param name="args">
/// SetBucketReplicationArgs Arguments Object with information like Bucket name, Replication
/// Configuration object
/// </param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns></returns>
/// <exception cref="AuthorizationException">When access or secret key provided is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="MissingBucketReplicationConfigurationException">When bucket replication configuration is not set</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
public async Task SetBucketReplicationAsync(SetBucketReplicationArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var restResponse =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Remove Replication configuration for the bucket.
/// </summary>
/// <param name="args">RemoveBucketReplicationArgs Arguments Object with information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns></returns>
/// <exception cref="AuthorizationException">When access or secret key provided is invalid</exception>
/// <exception cref="InvalidBucketNameException">When bucket name is invalid</exception>
/// <exception cref="MissingBucketReplicationConfigurationException">When bucket replication configuration is not set</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="BucketNotFoundException">When bucket is not found</exception>
public async Task RemoveBucketReplicationAsync(RemoveBucketReplicationArgs args,
CancellationToken cancellationToken = default)
{
args?.Validate();
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var restResponse =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Subscribes to global change notifications (a Minio-only extension)
/// </summary>
/// <param name="events">Events to listen for</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns>An observable of JSON-based notification events</returns>
public IObservable<MinioNotificationRaw> ListenNotificationsAsync(IList<EventType> events,
CancellationToken cancellationToken = default)
{
var args = new ListenBucketNotificationsArgs().WithEvents(events);
return ListenBucketNotificationsAsync(args, cancellationToken);
}
/// <summary>
/// Subscribes to bucket change notifications (a Minio-only extension)
/// </summary>
/// <param name="bucketName">Bucket to get notifications from</param>
/// <param name="events">Events to listen for</param>
/// <param name="prefix">Filter keys starting with this prefix</param>
/// <param name="suffix">Filter keys ending with this suffix</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns>An observable of JSON-based notification events</returns>
public IObservable<MinioNotificationRaw> ListenBucketNotificationsAsync(
string bucketName,
IList<EventType> events,
string prefix = "",
string suffix = "",
CancellationToken cancellationToken = default)
{
var eventList = new List<EventType>(events);
var args = new ListenBucketNotificationsArgs()
.WithBucket(bucketName)
.WithEvents(eventList)
.WithPrefix(prefix)
.WithSuffix(suffix);
return ListenBucketNotificationsAsync(args, cancellationToken);
}
/// <summary>
/// Returns current policy stored on the server for this bucket
/// </summary>
/// <param name="args">GetPolicyArgs object has information like Bucket name.</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns>Task that returns the Bucket policy as a json string</returns>
/// <exception cref="InvalidBucketNameException">When bucketName is invalid</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="UnexpectedMinioException">When a policy is not set</exception>
public async Task<string> GetPolicyAsync(GetPolicyArgs args, CancellationToken cancellationToken = default)
{
if (args is null)
throw new ArgumentNullException(nameof(args));
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var responseResult =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
var getPolicyResponse = new GetPolicyResponse(responseResult.StatusCode, responseResult.Content);
return getPolicyResponse.PolicyJsonString;
}
/// <summary>
/// Sets the current bucket policy
/// </summary>
/// <param name="args">SetPolicyArgs object has information like Bucket name and the policy to set in Json format</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <exception cref="InvalidBucketNameException">When bucketName is invalid</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="UnexpectedMinioException">When a policy is not set</exception>
/// <returns>Task to set a policy</returns>
public async Task SetPolicyAsync(SetPolicyArgs args, CancellationToken cancellationToken = default)
{
if (args is null)
throw new ArgumentNullException(nameof(args));
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var response =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Removes the current bucket policy
/// </summary>
/// <param name="args">RemovePolicyArgs object has information like Bucket name</param>
/// <param name="cancellationToken">Optional cancellation token to cancel the operation</param>
/// <returns>Task to set a policy</returns>
/// <exception cref="InvalidBucketNameException">When bucketName is invalid</exception>
/// <exception cref="NotImplementedException">When a functionality or extension is not implemented</exception>
/// <exception cref="UnexpectedMinioException">When a policy is not set</exception>
public async Task RemovePolicyAsync(RemovePolicyArgs args, CancellationToken cancellationToken = default)
{
if (args is null)
throw new ArgumentNullException(nameof(args));
var requestMessageBuilder = await this.CreateRequest(args).ConfigureAwait(false);
using var response =
await this.ExecuteTaskAsync(ResponseErrorHandlers, requestMessageBuilder,
cancellationToken: cancellationToken)
.ConfigureAwait(false);
}
}