Rystem.Content.Abstractions
9.1.2
dotnet add package Rystem.Content.Abstractions --version 9.1.2
NuGet\Install-Package Rystem.Content.Abstractions -Version 9.1.2
<PackageReference Include="Rystem.Content.Abstractions" Version="9.1.2" />
<PackageVersion Include="Rystem.Content.Abstractions" Version="9.1.2" />
<PackageReference Include="Rystem.Content.Abstractions" />
paket add Rystem.Content.Abstractions --version 9.1.2
#r "nuget: Rystem.Content.Abstractions, 9.1.2"
#:package Rystem.Content.Abstractions@9.1.2
#addin nuget:?package=Rystem.Content.Abstractions&version=9.1.2
#tool nuget:?package=Rystem.Content.Abstractions&version=9.1.2
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net9.0
- Rystem.DependencyInjection (>= 9.1.2)
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.Storage.File
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. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
9.1.2 | 370,102 | 5/29/2025 |
9.1.1 | 97,787 | 5/2/2025 |
9.0.32 | 186,636 | 4/15/2025 |
9.0.31 | 5,758 | 4/2/2025 |
9.0.30 | 88,797 | 3/26/2025 |
9.0.29 | 8,961 | 3/18/2025 |
9.0.28 | 191 | 3/17/2025 |
9.0.27 | 200 | 3/16/2025 |
9.0.26 | 196 | 3/13/2025 |
9.0.25 | 52,080 | 3/9/2025 |
9.0.23 | 158 | 3/9/2025 |
9.0.21 | 270 | 3/6/2025 |
9.0.20 | 19,524 | 3/6/2025 |
9.0.19 | 257 | 3/6/2025 |
9.0.18 | 266 | 3/4/2025 |
9.0.17 | 176 | 3/1/2025 |
9.0.16 | 146 | 3/1/2025 |
9.0.15 | 75,467 | 2/22/2025 |
9.0.14 | 22,532 | 2/18/2025 |
9.0.13 | 166 | 2/9/2025 |
9.0.12 | 217,698 | 1/13/2025 |
9.0.11 | 23,988 | 1/9/2025 |
9.0.10 | 111 | 1/9/2025 |
9.0.9 | 4,001 | 1/7/2025 |
9.0.8 | 12,516 | 1/6/2025 |
9.0.7 | 142 | 1/6/2025 |
9.0.5 | 19,087 | 12/30/2024 |
9.0.4 | 92,296 | 12/23/2024 |
9.0.3 | 159 | 12/22/2024 |
9.0.2 | 10,687 | 12/21/2024 |
9.0.1 | 1,191 | 12/21/2024 |
9.0.0 | 173,079 | 11/16/2024 |
9.0.0-rc.1 | 150 | 10/18/2024 |
6.2.0 | 219,131 | 10/9/2024 |
6.1.1 | 172 | 10/9/2024 |
6.1.0 | 47,993 | 9/29/2024 |
6.0.24 | 218 | 9/11/2024 |
6.0.23 | 340,123 | 7/18/2024 |
6.0.21 | 192 | 6/18/2024 |
6.0.20 | 727,405 | 6/16/2024 |
6.0.19 | 30,936 | 6/14/2024 |
6.0.18 | 185 | 6/14/2024 |
6.0.17 | 185 | 6/14/2024 |
6.0.16 | 50,060 | 6/10/2024 |
6.0.15 | 193 | 6/9/2024 |
6.0.14 | 94,589 | 5/24/2024 |
6.0.13 | 200 | 5/23/2024 |
6.0.12 | 207 | 5/23/2024 |
6.0.11 | 204 | 5/20/2024 |
6.0.9 | 217 | 5/19/2024 |
6.0.7 | 201 | 5/18/2024 |
6.0.6 | 199 | 5/10/2024 |
6.0.5 | 203 | 5/10/2024 |
6.0.4 | 550,037 | 4/3/2024 |
6.0.3 | 228 | 3/25/2024 |
6.0.2 | 294 | 3/11/2024 |
6.0.1 | 159 | 3/8/2024 |
6.0.0 | 352 | 11/21/2023 |
6.0.0-rc.6 | 129 | 10/25/2023 |
6.0.0-rc.5 | 121 | 10/25/2023 |
6.0.0-rc.4 | 105 | 10/23/2023 |
6.0.0-rc.3 | 99 | 10/19/2023 |
6.0.0-rc.2 | 128 | 10/18/2023 |
6.0.0-rc.1 | 118 | 10/16/2023 |
5.0.20 | 454 | 9/25/2023 |
5.0.19 | 840 | 9/10/2023 |
5.0.18 | 293 | 9/6/2023 |
5.0.17 | 260 | 9/6/2023 |
5.0.16 | 262 | 9/5/2023 |
5.0.15 | 273 | 9/5/2023 |
5.0.14 | 260 | 9/5/2023 |
5.0.13 | 370 | 9/1/2023 |
5.0.12 | 243 | 8/31/2023 |
5.0.11 | 255 | 8/30/2023 |
5.0.10 | 254 | 8/29/2023 |
5.0.9 | 273 | 8/24/2023 |
5.0.8 | 253 | 8/24/2023 |
5.0.7 | 270 | 8/23/2023 |
5.0.6 | 276 | 8/21/2023 |
5.0.5 | 284 | 8/21/2023 |
5.0.4 | 276 | 8/16/2023 |
5.0.3 | 460 | 8/2/2023 |
5.0.2 | 279 | 8/2/2023 |
5.0.1 | 265 | 8/1/2023 |
5.0.0 | 278 | 7/31/2023 |
4.0.6 | 290 | 7/20/2023 |
4.0.4 | 330 | 7/10/2023 |
4.0.3 | 249 | 7/10/2023 |
4.0.2 | 194 | 7/7/2023 |
4.0.1 | 244 | 7/7/2023 |