~ubuntu-branches/ubuntu/saucy/restlet/saucy

« back to all changes in this revision

Viewing changes to org.restlet.example/src/org/restlet/example/book/restlet/ch07/sec3/sub2/SearchRedirector.java

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-06-11 16:25:45 UTC
  • Revision ID: package-import@ubuntu.com-20120611162545-5w2o0resi5y3pybc
Tags: upstream-2.0.14
ImportĀ upstreamĀ versionĀ 2.0.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Copyright 2005-2012 Restlet S.A.S.
 
3
 * 
 
4
 * The contents of this file are subject to the terms of one of the following
 
5
 * open source licenses: Apache 2.0 or LGPL 3.0 or LGPL 2.1 or CDDL 1.0 or EPL
 
6
 * 1.0 (the "Licenses"). You can select the license that you prefer but you may
 
7
 * not use this file except in compliance with one of these Licenses.
 
8
 * 
 
9
 * You can obtain a copy of the Apache 2.0 license at
 
10
 * http://www.opensource.org/licenses/apache-2.0
 
11
 * 
 
12
 * You can obtain a copy of the LGPL 3.0 license at
 
13
 * http://www.opensource.org/licenses/lgpl-3.0
 
14
 * 
 
15
 * You can obtain a copy of the LGPL 2.1 license at
 
16
 * http://www.opensource.org/licenses/lgpl-2.1
 
17
 * 
 
18
 * You can obtain a copy of the CDDL 1.0 license at
 
19
 * http://www.opensource.org/licenses/cddl1
 
20
 * 
 
21
 * You can obtain a copy of the EPL 1.0 license at
 
22
 * http://www.opensource.org/licenses/eclipse-1.0
 
23
 * 
 
24
 * See the Licenses for the specific language governing permissions and
 
25
 * limitations under the Licenses.
 
26
 * 
 
27
 * Alternatively, you can obtain a royalty free commercial license with less
 
28
 * limitations, transferable or non-transferable, directly at
 
29
 * http://www.restlet.com/products/restlet-framework
 
30
 * 
 
31
 * Restlet is a registered trademark of Restlet S.A.S.
 
32
 */
 
33
 
 
34
package org.restlet.example.book.restlet.ch07.sec3.sub2;
 
35
 
 
36
import org.restlet.Application;
 
37
import org.restlet.Component;
 
38
import org.restlet.Restlet;
 
39
import org.restlet.data.Protocol;
 
40
import org.restlet.routing.Extractor;
 
41
import org.restlet.routing.Redirector;
 
42
import org.restlet.routing.Router;
 
43
 
 
44
/**
 
45
 * URI rewriting, attribute extraction and redirection.
 
46
 * 
 
47
 * @author Jerome Louvel
 
48
 */
 
49
public class SearchRedirector extends Application {
 
50
 
 
51
    public static void main(String[] args) throws Exception {
 
52
        // Create a component
 
53
        Component component = new Component();
 
54
        component.getServers().add(Protocol.HTTP, 8111);
 
55
 
 
56
        // Create an application
 
57
        Application application = new SearchRedirector();
 
58
 
 
59
        // Attach the application to the component and start it
 
60
        component.getDefaultHost().attachDefault(application);
 
61
        component.start();
 
62
    }
 
63
 
 
64
    @Override
 
65
    public Restlet createInboundRoot() {
 
66
        // Create a root router
 
67
        Router router = new Router(getContext());
 
68
 
 
69
        // Create a Redirector to Google search service
 
70
        String target = "http://www.google.com/search?q=site:mysite.org+{keywords}";
 
71
        Redirector redirector = new Redirector(getContext(), target,
 
72
                Redirector.MODE_CLIENT_TEMPORARY);
 
73
 
 
74
        // While routing requests to the redirector, extract the "kwd" query
 
75
        // parameter. For instance :
 
76
        // http://localhost:8111/search?kwd=myKeyword1+myKeyword2
 
77
        // will be routed to
 
78
        // http://www.google.com/search?q=site:mysite.org+myKeyword1%20myKeyword2
 
79
        Extractor extractor = new Extractor(getContext(), redirector);
 
80
        extractor.extractFromQuery("keywords", "kwd", true);
 
81
 
 
82
        // Attach the extractor to the router
 
83
        router.attach("/search", extractor);
 
84
 
 
85
        // Return the root router
 
86
        return router;
 
87
    }
 
88
 
 
89
}