mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
3.6 KiB
79 lines
3.6 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using MongoDB.Driver;
|
|
using MongoDB.Driver.GridFS;
|
|
using Squidex.Infrastructure;
|
|
using Squidex.Infrastructure.Assets;
|
|
using Squidex.Infrastructure.Assets.ImageSharp;
|
|
using Squidex.Infrastructure.Log;
|
|
|
|
namespace Squidex.Config.Domain
|
|
{
|
|
public static class AssetServices
|
|
{
|
|
public static void AddMyAssetServices(this IServiceCollection services, IConfiguration config)
|
|
{
|
|
config.ConfigureByOption("assetStore:type", new Options
|
|
{
|
|
["Folder"] = () =>
|
|
{
|
|
var path = config.GetRequiredValue("assetStore:folder:path");
|
|
|
|
services.AddSingletonAs(c => new FolderAssetStore(path, c.GetRequiredService<ISemanticLog>()))
|
|
.As<IAssetStore>()
|
|
.As<IInitializable>();
|
|
},
|
|
["GoogleCloud"] = () =>
|
|
{
|
|
var bucketName = config.GetRequiredValue("assetStore:googleCloud:bucket");
|
|
|
|
services.AddSingletonAs(c => new GoogleCloudAssetStore(bucketName))
|
|
.As<IAssetStore>()
|
|
.As<IInitializable>();
|
|
},
|
|
["AzureBlob"] = () =>
|
|
{
|
|
var connectionString = config.GetRequiredValue("assetStore:azureBlob:connectionString");
|
|
var containerName = config.GetRequiredValue("assetStore:azureBlob:containerName");
|
|
|
|
services.AddSingletonAs(c => new AzureBlobAssetStore(connectionString, containerName))
|
|
.As<IAssetStore>()
|
|
.As<IInitializable>();
|
|
},
|
|
["MongoDb"] = () =>
|
|
{
|
|
var connectionString = config.GetRequiredValue("assetStore:mongoDb:connectionString");
|
|
var mongoDatabaseName = config.GetRequiredValue("assetStore:mongoDb:database");
|
|
var mongoGridFsBucketName = config.GetRequiredValue("assetStore:mongoDb:bucket");
|
|
var localPath = config.GetRequiredValue("assetStore:mongoDb:path");
|
|
|
|
services.AddSingletonAs(c =>
|
|
{
|
|
var mongoClient = Singletons<IMongoClient>.GetOrAdd(connectionString, s => new MongoClient(s));
|
|
var mongoDatabase = mongoClient.GetDatabase(mongoDatabaseName);
|
|
var gridFsbucket = new GridFSBucket(mongoDatabase, new GridFSBucketOptions()
|
|
{
|
|
BucketName = mongoGridFsBucketName,
|
|
ChunkSizeBytes = 255 * 1024
|
|
// Defaults to 255KB, provisionary set here to avoid future changes in default values
|
|
});
|
|
|
|
return new MongoGridFsAssetStore(gridFsbucket, localPath);
|
|
})
|
|
.As<IAssetStore>()
|
|
.As<IInitializable>();
|
|
}
|
|
});
|
|
|
|
services.AddSingletonAs<ImageSharpAssetThumbnailGenerator>()
|
|
.As<IAssetThumbnailGenerator>();
|
|
}
|
|
}
|
|
}
|
|
|