/* * © Copyright IBM Corp. 2010 * * 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 com.ibm.xsp.sbtsdk.resources; import java.net.URL; import javax.servlet.http.HttpServletRequest; import com.ibm.sbt.web.SbtWebActivator; import com.ibm.xsp.extlib.minifier.SBTLoader; import com.ibm.xsp.extlib.plugin.DominoPluginActivator; import com.ibm.xsp.extlib.util.ExtLibUtil; import com.ibm.xsp.sbtsdk.Activator; import com.ibm.xsp.webapp.FacesResourceServlet; import com.ibm.xsp.webapp.resources.BundleResourceProvider; /** * SBT resource provider. * * @author priand */ public class SbtResourceProvider extends BundleResourceProvider { public static final String SBT_PREFIX = ".sbtsdk"; // $NON-NLS-1$ // Resource Path public static final String RESOURCE_PATH = FacesResourceServlet.RESOURCE_PREFIX // "/.ibmxspres/" + SBT_PREFIX; // ".sbtsdk" public SbtResourceProvider() { super(DominoPluginActivator.instance.getBundle(),SBT_PREFIX); } @Override protected URL getResourceURL(HttpServletRequest request, String name) { if(name.startsWith("bootstrap/")) { return ExtLibUtil.getResourceURL(Activator.instance.getBundle(), "resources/"+name); } if(name.startsWith("js/sdk/_bridge/")) { if(ExtLibUtil.isXPages853()) { name = "js/sdk/_bridges/dojo/"+name.substring("js/sdk/_bridge/".length()); } else { name = "js/sdk/_bridges/dojo-amd/"+name.substring("js/sdk/_bridge/".length()); } } if(ExtLibUtil.isXPages853()) { // We seem to be here with 853 only? if(name.startsWith("js/sdk/sbt/_bridge/")) { name = "js/sdk/_bridges/dojo/"+name.substring("js/sdk/sbt/_bridge/".length()); } } String path = SbtLoader.BASE_WEBRESOURCE_PATH+name; return ExtLibUtil.getResourceURL(SbtWebActivator.instance.getBundle(), path); } }