But please don't use Current - in most places you will use this kind of code (like an API controller, or a SurfaceController, etc). you can just access these things already:
@Sebastiaan, IContentService as parameter for constructor seems to work, but when adding UmbracoHelper to constructor the magical dependency injection doesn't seem to work ("Boot failed")
Is there any way to get UmbracoHelper available in IComponent ?
@Remko - I understand from Stephane that you're not actually meant to try to get an UmbracoHelper in an IComponent, so the question is: what do you need it for?
I'm guessing the most common scenario would be to query some content, in which case you can inject IUmbracoContextFactory and get an umbracoContext from it, the safe way to do that (in case the context does not exist yet) is to Ensure it exists first:
private readonly IContentService _contentService;
private readonly IUmbracoContextFactory _context;
public MyComponent(IContentService contentService, IUmbracoContextFactory context)
{
_contentService = contentService;
_context = context;
}
public void Initialize()
{
using (var cref = _context.EnsureUmbracoContext())
{
var cache = cref.UmbracoContext.ContentCache;
var node = cache.GetById(1234);
}
I'm also looking to get an instance of UmbracoHelper, but in a custom service.
The reason for me, which means I can't use the content cache, is that I need to get the current page. Usually, I would get AssignedContentItem from the Umbraco helper.
I need to get access to UmbracoHelper within a class which inherits from PropertyValueConverterBase.
The reason is to access GetDictionaryValue.
Following the dependency injection approach I cannot inject UmbracoHelper into my class constructor.
This crashes Umbraco with error:
Boot failed: Umbraco cannot run. See Umbraco's log file for more details.
-> Umbraco.Core.Exceptions.BootFailedException: Boot failed.
-> System.NullReferenceException: Object reference not set to an instance of an object.
at Umbraco.Web.Runtime.WebInitialComposer.<>c.<Compose>b__0_6(IFactory factory) in d:\a\1\s\src\Umbraco.Web\Runtime\WebInitialComposer.cs:line 116
at DynamicMethod(Object[] )
Anyone know how to get access to UmbracoHelper or Dictionary values from my PropertyValueConverter class?
You can see it's just a wrapper for an ICultureDictionary object
public string GetDictionaryValue(string key)
{
return CultureDictionary[key];
}
The CultureDictionary seems to be created by a 'CultureDictionaryFactory'
public ICultureDictionary CultureDictionary => cultureDictionary
?? (cultureDictionary = _cultureDictionaryFactory.CreateDictionary());
which is injected into UmbracoHelper.
So I'm wondering if you can do the same here?
eg inject ICultureDictionaryFactory in the same way the helper does:
public UmbracoHelper(IPublishedContent currentPage,
ITagQuery tagQuery,
ICultureDictionaryFactory cultureDictionary,
IUmbracoComponentRenderer componentRenderer,
IPublishedContentQuery publishedContentQuery,
MembershipHelper membershipHelper)
{
_tagQuery = tagQuery ?? throw new ArgumentNullException(nameof(tagQuery));
_cultureDictionaryFactory = cultureDictionary ?? throw new ArgumentNullException(nameof(cultureDictionary));
_componentRenderer = componentRenderer ?? throw new ArgumentNullException(nameof(componentRenderer));
_membershipHelper = membershipHelper ?? throw new ArgumentNullException(nameof(membershipHelper));
_publishedContentQuery = publishedContentQuery ?? throw new ArgumentNullException(nameof(publishedContentQuery));
_currentPage = currentPage;
}
But apologies as I'm not at a pc at the moment, so this is a bit of a guess!
(UmbracoHelper has tons of stuff in it, which requires the existance of an UmbracoContext to work, which is why it blows up when you try to inject it in a non httprequest thread - but if you inject 'just what you need' then often you are ok!)
v8 - UmbracoHelper, easy way to create instance?
In our code we were using this a lot in v7:
But for v8 I cannot find any documentation on how to do this the new way. I just want to grab a node as IPublishedContent in back-end code...
Can anyone help me with this?
I think this should all be using Dependency Injection now, but there is a static method on the Current object (you may need to add a reference):
This may not be the 100% spot on syntax but there is definitely a way of accessing an umbraco helper on this object.
the umbraco context can be called in a similar way.
I will update this with the actual code when i am back at my PC
But please don't use
Current
- in most places you will use this kind of code (like an API controller, or a SurfaceController, etc). you can just access these things already:IPublishedContent node = this.UmbracoContext.ContentCache.GetById(1234);
If that's not available you can almost always get the
UmbracoContext
through dependency injection, I wrote a bit more about that over here:https://our.umbraco.com/forum/umbraco-8/96125-custom-application-started-events#comment-304012
Happy to look at some code if you can't figure it out!
Ah.. it's even easier, if you're using any of our base classes like SurfaceController etc. then you just do:
@Sebastiaan, IContentService as parameter for constructor seems to work, but when adding UmbracoHelper to constructor the magical dependency injection doesn't seem to work ("Boot failed")
Is there any way to get UmbracoHelper available in IComponent ?
@Remko - I understand from Stephane that you're not actually meant to try to get an
UmbracoHelper
in anIComponent
, so the question is: what do you need it for?I'm guessing the most common scenario would be to query some content, in which case you can inject
IUmbracoContextFactory
and get an umbracoContext from it, the safe way to do that (in case the context does not exist yet) is to Ensure it exists first:I'm also looking to get an instance of UmbracoHelper, but in a custom service.
The reason for me, which means I can't use the content cache, is that I need to get the current page. Usually, I would get
AssignedContentItem
from the Umbraco helper.Is there another way to get the current page?
I need to get access to UmbracoHelper within a class which inherits from PropertyValueConverterBase.
The reason is to access GetDictionaryValue.
Following the dependency injection approach I cannot inject UmbracoHelper into my class constructor.
This crashes Umbraco with error:
Boot failed: Umbraco cannot run. See Umbraco's log file for more details.
Anyone know how to get access to UmbracoHelper or Dictionary values from my PropertyValueConverter class?
Cheers,
Marc
Hi Mark did you ever find a solution to this im in the same situation right now :D
Did anyone find a solution? (specifically, I need to access the GetDictionaryValue from an IComponent)
Hi Marc and Dan.
You should be able to do this. If you find a better way please let me know :)
i started another thread here https://our.umbraco.com/forum/using-umbraco-and-getting-started/104655-inject-custom-service-into-custom-dataannotation
Malka you can inject
ILocalizationService
in aIComponent
constructor.Hi Malka
If you have a look at the way UmbracoHelper accesses the Dictionary, in GetDictionaryValue
https://github.com/umbraco/Umbraco-CMS/blob/v8/contrib/src/Umbraco.Web/UmbracoHelper.cs#L214
You can see it's just a wrapper for an ICultureDictionary object
The CultureDictionary seems to be created by a 'CultureDictionaryFactory'
public ICultureDictionary CultureDictionary => cultureDictionary ?? (cultureDictionary = _cultureDictionaryFactory.CreateDictionary());
which is injected into UmbracoHelper.
So I'm wondering if you can do the same here?
eg inject
ICultureDictionaryFactory
in the same way the helper does:But apologies as I'm not at a pc at the moment, so this is a bit of a guess!
(UmbracoHelper has tons of stuff in it, which requires the existance of an UmbracoContext to work, which is why it blows up when you try to inject it in a non httprequest thread - but if you inject 'just what you need' then often you are ok!)
regards
Marc
is working on a reply...