annotate src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationsUiRestlet.java @ 70:2b1e6df5e21a

added lgpl_v3 license information.
author casties
date Thu, 06 Mar 2014 15:09:04 +0100
parents fc4c23247bb5
children 4c2cea836bc0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
1 /**
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
2 *
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
3 */
23
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
4 package de.mpiwg.itgroup.annotations.restlet.annotations_ui;
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
5
70
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
6 /*
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
7 * #%L
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
8 * AnnotationManager
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
9 * %%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
10 * Copyright (C) 2012 - 2014 MPIWG Berlin
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
11 * %%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
12 * This program is free software: you can redistribute it and/or modify
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
13 * it under the terms of the GNU Lesser General Public License as
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
14 * published by the Free Software Foundation, either version 3 of the
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
15 * License, or (at your option) any later version.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
16 *
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
17 * This program is distributed in the hope that it will be useful,
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
20 * GNU General Lesser Public License for more details.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
21 *
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
22 * You should have received a copy of the GNU General Lesser Public
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
23 * License along with this program. If not, see
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
24 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
25 * #L%
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
26 */
2b1e6df5e21a added lgpl_v3 license information.
casties
parents: 53
diff changeset
27
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
28 import org.apache.log4j.Logger;
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
29 import org.restlet.Context;
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
30 import org.restlet.Restlet;
49
f30f42080711 first steps for authorization for annotations ui.
casties
parents: 34
diff changeset
31 import org.restlet.data.ChallengeScheme;
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
32 import org.restlet.routing.Router;
49
f30f42080711 first steps for authorization for annotations ui.
casties
parents: 34
diff changeset
33 import org.restlet.security.ChallengeAuthenticator;
f30f42080711 first steps for authorization for annotations ui.
casties
parents: 34
diff changeset
34 import org.restlet.security.MapVerifier;
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
35
23
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
36 import de.mpiwg.itgroup.annotations.restlet.BaseRestlet;
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
37
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
38 /**
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
39 * @author casties
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
40 *
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
41 */
23
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
42 public class AnnotationsUiRestlet extends BaseRestlet {
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
43
50
64aa756c60cc annotations ui can show and delete annotations now.
casties
parents: 49
diff changeset
44 public final String version = "AnnotationManagerN4J/AnnotationsUI 0.3";
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
45
23
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
46 public static Logger logger = Logger.getLogger(AnnotationsUiRestlet.class);
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
47
23
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
48 public AnnotationsUiRestlet(Context context) {
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
49 super(context);
50
64aa756c60cc annotations ui can show and delete annotations now.
casties
parents: 49
diff changeset
50 logger.info(version);
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
51 }
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
52
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
53 /*
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
54 * (non-Javadoc)
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
55 *
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
56 * @see org.restlet.Application#createInboundRoot()
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
57 */
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
58 @Override
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
59 public Restlet createInboundRoot() {
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
60 // this.authenticator = createAuthenticator();
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
61
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
62 Router router = new Router(getContext());
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
63
23
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
64 router.attach("/groups", GroupsResource.class);
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
65 router.attach("/groups/", GroupsResource.class);
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
66 router.attach("/groups/{id}", GroupResource.class);
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
67 router.attach("/groups/{id}/", GroupResource.class);
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
68 router.attach("/groups/{id}/members", GroupMembersResource.class);
32
0731c4549065 UI for editing groups and persons works now. (still no authorisation!)
casties
parents: 23
diff changeset
69 router.attach("/persons", PersonsResource.class);
0731c4549065 UI for editing groups and persons works now. (still no authorisation!)
casties
parents: 23
diff changeset
70 router.attach("/persons/", PersonsResource.class);
0731c4549065 UI for editing groups and persons works now. (still no authorisation!)
casties
parents: 23
diff changeset
71 router.attach("/persons/{id}", PersonResource.class);
0731c4549065 UI for editing groups and persons works now. (still no authorisation!)
casties
parents: 23
diff changeset
72 router.attach("/persons/{id}/", PersonResource.class);
50
64aa756c60cc annotations ui can show and delete annotations now.
casties
parents: 49
diff changeset
73 router.attach("/annotations", AnnotationsResource.class);
64aa756c60cc annotations ui can show and delete annotations now.
casties
parents: 49
diff changeset
74 router.attach("/annotations/", AnnotationsResource.class);
64aa756c60cc annotations ui can show and delete annotations now.
casties
parents: 49
diff changeset
75 router.attach("/annotations/{id}", AnnotationResource.class);
64aa756c60cc annotations ui can show and delete annotations now.
casties
parents: 49
diff changeset
76 router.attach("/annotations/{id}/", AnnotationResource.class);
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
77
23
d22d01ba953a reorganised code for annotations and groups ui. work in progress.
casties
parents: 22
diff changeset
78 router.attach("/", InfoResource.class);
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
79
50
64aa756c60cc annotations ui can show and delete annotations now.
casties
parents: 49
diff changeset
80 // use simple password verifier
49
f30f42080711 first steps for authorization for annotations ui.
casties
parents: 34
diff changeset
81 MapVerifier verifier = new MapVerifier();
50
64aa756c60cc annotations ui can show and delete annotations now.
casties
parents: 49
diff changeset
82 // get user name and password
64aa756c60cc annotations ui can show and delete annotations now.
casties
parents: 49
diff changeset
83 String user = serverConfig.getProperty(BaseRestlet.ADMIN_USER_KEY);
64aa756c60cc annotations ui can show and delete annotations now.
casties
parents: 49
diff changeset
84 String pw = serverConfig.getProperty(BaseRestlet.ADMIN_PASSWORD_KEY);
53
fc4c23247bb5 don't crash if admin user missing in config.
casties
parents: 50
diff changeset
85 if (user != null && pw != null) {
fc4c23247bb5 don't crash if admin user missing in config.
casties
parents: 50
diff changeset
86 verifier.getLocalSecrets().put(user, pw.toCharArray());
fc4c23247bb5 don't crash if admin user missing in config.
casties
parents: 50
diff changeset
87 } else {
fc4c23247bb5 don't crash if admin user missing in config.
casties
parents: 50
diff changeset
88 logger.error("Admin user and password missing in serverconfig!");
fc4c23247bb5 don't crash if admin user missing in config.
casties
parents: 50
diff changeset
89 }
49
f30f42080711 first steps for authorization for annotations ui.
casties
parents: 34
diff changeset
90 // Create a Guard
f30f42080711 first steps for authorization for annotations ui.
casties
parents: 34
diff changeset
91 ChallengeAuthenticator guard = new ChallengeAuthenticator(getContext(), ChallengeScheme.HTTP_BASIC, "Tutorial");
f30f42080711 first steps for authorization for annotations ui.
casties
parents: 34
diff changeset
92 guard.setVerifier(verifier);
f30f42080711 first steps for authorization for annotations ui.
casties
parents: 34
diff changeset
93 // put everything through guard
f30f42080711 first steps for authorization for annotations ui.
casties
parents: 34
diff changeset
94 guard.setNext(router);
f30f42080711 first steps for authorization for annotations ui.
casties
parents: 34
diff changeset
95 return guard;
18
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
96 }
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
97
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
98 @Override
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
99 public String getVersion() {
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
100 return version;
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
101 }
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
102
aafa3884b2c4 new AnnotationStore restlet for HTML-UI.
casties
parents:
diff changeset
103 }