掲示板

how to get HttpServletRequest or PortletRequest from cms template

thumbnail
11年前 に Michel Wicky によって更新されました。

how to get HttpServletRequest or PortletRequest from cms template

Regular Member 投稿: 130 参加年月日: 10/07/03 最新の投稿
Hi all, did somebody know how to get HttpServletRequest or PortletRequest from a velocity script in a web content template ?
Thx a lot.
thumbnail
11年前 に Mika Koivisto によって更新されました。

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend 投稿: 1519 参加年月日: 06/08/07 最新の投稿
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
11年前 に Michel Wicky によって更新されました。

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member 投稿: 130 参加年月日: 10/07/03 最新の投稿
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
11年前 に jelmer kuperus によって更新されました。

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend 投稿: 1191 参加年月日: 10/03/10 最新の投稿
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
11年前 に Michel Wicky によって更新されました。

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member 投稿: 130 参加年月日: 10/07/03 最新の投稿
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
11年前 に jelmer kuperus によって更新されました。

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend 投稿: 1191 参加年月日: 10/03/10 最新の投稿
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
11年前 に Michel Wicky によって更新されました。

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member 投稿: 130 参加年月日: 10/07/03 最新の投稿
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.
8年前 に Balázs Csönge によって更新されました。

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member 投稿: 107 参加年月日: 14/11/10 最新の投稿
Hi,

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

Regards

Balázs