View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
4   //  ------------------------------------------------------------------------
5   //  All rights reserved. This program and the accompanying materials
6   //  are made available under the terms of the Eclipse Public License v1.0
7   //  and Apache License v2.0 which accompanies this distribution.
8   //
9   //      The Eclipse Public License is available at
10  //      http://www.eclipse.org/legal/epl-v10.html
11  //
12  //      The Apache License v2.0 is available at
13  //      http://www.opensource.org/licenses/apache2.0.php
14  //
15  //  You may elect to redistribute this code under either of these licenses.
16  //  ========================================================================
17  //
18  
19  package org.eclipse.jetty.rewrite.handler;
20  
21  import java.io.IOException;
22  import javax.servlet.http.HttpServletRequest;
23  import javax.servlet.http.HttpServletResponse;
24  
25  import org.eclipse.jetty.http.HttpURI;
26  import org.eclipse.jetty.http.PathMap;
27  import org.eclipse.jetty.server.Request;
28  import org.eclipse.jetty.util.URIUtil;
29  
30  /**
31   * Rewrite the URI by replacing the matched {@link PathMap} path with a fixed string.
32   */
33  public class RewritePatternRule extends PatternRule implements Rule.ApplyURI
34  {
35      private String _replacement;
36      private String _query;
37  
38      /* ------------------------------------------------------------ */
39      public RewritePatternRule()
40      {
41          _handling = false;
42          _terminating = false;
43      }
44  
45      /* ------------------------------------------------------------ */
46      /**
47       * Whenever a match is found, it replaces with this value.
48       *
49       * @param replacement the replacement string.
50       */
51      public void setReplacement(String replacement)
52      {
53          String[] split = replacement.split("\\?", 2);
54          _replacement = split[0];
55          _query = split.length == 2 ? split[1] : null;
56      }
57  
58      /* ------------------------------------------------------------ */
59      /*
60       * (non-Javadoc)
61       *
62       * @see org.eclipse.jetty.server.handler.rules.RuleBase#apply(javax.servlet.http.HttpServletRequest,
63       * javax.servlet.http.HttpServletResponse)
64       */
65      @Override
66      public String apply(String target, HttpServletRequest request, HttpServletResponse response) throws IOException
67      {
68          target = URIUtil.addPaths(_replacement, PathMap.pathInfo(_pattern, target));
69          return target;
70      }
71  
72      /* ------------------------------------------------------------ */
73  
74      /**
75       * This method will add _query to the requests's queryString and also combine it with existing queryStrings in
76       * the request. However it won't take care for duplicate. E.g. if request.getQueryString contains a parameter
77       * "param1 = true" and _query will contain "param1=false" the result will be param1=true&param1=false.
78       * To cover this use case some more complex pattern matching is necessary. We can implement this if there's use
79       * cases.
80       *
81       * @param request
82       * @param oldTarget
83       * @param newTarget
84       * @throws IOException
85       */
86      @Override
87      public void applyURI(Request request, String oldTarget, String newTarget) throws IOException
88      {
89          if (_query == null)
90          {
91              request.setRequestURI(newTarget);
92          }
93          else
94          {
95              String queryString = request.getQueryString();
96              if (queryString != null)
97                  queryString = queryString + "&" + _query;
98              else
99                  queryString = _query;
100             HttpURI uri = new HttpURI(newTarget + "?" + queryString);
101             request.setUri(uri);
102             request.setRequestURI(newTarget);
103             request.setQueryString(queryString);
104         }
105     }
106 
107     /* ------------------------------------------------------------ */
108     /**
109      * Returns the replacement string.
110      */
111     @Override
112     public String toString()
113     {
114         return super.toString()+"["+_replacement+"]";
115     }
116 }