309 lines
13 KiB
C#
309 lines
13 KiB
C#
using System;
|
|
using Umbraco.Core.Cache;
|
|
using Umbraco.Core.Composing;
|
|
using Umbraco.Core.Dictionary;
|
|
using Umbraco.Core.IO;
|
|
using Umbraco.Core.Logging.Viewer;
|
|
using Umbraco.Core.Models.PublishedContent;
|
|
using Umbraco.Core.PackageActions;
|
|
using Umbraco.Core.Persistence.Mappers;
|
|
using Umbraco.Core.PropertyEditors;
|
|
using Umbraco.Core.Strings;
|
|
using Umbraco.Core.Sync;
|
|
|
|
namespace Umbraco.Core
|
|
{
|
|
/// <summary>
|
|
/// Provides extension methods to the <see cref="Composition"/> class.
|
|
/// </summary>
|
|
public static partial class CompositionExtensions
|
|
{
|
|
#region Collection Builders
|
|
|
|
/// <summary>
|
|
/// Gets the cache refreshers collection builder.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
public static CacheRefresherCollectionBuilder CacheRefreshers(this Composition composition)
|
|
=> composition.WithCollectionBuilder<CacheRefresherCollectionBuilder>();
|
|
|
|
/// <summary>
|
|
/// Gets the mappers collection builder.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
public static MapperCollectionBuilder Mappers(this Composition composition)
|
|
=> composition.WithCollectionBuilder<MapperCollectionBuilder>();
|
|
|
|
/// <summary>
|
|
/// Gets the package actions collection builder.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
internal static PackageActionCollectionBuilder PackageActions(this Composition composition)
|
|
=> composition.WithCollectionBuilder<PackageActionCollectionBuilder>();
|
|
|
|
/// <summary>
|
|
/// Gets the data editor collection builder.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
public static DataEditorCollectionBuilder DataEditors(this Composition composition)
|
|
=> composition.WithCollectionBuilder<DataEditorCollectionBuilder>();
|
|
|
|
/// <summary>
|
|
/// Gets the property value converters collection builder.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
public static PropertyValueConverterCollectionBuilder PropertyValueConverters(this Composition composition)
|
|
=> composition.WithCollectionBuilder<PropertyValueConverterCollectionBuilder>();
|
|
|
|
/// <summary>
|
|
/// Gets the url segment providers collection builder.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
public static UrlSegmentProviderCollectionBuilder UrlSegmentProviders(this Composition composition)
|
|
=> composition.WithCollectionBuilder<UrlSegmentProviderCollectionBuilder>();
|
|
|
|
/// <summary>
|
|
/// Gets the validators collection builder.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
internal static ManifestValueValidatorCollectionBuilder Validators(this Composition composition)
|
|
=> composition.WithCollectionBuilder<ManifestValueValidatorCollectionBuilder>();
|
|
|
|
/// <summary>
|
|
/// Gets the components collection builder.
|
|
/// </summary>
|
|
public static ComponentCollectionBuilder Components(this Composition composition)
|
|
=> composition.WithCollectionBuilder<ComponentCollectionBuilder>();
|
|
|
|
#endregion
|
|
|
|
#region Uniques
|
|
|
|
/// <summary>
|
|
/// Sets the culture dictionary factory.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the factory.</typeparam>
|
|
/// <param name="composition">The composition.</param>
|
|
public static void SetCultureDictionaryFactory<T>(this Composition composition)
|
|
where T : ICultureDictionaryFactory
|
|
{
|
|
composition.RegisterUnique<ICultureDictionaryFactory, T>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the culture dictionary factory.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="factory">A function creating a culture dictionary factory.</param>
|
|
public static void SetCultureDictionaryFactory(this Composition composition, Func<IFactory, ICultureDictionaryFactory> factory)
|
|
{
|
|
composition.RegisterUnique(factory);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the culture dictionary factory.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="factory">A factory.</param>
|
|
public static void SetCultureDictionaryFactory(this Composition composition, ICultureDictionaryFactory factory)
|
|
{
|
|
composition.RegisterUnique(_ => factory);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the published content model factory.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the factory.</typeparam>
|
|
/// <param name="composition">The composition.</param>
|
|
public static void SetPublishedContentModelFactory<T>(this Composition composition)
|
|
where T : IPublishedModelFactory
|
|
{
|
|
composition.RegisterUnique<IPublishedModelFactory, T>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the published content model factory.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="factory">A function creating a published content model factory.</param>
|
|
public static void SetPublishedContentModelFactory(this Composition composition, Func<IFactory, IPublishedModelFactory> factory)
|
|
{
|
|
composition.RegisterUnique(factory);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the published content model factory.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="factory">A published content model factory.</param>
|
|
public static void SetPublishedContentModelFactory(this Composition composition, IPublishedModelFactory factory)
|
|
{
|
|
composition.RegisterUnique(_ => factory);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the server registrar.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the server registrar.</typeparam>
|
|
/// <param name="composition">The composition.</param>
|
|
public static void SetServerRegistrar<T>(this Composition composition)
|
|
where T : IServerRegistrar
|
|
{
|
|
composition.RegisterUnique<IServerRegistrar, T>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the server registrar.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="factory">A function creating a server registrar.</param>
|
|
public static void SetServerRegistrar(this Composition composition, Func<IFactory, IServerRegistrar> factory)
|
|
{
|
|
composition.RegisterUnique(factory);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the server registrar.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="registrar">A server registrar.</param>
|
|
public static void SetServerRegistrar(this Composition composition, IServerRegistrar registrar)
|
|
{
|
|
composition.RegisterUnique(_ => registrar);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the server messenger.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the server registrar.</typeparam>
|
|
/// <param name="composition">The composition.</param>
|
|
public static void SetServerMessenger<T>(this Composition composition)
|
|
where T : IServerMessenger
|
|
{
|
|
composition.RegisterUnique<IServerMessenger, T>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the server messenger.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="factory">A function creating a server messenger.</param>
|
|
public static void SetServerMessenger(this Composition composition, Func<IFactory, IServerMessenger> factory)
|
|
{
|
|
composition.RegisterUnique(factory);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the server messenger.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="registrar">A server messenger.</param>
|
|
public static void SetServerMessenger(this Composition composition, IServerMessenger registrar)
|
|
{
|
|
composition.RegisterUnique(_ => registrar);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the database server messenger options.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="factory">A function creating the options.</param>
|
|
/// <remarks>Use DatabaseServerRegistrarAndMessengerComposer.GetDefaultOptions to get the options that Umbraco would use by default.</remarks>
|
|
public static void SetDatabaseServerMessengerOptions(this Composition composition, Func<IFactory, DatabaseServerMessengerOptions> factory)
|
|
{
|
|
composition.RegisterUnique(factory);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the database server messenger options.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="options">Options.</param>
|
|
/// <remarks>Use DatabaseServerRegistrarAndMessengerComposer.GetDefaultOptions to get the options that Umbraco would use by default.</remarks>
|
|
public static void SetDatabaseServerMessengerOptions(this Composition composition, DatabaseServerMessengerOptions options)
|
|
{
|
|
composition.RegisterUnique(_ => options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the short string helper.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the short string helper.</typeparam>
|
|
/// <param name="composition">The composition.</param>
|
|
public static void SetShortStringHelper<T>(this Composition composition)
|
|
where T : IShortStringHelper
|
|
{
|
|
composition.RegisterUnique<IShortStringHelper, T>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the short string helper.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="factory">A function creating a short string helper.</param>
|
|
public static void SetShortStringHelper(this Composition composition, Func<IFactory, IShortStringHelper> factory)
|
|
{
|
|
composition.RegisterUnique(factory);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the short string helper.
|
|
/// </summary>
|
|
/// <param name="composition">A composition.</param>
|
|
/// <param name="helper">A short string helper.</param>
|
|
public static void SetShortStringHelper(this Composition composition, IShortStringHelper helper)
|
|
{
|
|
composition.RegisterUnique(_ => helper);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the underlying media filesystem.
|
|
/// </summary>
|
|
/// <param name="composition">A composition.</param>
|
|
/// <param name="filesystemFactory">A filesystem factory.</param>
|
|
public static void SetMediaFileSystem(this Composition composition, Func<IFactory, IFileSystem> filesystemFactory)
|
|
=> composition.RegisterUniqueFor<IFileSystem, IMediaFileSystem>(filesystemFactory);
|
|
|
|
/// <summary>
|
|
/// Sets the underlying media filesystem.
|
|
/// </summary>
|
|
/// <param name="composition">A composition.</param>
|
|
/// <param name="filesystemFactory">A filesystem factory.</param>
|
|
public static void SetMediaFileSystem(this Composition composition, Func<IFileSystem> filesystemFactory)
|
|
=> composition.RegisterUniqueFor<IFileSystem, IMediaFileSystem>(_ => filesystemFactory());
|
|
|
|
/// <summary>
|
|
/// Sets the log viewer.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the log viewer.</typeparam>
|
|
/// <param name="composition">The composition.</param>
|
|
public static void SetLogViewer<T>(this Composition composition)
|
|
where T : ILogViewer
|
|
{
|
|
composition.RegisterUnique<ILogViewer, T>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the log viewer.
|
|
/// </summary>
|
|
/// <param name="composition">The composition.</param>
|
|
/// <param name="factory">A function creating a log viewer.</param>
|
|
public static void SetLogViewer(this Composition composition, Func<IFactory, ILogViewer> factory)
|
|
{
|
|
composition.RegisterUnique(factory);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the log viewer.
|
|
/// </summary>
|
|
/// <param name="composition">A composition.</param>
|
|
/// <param name="helper">A log viewer.</param>
|
|
public static void SetLogViewer(this Composition composition, ILogViewer viewer)
|
|
{
|
|
composition.RegisterUnique(_ => viewer);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|