Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Kevin Jump 2310 posts 14695 karma points MVP 7x c-trib
    Apr 03, 2021 @ 09:29
    Kevin Jump
    0

    NotificationHandler pattern for collections

    Hi,

    If it understand it correctly, notification handlers now have to be registered during the startup ( so in configure services or a composer). So i am after some advice on how this pattern might fit into Umbraco 9 land.

    for uSync we have SyncHandlers each one is responsible for the management of an Umbraco entity, and capturing changes when people save, move, delete those elments in Umbraco.

    We load these handlers in a collection (using a collection builder) during start

    builder.WithCollectionBuilder<SyncHandlerCollectionBuilder>()                      
        .Add(() => builder.TypeLoader.GetTypes<ISyncHandler>());
    

    Advantages to this is we don't have to register them all, and we can dynamically add new ones (such as support for vendr, or forms) without the core needed to know about it.

    Within the handlers we (in v8) have a method to initialize (and cleanup) listening for the the static events:

    for example the Macro Handler has :

        protected override void InitializeEvents(HandlerSettings settings)
        {
            MacroService.Saved += EventSavedItem;
            MacroService.Deleted += EventDeletedItem;
        }
    

    During initialization of the app (in a component's Initialize method), we load in the valid handlers (based on configuration this might be a subset of the handlers available). and we call the InitilizeEvents on each on to register the notification handler.

    var handlers = handlerFactory
            .GetValidHandlers(new SyncHandlerOptions(handlerFactory.DefaultSet, HandlerActions.Save))                   
            .ToList();
    
    foreach (var syncHandler in handlers)
    {
       syncHandler.Handler.Initialize(syncHandler.Settings);
    }
    

    v9 - and notifications

    in v9 - this code would live in a UmbracoApplicationStarting Notification handler, once the app is started we could in theory loop through the configured handlers but as i understand it we cannot/should not add new NotificationHandlers at this point?

    The question then is :

    How do we dynamically get the valid handlers to register for save/delete notifications - without putting them manually into composers/configure methods ?

    My thoughts so far include:

    1. Registering a super notification handler for all the core events and and has the SyncHandler collection injected into it - it could then find the valid for an event and trigger the correct method when it happens. Sort of how the UserNotificationHandler is doing this in the core code (but it isn't dynamically loading new events based on actions).

    2. Making the handlers mange their own Notifications and having some way of triggering code to add the relevant notification handlers for each of the SyncHandlers in a collection during a compose method ?

    3. A way of adding NotficationHandlers outside of configure (but not sure if we can or really if we should).

    Each of these has its own pros and cons, but i just wanted to check if there are any other ideas/best practice as to how this type of thing should be done in Umbraco 9

  • Kevin Jump 2310 posts 14695 karma points MVP 7x c-trib
    Apr 03, 2021 @ 09:42
    Kevin Jump
    0

    Intrestingly i just stumbled across this comment in the ModelsBuilder code in the Core:

    // TODO: I feel like we could just do builder.AddNotificationHandler<ModelsBuilderNotificationHandler>() and it
    // would automatically just register for all implemented INotificationHandler{T}?
    

    See ( see UmbracoBuilderDependencyInjectionExtensions.cs#L99 )

    So maybe there is a direction there some where.

  • Benjamin Carleski 33 posts 294 karma points MVP c-trib
    Apr 07, 2021 @ 15:36
    Benjamin Carleski
    0

    I think the intent is that Composers and Components will still live and work fine in v9. However, since it is .NET Core, you can also use the pipeline configuration methods and have .AddXXX and .UseXXX methods which are added to the Startup class to both register and then use handlers.

Please Sign in or register to post replies

Write your reply to:

Draft