]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - org.argeo.cms/src/org/argeo/cms/util/CmsUtils.java
Log out kernel after authorisation in order not to propagate access context
[lgpl/argeo-commons.git] / org.argeo.cms / src / org / argeo / cms / util / CmsUtils.java
index 0eda74f53496be9ade00a176f3e05276c991f46c..6011345d1dc6ca716b2512b93c5d62fc7d626e5f 100644 (file)
@@ -1,15 +1,21 @@
 package org.argeo.cms.util;
 
+import static org.argeo.cms.internal.kernel.KernelConstants.WEBDAV_PUBLIC;
+import static org.argeo.jcr.ArgeoJcrConstants.ALIAS_NODE;
+
 import java.io.InputStream;
 
 import javax.jcr.Item;
 import javax.jcr.Node;
 import javax.jcr.Property;
 import javax.jcr.RepositoryException;
+import javax.servlet.http.HttpServletRequest;
 
 import org.apache.commons.io.IOUtils;
 import org.argeo.cms.CmsConstants;
 import org.argeo.cms.CmsException;
+import org.argeo.cms.CmsView;
+import org.argeo.eclipse.ui.specific.UiContext;
 import org.argeo.jcr.JcrUtils;
 import org.eclipse.rap.rwt.RWT;
 import org.eclipse.rap.rwt.service.ResourceManager;
@@ -28,6 +34,33 @@ import org.eclipse.swt.widgets.Widget;
 
 /** Static utilities for the CMS framework. */
 public class CmsUtils implements CmsConstants {
+       /**
+        * The CMS view related to this display, or null if none is available from
+        * this call.
+        */
+       public static CmsView getCmsView() {
+               return UiContext.getData(CmsView.KEY);
+       }
+
+       public static String getDataUrl(Node node, HttpServletRequest request)
+                       throws RepositoryException {
+               return request.getRequestURL().append(getDataPath(node).substring(1))
+                               .toString();
+       }
+
+       public static String getDataPath(Node node) throws RepositoryException {
+               return new StringBuilder().append(WEBDAV_PUBLIC).append('/')
+                               .append(ALIAS_NODE + "/")
+                               .append(node.getSession().getWorkspace().getName())
+                               .append(node.getPath()).toString();
+       }
+
+       public static String getCanonicalUrl(Node node, HttpServletRequest request)
+                       throws RepositoryException {
+               return request.getRequestURL().append('!').append(node.getPath())
+                               .toString();
+       }
+
        /** @deprecated Use rowData16px() instead. GridData should not be reused. */
        @Deprecated
        public static RowData ROW_DATA_16px = new RowData(16, 16);