Fórum

how to get HttpServletRequest or PortletRequest from cms template

thumbnail
Michel Wicky, modificado 11 Anos atrás.

how to get HttpServletRequest or PortletRequest from cms template

Regular Member Postagens: 130 Data de Entrada: 03/07/10 Postagens Recentes
Hi all, did somebody know how to get HttpServletRequest or PortletRequest from a velocity script in a web content template ?
Thx a lot.
thumbnail
Mika Koivisto, modificado 11 Anos atrás.

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend Postagens: 1519 Data de Entrada: 07/08/06 Postagens Recentes
You can't unfortunately get access to either one in web content template because they are rendered in the service backend. You need to find another approach to what you are trying to accomplish.
thumbnail
Michel Wicky, modificado 11 Anos atrás.

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member Postagens: 130 Data de Entrada: 03/07/10 Postagens Recentes
Ok i understand.

An another way is may be to use friendly URL like below:

#foreach ($userOrganization in $userOrganizations)
#if (!$userOrganization.isRoot() && $userOrganization.getParentOrganization().getGroupId() == 10698)
## debug $request.theme-display
## debug $getterUtil.getBoolean("false")
#set ($organizationFriendlyPath = $userOrganization.getGroup().getPathFriendlyURL($getterUtil.getBoolean("false"), $request.theme-display))
## debug $organizationFriendlyPath
#set ($organizationFriendlyURL = $userOrganization.getGroup().getFriendlyURL())
## debug $organizationFriendlyURL
#set ($OrganizationLink = "$organizationFriendlyPath$organizationFriendlyURL")
$OrganizationLink

<li><a href="${OrganizationLink}">$userOrganization.Name</a></li>

#end

Unfortunately, this statement don't execute correctly :
#set ($organizationFriendlyPath = $userOrganization.getGroup().getPathFriendlyURL($getterUtil.getBoolean("false"), $request.theme-display))

$request.theme-display seem not to be the right Type even I supposed it is RequestVars.getThemeDisplay, but may be it is not !?
thumbnail
jelmer kuperus, modificado 11 Anos atrás.

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend Postagens: 1191 Data de Entrada: 10/03/10 Postagens Recentes
You have access to an xml representation of the request. This xml document is available in the template as xmlRequest. It is documented on the wiki.

Note however that webcontent is usually cached and you'd have to disable caching in order to make use of this
thumbnail
Michel Wicky, modificado 11 Anos atrás.

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member Postagens: 130 Data de Entrada: 03/07/10 Postagens Recentes
Thanks Jelmer, I need HttpServletRequest or PortletRequest to use one of them in $Request in the statement below:
#set ($myPlaceURL = $portletFactoryUtil.create($Request, "49", $userOrganization.getGroup().getDefaultPublicPlid(), "ACTION_PHASE"))

The goal is just to list some organization from a velocity script web content template with a link to each organization.

I already have everything (user, organization, group), i just need this parameter to finish the job. If i can't have it I have to find an another way to achieve this like may the second example i posted.

Thanks for your recommandation ...
thumbnail
jelmer kuperus, modificado 11 Anos atrás.

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend Postagens: 1191 Data de Entrada: 10/03/10 Postagens Recentes
You can't create links like that from a cms template because that would require access to the real request

You should pobably use javascript as i describe in this post
thumbnail
Michel Wicky, modificado 11 Anos atrás.

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member Postagens: 130 Data de Entrada: 03/07/10 Postagens Recentes
Thank you a lot Jelmer, finally an information that will orient me correctly. I understand why javascript is the way to get these informations.
Hope I will able to achieve this.
Thx again.
Balázs Csönge, modificado 8 Anos atrás.

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member Postagens: 107 Data de Entrada: 10/11/14 Postagens Recentes
Hi,

Were you able to get the request object?
If yes can you publish the solution CODE?

Regards

Balázs