org.icefaces.ace.component.gmap.GMapResourceHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icefaces-ace Show documentation
Show all versions of icefaces-ace Show documentation
${icefaces.product.name} ACE Component Library
The newest version!
/*
* Copyright 2004-2014 ICEsoft Technologies Canada Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an "AS
* IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package org.icefaces.ace.component.gmap;
import org.icefaces.impl.util.Base64;
import org.icefaces.impl.util.Util;
import org.icefaces.util.EnvUtils;
import javax.faces.application.Resource;
import javax.faces.application.ResourceHandler;
import javax.faces.application.ResourceHandlerWrapper;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import javax.faces.event.AbortProcessingException;
import javax.faces.event.PreRenderViewEvent;
import javax.faces.event.SystemEvent;
import javax.faces.event.SystemEventListener;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
public class GMapResourceHandler extends ResourceHandlerWrapper {
private static final String GMAP_API = "gmap/api.js";
private static final String ICEFACES_ACE_LIB = "icefaces.ace";
private static final byte[] NO_BYTES = new byte[0];
private ResourceHandler handler;
private String gmapKey;
private String gmapVersion;
private Resource apiJS = null;
public GMapResourceHandler(ResourceHandler handler) {
this.handler = handler;
FacesContext facesContext = FacesContext.getCurrentInstance();
gmapKey = facesContext.getExternalContext().getInitParameter("org.icefaces.ace.gmapKey");
gmapVersion = facesContext.getExternalContext().getInitParameter("org.icefaces.ace.gmapVersion");
}
public ResourceHandler getWrapped() {
return handler;
}
public Resource createResource(String resourceName) {
return createResource(resourceName, null, null);
}
public Resource createResource(String resourceName, String libraryName) {
return createResource(resourceName, libraryName, null);
}
public Resource createResource(String resourceName, String libraryName, String contentType) {
if (GMAP_API.equals(resourceName) && gmapKey != null) {
if (apiJS == null) {
String v = gmapVersion == null ? "&v=3.exp" : gmapVersion.trim().equals("") ? "&v=3.exp" : "&v=" + gmapVersion;
if (!EnvUtils.isSecure(FacesContext.getCurrentInstance()))
apiJS = recreateResource(super.createResource(resourceName, ICEFACES_ACE_LIB),
"http://maps.googleapis.com/maps/api/js?key=" + gmapKey + v + "&libraries=places");
else
apiJS = recreateResource(super.createResource(resourceName, ICEFACES_ACE_LIB),
"https://maps.googleapis.com/maps/api/js?key=" + gmapKey + v + "&libraries=places");
}
return apiJS;
} else {
return super.createResource(resourceName, libraryName, contentType);
}
}
private Resource recreateResource(Resource resource, String url) {
return new ResourceEntry(GMAP_API, url);
}
private class ResourceEntry extends Resource {
private Date lastModified = new Date();
private String localPath;
private String requestPath;
private ResourceEntry(String localPath, String requestPath) {
this.localPath = localPath;
this.requestPath = requestPath;
}
public String getLibraryName() {
return ICEFACES_ACE_LIB;
}
public String getResourceName() {
return GMAP_API;
}
public InputStream getInputStream() throws IOException {
return new ByteArrayInputStream(NO_BYTES);
}
public Map getResponseHeaders() {
return Collections.emptyMap();
}
public String getContentType() {
return "text/javascript";
}
public String getRequestPath() {
return requestPath;
}
public URL getURL() {
try {
return FacesContext.getCurrentInstance().getExternalContext().getResource(localPath);
} catch (MalformedURLException e) {
throw new RuntimeException(e);
}
}
public boolean userAgentNeedsUpdate(FacesContext context) {
try {
Date modifiedSince = Util.parseHTTPDate(context.getExternalContext().getRequestHeaderMap().get("If-Modified-Since"));
return lastModified.getTime() > modifiedSince.getTime() + 1000;
} catch (Throwable e) {
return true;
}
}
private String eTag() {
return Base64.encode(String.valueOf(localPath.hashCode()));
}
}
}