Rystem.Content.Abstractions 6.0.11

dotnet add package Rystem.Content.Abstractions --version 6.0.11
NuGet\Install-Package Rystem.Content.Abstractions -Version 6.0.11
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Rystem.Content.Abstractions" Version="6.0.11" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rystem.Content.Abstractions --version 6.0.11
#r "nuget: Rystem.Content.Abstractions, 6.0.11"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Rystem.Content.Abstractions as a Cake Addin
#addin nuget:?package=Rystem.Content.Abstractions&version=6.0.11

// Install Rystem.Content.Abstractions as a Cake Tool
#tool nuget:?package=Rystem.Content.Abstractions&version=6.0.11

What is Rystem?

Content Repository Abstractions

You may use this library to help the integration with your business and your several storage repositories.

Dependency injection

services
    .AddContentRepository()
    .WithIntegration<SimpleIntegration>("example", ServiceLifetime.Singleton);

with integration class

internal sealed class SimpleIntegration : IContentRepository
{
    public ValueTask<bool> DeleteAsync(string path, CancellationToken cancellationToken = default)
    {
        throw new NotImplementedException();
    }

    public Task<ContentRepositoryDownloadResult?> DownloadAsync(string path, ContentInformationType informationRetrieve = ContentInformationType.None, CancellationToken cancellationToken = default)
    {
        throw new NotImplementedException();
    }

    public ValueTask<bool> ExistAsync(string path, CancellationToken cancellationToken = default)
    {
        throw new NotImplementedException();
    }

    public Task<ContentRepositoryResult?> GetPropertiesAsync(string path, ContentInformationType informationRetrieve = ContentInformationType.All, CancellationToken cancellationToken = default)
    {
        throw new NotImplementedException();
    }

    public IAsyncEnumerable<ContentRepositoryDownloadResult> ListAsync(string? prefix = null, bool downloadContent = false, ContentInformationType informationRetrieve = ContentInformationType.None, CancellationToken cancellationToken = default)
    {
        throw new NotImplementedException();
    }

    public void SetName(string name)
    {
        throw new NotImplementedException();
    }

    public ValueTask<bool> SetPropertiesAsync(string path, ContentRepositoryOptions? options = null, CancellationToken cancellationToken = default)
    {
        throw new NotImplementedException();
    }

    public ValueTask<bool> UploadAsync(string path, byte[] data, ContentRepositoryOptions? options = null, bool overwrite = true, CancellationToken cancellationToken = default)
    {
        throw new NotImplementedException();
    }
}

How to use

If you have only one integration installed at once, you may inject directly

public sealed class SimpleBusiness
{
    private readonly IContentRepository _contentRepository;

    public SimpleBusiness(IContentRepository contentRepository)
    {
        _contentRepository = contentRepository;
    }
}

In case of multiple integrations you have to use the factory service

DI

services
    .AddContentRepository()
    .WithIntegration<SimpleIntegration>("example", ServiceLifetime.Singleton);
    .WithIntegration<SimpleIntegration2>("example2", ServiceLifetime.Singleton);

in Business class to use the first integration

public sealed class SimpleBusiness
{
    private readonly IContentRepository _contentRepository;

    public SimpleBusiness(IContentRepositoryFactory contentRepositoryFactory)
    {
        _contentRepository = contentRepositoryFactory.Create("example");
    }
}

in Business class to use the second integration

public sealed class SimpleBusiness
{
    private readonly IContentRepository _contentRepository;

    public SimpleBusiness(IContentRepositoryFactory contentRepositoryFactory)
    {
        _contentRepository = contentRepositoryFactory.Create("example2");
    }
}

Migration tool

You can migrate from two different sources. For instance from a blob storage to a sharepoint site document library.

Setup in DI

 services
    .AddSingleton<Utility>()
    .AddContentRepository()
    .WithBlobStorageIntegrationAsync(x =>
    {
        x.ContainerName = "supertest";
        x.Prefix = "site/";
        x.ConnectionString = configuration["ConnectionString:Storage"];
    },
    "blobstorage")
    .ToResult()
    .WithInMemoryIntegration("inmemory")
    .WithSharepointIntegrationAsync(x =>
    {
        x.TenantId = configuration["Sharepoint:TenantId"];
        x.ClientId = configuration["Sharepoint:ClientId"];
        x.ClientSecret = configuration["Sharepoint:ClientSecret"];
        x.MapWithSiteNameAndDocumentLibraryName("TestNumberOne", "Foglione");
    }, "sharepoint")
    .ToResult();

Usage

var result = await _contentMigration.MigrateAsync("blobstorage", "sharepoint",
    settings =>
    {
        settings.OverwriteIfExists = true;
        settings.Prefix = prefix;
        settings.Predicate = (x) =>
        {
            return x.Path?.Contains("fileName6") != true;
        };
        settings.ModifyDestinationPath = x =>
        {
            return x.Replace("Folder2", "Folder3");
        };
    }).NoContext();    
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Rystem.Content.Abstractions:

Package Downloads
Rystem.Content.Infrastructure.Storage.Blob

Rystem.Content helps you to integrate with azure services or to create an abstraction layer among your infrastructure and your business.

Rystem.Content.Infrastructure.M365.Sharepoint

Rystem.Content helps you to integrate with azure services or to create an abstraction layer among your infrastructure and your business.

Rystem.Content.Infrastructure.InMemory

Rystem.Content helps you to integrate with azure services or to create an abstraction layer among your infrastructure and your business.

Rystem.Content.Infrastructure.Storage.File

Rystem.Content helps you to integrate with azure services or to create an abstraction layer among your infrastructure and your business.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.11 101 5/20/2024
6.0.9 108 5/19/2024
6.0.7 98 5/18/2024
6.0.6 112 5/10/2024
6.0.5 115 5/10/2024
6.0.4 434,276 4/3/2024
6.0.3 118 3/25/2024
6.0.2 192 3/11/2024
6.0.1 92 3/8/2024
6.0.0 262 11/21/2023
6.0.0-rc.6 92 10/25/2023
6.0.0-rc.5 67 10/25/2023
6.0.0-rc.4 63 10/23/2023
6.0.0-rc.3 55 10/19/2023
6.0.0-rc.2 76 10/18/2023
6.0.0-rc.1 75 10/16/2023
5.0.20 369 9/25/2023
5.0.19 742 9/10/2023
5.0.18 190 9/6/2023
5.0.17 168 9/6/2023
5.0.16 178 9/5/2023
5.0.15 187 9/5/2023
5.0.14 172 9/5/2023
5.0.13 278 9/1/2023
5.0.12 154 8/31/2023
5.0.11 164 8/30/2023
5.0.10 172 8/29/2023
5.0.9 179 8/24/2023
5.0.8 177 8/24/2023
5.0.7 181 8/23/2023
5.0.6 189 8/21/2023
5.0.5 193 8/21/2023
5.0.4 189 8/16/2023
5.0.3 367 8/2/2023
5.0.2 186 8/2/2023
5.0.1 188 8/1/2023
5.0.0 203 7/31/2023
4.0.6 202 7/20/2023
4.0.4 232 7/10/2023
4.0.3 162 7/10/2023
4.0.2 121 7/7/2023
4.0.1 158 7/7/2023