Foros de discusión

Portrait Url without Theme Display

thumbnail
Asad Saeed Awan, modificado hace 7 años.

Portrait Url without Theme Display

Regular Member Mensajes: 126 Fecha de incorporación: 16/01/15 Mensajes recientes
Hello,

How do I get portrait URL without theme display?
thumbnail
Andrew Jardine, modificado hace 7 años.

RE: Portrait Url without Theme Display

Liferay Legend Mensajes: 2416 Fecha de incorporación: 22/12/10 Mensajes recientes
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 hace 7 años.

RE: Portrait Url without Theme Display

Junior Member Mensajes: 48 Fecha de incorporación: 20/11/13 Mensajes recientes
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 ?