66ae19d9c8b4e3a6fd156e73fa3ef276701e7e59
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / externaltools / variable / UrlExpander.java
1 package net.sourceforge.phpdt.externaltools.variable;
2
3 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
4
5 import org.eclipse.core.runtime.IPath;
6 import org.eclipse.jface.preference.IPreferenceStore;
7
8 /**
9  * Expands a variable into a localhost/documentRoot URL string 
10  * <p>
11  * This class is not intended to be extended by clients.
12  * </p>
13  */
14 public class UrlExpander extends ResourceExpander { //implements IVariableTextExpander {
15
16   /**
17    * Create an instance
18    */
19   public UrlExpander() {
20     super();
21   }
22
23   /**
24    * Returns a string representation to a localhost/documentRoot URL 
25    * for the given variable tag and value or <code>null</code>.
26    * 
27    * @see IVariableTextExpander#getText(String, String, ExpandVariableContext)
28    */
29   public String getText(String varTag, String varValue, ExpandVariableContext context) {
30     IPath path = getPath(varTag, varValue, context);
31     if (path != null) {
32       IPreferenceStore store = PHPeclipsePlugin.getDefault().getPreferenceStore();
33       String localhostURL = path.toString();
34       String lowerCaseFileName = localhostURL.toLowerCase();
35       String documentRoot = store.getString(PHPeclipsePlugin.PHP_DOCUMENTROOT_PREF);
36       documentRoot = documentRoot.replace('\\', '/');
37       documentRoot = documentRoot.toLowerCase();
38
39       if (lowerCaseFileName.startsWith(documentRoot)) {
40         localhostURL = localhostURL.substring(documentRoot.length());
41         localhostURL = store.getString(PHPeclipsePlugin.PHP_LOCALHOST_PREF)+ localhostURL;
42       }
43       return localhostURL;
44     }
45     return "<no file selected>";
46   }
47
48 }