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.
76 lines
2.4 KiB
76 lines
2.4 KiB
// ==========================================================================
|
|
// ReadModule.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Autofac;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Options;
|
|
using Squidex.Read.Apps;
|
|
using Squidex.Read.Apps.Services;
|
|
using Squidex.Read.Apps.Services.Implementations;
|
|
using Squidex.Read.Contents;
|
|
using Squidex.Read.Contents.Builders;
|
|
using Squidex.Read.History;
|
|
using Squidex.Read.Schemas;
|
|
using Squidex.Read.Schemas.Services;
|
|
using Squidex.Read.Schemas.Services.Implementations;
|
|
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Local
|
|
|
|
namespace Squidex.Config.Domain
|
|
{
|
|
public sealed class ReadModule : Module
|
|
{
|
|
private IConfiguration Configuration { get; }
|
|
|
|
public ReadModule(IConfiguration configuration)
|
|
{
|
|
Configuration = configuration;
|
|
}
|
|
|
|
protected override void Load(ContainerBuilder builder)
|
|
{
|
|
builder.Register(c => c.Resolve<IOptions<MyUsageOptions>>().Value?.Plans ?? Enumerable.Empty<ConfigAppLimitsPlan>())
|
|
.As<IEnumerable<ConfigAppLimitsPlan>>()
|
|
.AsSelf()
|
|
.SingleInstance();
|
|
|
|
builder.RegisterType<CachingAppProvider>()
|
|
.As<IAppProvider>()
|
|
.AsSelf()
|
|
.SingleInstance();
|
|
|
|
builder.RegisterType<ConfigAppLimitsProvider>()
|
|
.As<IAppLimitsProvider>()
|
|
.AsSelf()
|
|
.SingleInstance();
|
|
|
|
builder.RegisterType<CachingSchemaProvider>()
|
|
.As<ISchemaProvider>()
|
|
.AsSelf()
|
|
.SingleInstance();
|
|
|
|
builder.RegisterType<AppHistoryEventsCreator>()
|
|
.As<IHistoryEventsCreator>()
|
|
.SingleInstance();
|
|
|
|
builder.RegisterType<ContentHistoryEventsCreator>()
|
|
.As<IHistoryEventsCreator>()
|
|
.SingleInstance();
|
|
|
|
builder.RegisterType<SchemaHistoryEventsCreator>()
|
|
.As<IHistoryEventsCreator>()
|
|
.SingleInstance();
|
|
|
|
builder.RegisterType<EdmModelBuilder>()
|
|
.AsSelf()
|
|
.SingleInstance();
|
|
}
|
|
}
|
|
}
|
|
|