ClientContextLibrary

From Gcube Wiki
Revision as of 18:23, 24 November 2016 by Massimiliano.assante (Talk | contribs) (Case 2 - HTTP GET or POST made with GWT RequestBuilder)

Jump to: navigation, search

Client Context library for gCube Portlets

Starting from gCube 4.2, the current Context identifier resides client side. If your Portlet does use AJAX calls (i.e. XMLHttpRequest to exchange data with a server behind the scenes) you don't need this component. Everything is already set up for you by the gCube Portal/Gateway in which your application is running.

If you use standard http GET or POST to exchange data with the server instead, and you need to pass to the server the current Infrastructure scope identifier (the Liferay groupId).

Getting the Client Context in Javascript

<script>
var groupId = Liferay.ThemeDisplay.getScopeGroupId();
</script>

Read more about Liferay Javascript Object: [1]

Getting the Client Context in GWT (Widget)

The Client Context has been wrapped as a GWT Widget. Its source code is available in the gCube SVN repository, at this url.

To use the widget, you need to declare the following maven dependency in your project's pom.xml

<dependency>
        <groupId>org.gcube.portal</groupId>
	<artifactId>client-context-library</artifactId>
	<version>[1.0.0-SNAPSHOT,)</version>
	<scope>compile</scope>
</dependency>

as well as the following line in the gwt.xml file of your gwt-portlet:

<!--Inherit the GCubeClientContext widget code -->
<inherits name='org.gcube.portal.clientcontext.GCubeClientContext' />

then you just use the GCubeClientContext.getCurrentContextId() method:

public static native String getCurrentContextId();

Either if you pass this identifier explicitly as parameter, or embed it in the header of your call, in the server you can use the following method to get the infrastructure scope (note: scopeGroupId parameter is the value returned from the GCubeClientContext.getCurrentContextId() method described previously:

import org.gcube.common.portal;
...
PortalContext pContext = PortalContext.getConfiguration();
 
/**
 * 
 * @param scopeGroupId the liferay groupid number (as String) of the VRE/VO
 * @return the scope (context)
 */
String currentScope = pContext.getCurrentScope(String scopeGroupId);

Examples for passing the Client Context via Standard HTTP POST or GET

It can happen that in your web applications you have to use standard HTTP POST or GET for your servlet. This is true, for instance, when you have to upload a file from the browser.

Other cases may involve the usage of the GWT RequestBuilder object (com.google.gwt.http.client.RequestBuilder) for standard HTTP Calls.

For both cases we here suggests to possible solution, in order to pass the ClientContext to your servlets.

Case 1 - HTTP POST requests

A possible approach is to use one (HTML) Hidden field in the form and to read this hidden field value in the doPost servlet's method.

The following example is written in GWT.

//client side code
...
VerticalPanel panel = new VerticalPanel();
formPanel.setWidget(panel); //com.google.gwt.user.client.ui.FormPanel
fileUpload.setName(...);  //com.google.gwt.user.client.ui.FileUpload
 
 
// Add hidden parameters
String currentContextId = GCubeClientContext.getCurrentContextId();
 
//$YourAttributeName is any attribute name you like, it has to be the same when you'll read it in the servlet's doPost
panel.add(new Hidden($YourAttributeName, currentContextId)); <-- here is where you put the clientContextId, 
 
...

---

//server side code
...
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
...
/**
 * An iterator to instances of <code>FileItemStream</code>
 * parsed from the request, in the order that they were
 *transmitted.
 */
FileItemIterator fileItemIterator = servletFileUpload.getItemIterator(request);
String clientContextId = "";
//GET FILE STREAM
while (fileItemIterator.hasNext()) {
	FileItemStream item = fileItemIterator.next();
        ...
        if (item.isFormField() && $YourAttributeName.equals(item.getFieldName())){  <-- here is where you read the clientContextId in the server  $YourAttributeName must match the hidden value above
	         clientContextId = Streams.asString(item.openStream());
	}
        ...
 
}
String currentScope= PortalContext.getConfiguration().getCurrentScope(clientContextId));  <-- here  where you get the currentScope from the clientContextId
...
}


Case 2 - HTTP GET or POST made with GWT RequestBuilder

This case is even easier than the Case 1, all you need to do is to pass the RequestBuilder to one method of this GCubeClientContext component.

You can either pass the GCUbeClientContexId as GET Parameter or GCubeClientContext.injectContext method.

//client side code
 
com.google.gwt.http.client.RequestBuilder requestBuilder = new RequestBuilder(RequestBuilder.GET, $yourURL);
requestBuilder = GCubeClientContext.injectContext(requestBuilder);  //<--here we inject the context in the header of this request for you
...


//server side code
 
import org.gcube.common.portal;
 
public void doGet(HttpServletRequest request, HttpServletResponse response) {
...
PortalContext pContext = PortalContext.getConfiguration();
String currentScope = pContext.getCurrentScope(request);
...

Related links and references

[1] Liferay Javascript Object usage: https://web.liferay.com/web/pankaj.kathiriya/blog/-/blogs/usage-of-liferay-js-object

[2] gCube Portal Manager API: https://wiki.gcube-system.org/gcube/Portal_Context

[3] gCube UsersManagement Library https://wiki.gcube-system.org/gcube/UserManagement_Core#UserManager_APIs