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.
30 lines
1.1 KiB
30 lines
1.1 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Options;
|
|
using Squidex.Domain.Apps.Entities.Assets;
|
|
using Squidex.Infrastructure.Plugins;
|
|
|
|
namespace Squidex.Extensions.Assets.Azure
|
|
{
|
|
public sealed class AzureMetadataSourcePlugin : IPlugin
|
|
{
|
|
public void ConfigureServices(IServiceCollection services, IConfiguration config)
|
|
{
|
|
var options = config.GetSection("assets:azureCognitive").Get<AzureMetadataSourceOptions>();
|
|
|
|
if (options.IsConfigured())
|
|
{
|
|
services.AddSingleton<IAssetMetadataSource, AzureMetadataSource>();
|
|
services.AddSingleton(Options.Create(options));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|