// Copyright (C) 2024, The Duplicati Team // https://duplicati.com, hello@duplicati.com // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. using System; using System.Collections.Generic; using System.IO; using System.Reactive.Linq; using System.Threading; using System.Threading.Tasks; using Duplicati.Library.Interface; using Duplicati.Library.Utility; using Minio; using Minio.Exceptions; using Minio.DataModel; namespace Duplicati.Library.Backend { public class S3MinioClient : IS3Client { private static readonly string Logtag = Logging.Log.LogTagFromType(); private MinioClient m_client; private readonly string m_locationConstraint; private readonly string m_dnsHost; public S3MinioClient(string awsID, string awsKey, string locationConstraint, string servername, string storageClass, bool useSSL, Dictionary options) { m_locationConstraint = locationConstraint; m_client = new MinioClient( servername, awsID, awsKey, locationConstraint ); if (useSSL) { m_client = m_client.WithSSL(); } m_dnsHost = servername; } public IEnumerable ListBucket(string bucketName, string prefix) { ThrowExceptionIfBucketDoesNotExist(bucketName); var observable = m_client.ListObjectsAsync(bucketName, prefix, true); foreach (var obj in observable.ToEnumerable()) { yield return new Common.IO.FileEntry( obj.Key, (long) obj.Size, Convert.ToDateTime(obj.LastModified), Convert.ToDateTime(obj.LastModified) ); } } public void AddBucket(string bucketName) { try { m_client.MakeBucketAsync(bucketName, m_locationConstraint); } catch (MinioException e) { Logging.Log.WriteErrorMessage(Logtag, "ErrorMakingBucketMinio", null, "Error making bucket {0} using Minio: {1}", bucketName, e.ToString()); } } public void DeleteObject(string bucketName, string keyName) { try { m_client.RemoveObjectAsync(bucketName, keyName).Await(); } catch (MinioException e) { Logging.Log.WriteErrorMessage(Logtag, "ErrorRemovingObjectMinio", null, "Error removing from bucket {0} object {1} using Minio: {1}", bucketName, keyName, e.ToString()); } } public void RenameFile(string bucketName, string source, string target) { try { m_client.CopyObjectAsync(bucketName, source, bucketName, target).Await(); } catch(MinioException e) { Logging.Log.WriteErrorMessage(Logtag, "ErrorCopyingObjectMinio", null, "Error copying object {0} to {1} in bucket {2} using Minio: {3}", source, target, bucketName, e.ToString()); } DeleteObject(bucketName, source); } public void GetFileStream(string bucketName, string keyName, Stream target) { try { // Check whether the object exists using statObject(). // If the object is not found, statObject() throws an exception, // else it means that the object exists. // Execution is successful. m_client.StatObjectAsync(bucketName, keyName).Await(); // Get input stream to have content of 'my-objectname' from 'my-bucketname' m_client.GetObjectAsync(bucketName, keyName, (stream) => { Utility.Utility.CopyStream(stream, target); }).Await(); } catch (MinioException e) { Logging.Log.WriteErrorMessage(Logtag, "ErrorGettingObjectMinio", null, "Error getting object {0} to {1} using Minio: {2}", keyName, bucketName, e.ToString()); } } public string GetDnsHost() { return m_dnsHost; } public virtual async Task AddFileStreamAsync(string bucketName, string keyName, Stream source, CancellationToken cancelToken) { ThrowExceptionIfBucketDoesNotExist(bucketName); try { await m_client.PutObjectAsync(bucketName, keyName, source, source.Length, "application/octet-stream", cancellationToken: cancelToken); } catch (MinioException e) { Logging.Log.WriteErrorMessage(Logtag, "ErrorPuttingObjectMinio", null, "Error putting object {0} to {1} using Minio: {2}", keyName, bucketName, e.ToString()); } } private void ThrowExceptionIfBucketDoesNotExist(string bucketName) { if (!m_client.BucketExistsAsync(bucketName).Await()) { throw new FolderMissingException($"Bucket {bucketName} does not exist."); } } #region IDisposable Members public void Dispose() { m_client = null; } #endregion } }