Forums de discussion

how to get HttpServletRequest or PortletRequest from cms template

thumbnail
Michel Wicky, modifié il y a 11 années.

how to get HttpServletRequest or PortletRequest from cms template

Regular Member Publications: 130 Date d'inscription: 03/07/10 Publications récentes
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, modifié il y a 11 années.

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend Publications: 1519 Date d'inscription: 07/08/06 Publications récentes
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, modifié il y a 11 années.

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member Publications: 130 Date d'inscription: 03/07/10 Publications récentes
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, modifié il y a 11 années.

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend Publications: 1191 Date d'inscription: 10/03/10 Publications récentes
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, modifié il y a 11 années.

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member Publications: 130 Date d'inscription: 03/07/10 Publications récentes
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, modifié il y a 11 années.

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend Publications: 1191 Date d'inscription: 10/03/10 Publications récentes
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, modifié il y a 11 années.

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member Publications: 130 Date d'inscription: 03/07/10 Publications récentes
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, modifié il y a 8 années.

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member Publications: 107 Date d'inscription: 10/11/14 Publications récentes
Hi,

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

Regards

Balázs