source: AnnotationManagerN4J/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationsUiRestlet.java @ 72:4c2cea836bc0

Last change on this file since 72:4c2cea836bc0 was 72:4c2cea836bc0, checked in by casties, 10 years ago

restlet 2.1 works now. (it's the start() method, stupid!)

File size: 3.3 KB
Line 
1/**
2 *
3 */
4package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
5
6/*
7 * #%L
8 * AnnotationManager
9 * %%
10 * Copyright (C) 2012 - 2014 MPIWG Berlin
11 * %%
12 * This program is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License as
14 * published by the Free Software Foundation, either version 3 of the
15 * License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 * GNU General Lesser Public License for more details.
21 *
22 * You should have received a copy of the GNU General Lesser Public
23 * License along with this program.  If not, see
24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
25 * #L%
26 */
27
28import org.apache.log4j.Logger;
29import org.restlet.Restlet;
30import org.restlet.data.ChallengeScheme;
31import org.restlet.routing.Router;
32import org.restlet.security.ChallengeAuthenticator;
33import org.restlet.security.MapVerifier;
34
35import de.mpiwg.itgroup.annotations.restlet.BaseRestlet;
36
37/**
38 * @author casties
39 *
40 */
41public class AnnotationsUiRestlet extends BaseRestlet {
42
43    public final String version = "AnnotationManagerN4J/AnnotationsUI 0.3";
44
45    public static Logger logger = Logger.getLogger(AnnotationsUiRestlet.class);
46
47    /*
48     * (non-Javadoc)
49     *
50     * @see org.restlet.Application#createInboundRoot()
51     */
52    @Override
53    public Restlet createInboundRoot() {
54        // this.authenticator = createAuthenticator();
55
56        Router router = new Router(getContext());
57
58        router.attach("/groups", GroupsResource.class);
59        router.attach("/groups/", GroupsResource.class);
60        router.attach("/groups/{id}", GroupResource.class);
61        router.attach("/groups/{id}/", GroupResource.class);
62        router.attach("/groups/{id}/members", GroupMembersResource.class);
63        router.attach("/persons", PersonsResource.class);
64        router.attach("/persons/", PersonsResource.class);
65        router.attach("/persons/{id}", PersonResource.class);
66        router.attach("/persons/{id}/", PersonResource.class);
67        router.attach("/annotations", AnnotationsResource.class);
68        router.attach("/annotations/", AnnotationsResource.class);
69        router.attach("/annotations/{id}", AnnotationResource.class);
70        router.attach("/annotations/{id}/", AnnotationResource.class);
71
72        router.attach("/", InfoResource.class);
73
74        // use simple password verifier
75        MapVerifier verifier = new MapVerifier();
76        // get user name and password
77        String user = serverConfig.getProperty(BaseRestlet.ADMIN_USER_KEY);
78        String pw = serverConfig.getProperty(BaseRestlet.ADMIN_PASSWORD_KEY);
79        if (user != null && pw != null) {
80            verifier.getLocalSecrets().put(user, pw.toCharArray());
81        } else {
82            logger.error("Admin user and password missing in serverconfig!");
83        }
84        // Create a Guard
85        ChallengeAuthenticator guard = new ChallengeAuthenticator(getContext(), ChallengeScheme.HTTP_BASIC, "Tutorial");
86        guard.setVerifier(verifier);
87        // put everything through guard
88        guard.setNext(router);
89        return guard;
90    }
91
92    @Override
93    public String getVersion() {
94        return version;
95    }
96
97}
Note: See TracBrowser for help on using the repository browser.