Fórum

Portrait Url without Theme Display

thumbnail
Asad Saeed Awan, modificado 7 Anos atrás.

Portrait Url without Theme Display

Regular Member Postagens: 126 Data de Entrada: 16/01/15 Postagens Recentes
Hello,

How do I get portrait URL without theme display?
thumbnail
Andrew Jardine, modificado 7 Anos atrás.

RE: Portrait Url without Theme Display

Liferay Legend Postagens: 2416 Data de Entrada: 22/12/10 Postagens Recentes
Hi Asad,

I am curious -- where are you trying to access the portrait URL from that you don't have a theme display?

Apart from my question, the method that uses the theme display only seems to require the image path. Perhaps you can calculate it separately. My search of the source revealed it as calculated like so --

	setPathThemeImages(
			cdnBaseURL + themeStaticResourcePath + theme.getImagesPath());


Once you have it, and the user details of course, then you can just use the logic from that method (that uses the ThemeDisplay parameter). The UserConstants class is in the portal-service.jar so it is available across the server.

return UserConstants.getPortraitURL(
			themeDisplay.getPathImage(), isMale(), getPortraitId(),
			getUserUuid());


Let me know if that helps -- and where you are trying to access the portrait URL from.
thumbnail
Fil Giu, modificado 7 Anos atrás.

RE: Portrait Url without Theme Display

Junior Member Postagens: 48 Data de Entrada: 20/11/13 Postagens Recentes
I have the same problem.

I would access the user's avatar image by public API, in order to show the img in an other tools.
Is it possible ?