How to implement custom SiteMapNodeProvider

前端 未结 1 668
迷失自我
迷失自我 2020-12-12 07:02

I am trying to adapt the MvcSiteMapProvider to create the breadcrumb based on some Information stored in a database.

The answer in this post sounded promising so i i

相关标签:
1条回答
  • 2020-12-12 07:43

    First of all, to integrate with an existing DI setup, you should install MvcSiteMapProvider.MVC4.DI.SimpleInjector.Modules instead of MvcSiteMapProvider.MVC4.DI.SimpleInjector. You can downgrade by running this command from package manager console:

    PM> Uninstall-Package -Id MvcSiteMapProvider.MVC4.DI.SimpleInjector

    Be sure NOT to uninstall any dependencies. This will ensure that you don't have 2 sets of DI initialization code in your project - there should only be 1 for the entire application.

    Next, you need to wire up for DI as well as some other initialization code required by MvcSiteMapProvider. The readme file contains instructions how to do this. Here is how you would do it with your existing configuration.

    public static void Initialize()
    {
        Injection.Global = new Container();
        InitializeContainer(Injection.Global);
        Injection.Global.RegisterMvcControllers(Assembly.GetExecutingAssembly());
        Injection.Global.RegisterMvcAttributeFilterProvider();
        Injection.Global.Verify();
        DependencyResolver.SetResolver(new SimpleInjectorDependencyResolver(Injection.Global));
    }
    
    private static void InitializeContainer(Container container)
    {
        // Setup configuration of DI (required)
        MvcSiteMapProviderContainerInitializer.SetUp(container);
    
        // Setup global sitemap loader (required)
        MvcSiteMapProvider.SiteMaps.Loader = container.GetInstance<ISiteMapLoader>();
    
        // Check all configured .sitemap files to ensure they follow the XSD for MvcSiteMapProvider (optional)
        var validator = container.GetInstance<ISiteMapXmlValidator>();
        validator.ValidateXml(HostingEnvironment.MapPath("~/Mvc.sitemap"));
    
        // Register the Sitemaps routes for search engines (optional)
        XmlSiteMapController.RegisterRoutes(RouteTable.Routes); // NOTE: You can put this in your RouteConfig.cs file if desired.
    
        //... register some other stuff for your project here ...
    }
    

    If the /sitemap.xml endpoint doesn't work, you may also need to add this line to register the XmlSiteMapController:

    Injection.Global.RegisterMvcControllers(typeof(MvcSiteMapProvider.SiteMaps).Assembly);
    

    To implement ISiteMapNodeProvider, there is an example here: MvcSiteMapProvider ISiteMapBuilder in conjunction with IDynamicNodeProvider.

    To register your custom ISiteMapNodeProvider, you just need to ensure it gets added to the constructor of SiteMapBuilder. You can also exclude the existing SiteMapNodeProviders from the code below depending on your needs.

    // Register the sitemap node providers
    container.RegisterSingle<XmlSiteMapNodeProvider>(() => container.GetInstance<XmlSiteMapNodeProviderFactory>()
        .Create(container.GetInstance<IXmlSource>()));
    container.RegisterSingle<ReflectionSiteMapNodeProvider>(() => container.GetInstance<ReflectionSiteMapNodeProviderFactory>()
        .Create(includeAssembliesForScan));
    
    // Register your custom sitemap node provider
    container.RegisterSingle<ISiteMapNodeProvider, CustomSiteMapNodeProvider>();
    
    // Register the collection of sitemap node providers (including the custom one)
    container.RegisterSingle<ISiteMapBuilder>(() => container.GetInstance<SiteMapBuilderFactory>()
        .Create(new CompositeSiteMapNodeProvider(
            container.GetInstance<XmlSiteMapNodeProvider>(), 
            container.GetInstance<ReflectionSiteMapNodeProvider>(), 
            container.GetInstance<CustomSiteMapNodeProvider>())));
    

    Do note that IDynamicNodeProvider (which is documented) does almost exactly the same thing as ISiteMapNodeProvider, so you could use that option instead. There are 3 main differences:

    1. With IDynamicNodeProvider, you must create a "template" node that defines the dynamicNodeProvider attribute, and the template node itself won't be included in the SiteMap, so it must be used in conjunction with a ISiteMapNodeProvider implementation that processes the dynamic nodes (the built-in ISiteMapNodeProviders do this automatically).
    2. IDynamicNodeProvider doesn't need to be part of the DI setup because it is already processed by both XmlSiteMapNodeProvider and ReflectionSiteMapNodeProvider.
    3. With ISiteMapNodeProvider, you are working directly with the ISiteMapNode object, with IDynamicNodeProvider you are working with an abstraction (DynamicNodeProvider) and there is a conversion that happens automatically.

    About SimpleInjector.Verify

    If you want Verify() to work, you need to add the following to the excludeTypes array in the MvcSiteMapProviderContainerInitializer.

    typeof(SiteMapNodeCreator),
    typeof(DynamicSiteMapNodeBuilder)
    

    I have added them to the module and will be in the next version of the Nuget package, but these modules do not update so you have to do it manually.

    Note that the Verify() method tries to create an instance of everything that is registered with the container - including objects that never get created by the container in the real world. Therefore, if you use the Verify() method you have to be more diligent that something is not accidentally registered. This makes convention-based registration more difficult to do.

    0 讨论(0)
提交回复
热议问题