using System; using System.Collections.Generic; using System.ComponentModel; using Umbraco.Core.Models.PublishedContent; namespace Umbraco.Core { /// /// Provides extension methods for . /// public static class PublishedModelFactoryExtensions { /// /// Returns true if the current is an implementation of /// /// /// public static bool IsLiveFactory(this IPublishedModelFactory factory) => factory is ILivePublishedModelFactory; /// /// Returns true if the current is an implementation of and is enabled /// /// /// public static bool IsLiveFactoryEnabled(this IPublishedModelFactory factory) { if (factory is ILivePublishedModelFactory liveFactory) return liveFactory.Enabled; // if it's not ILivePublishedModelFactory we can't determine if it's enabled or not so return true return true; } [Obsolete("This method is no longer used or necessary and will be removed from future")] [EditorBrowsable(EditorBrowsableState.Never)] public static void WithSafeLiveFactory(this IPublishedModelFactory factory, Action action) { if (factory is ILivePublishedModelFactory liveFactory) { lock (liveFactory.SyncRoot) { //Call refresh on the live factory to re-compile the models liveFactory.Refresh(); action(); } } else { action(); } } /// /// Sets a flag to reset the ModelsBuilder models if the is /// /// /// /// /// This does not recompile the pure live models, only sets a flag to tell models builder to recompile when they are requested. /// internal static void WithSafeLiveFactoryReset(this IPublishedModelFactory factory, Action action) { if (factory is ILivePublishedModelFactory liveFactory) { lock (liveFactory.SyncRoot) { liveFactory.Reset(); action(); } } else { action(); } } } }