annotate src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationsUiRestlet.java @ 93:3d1a00418b42 admin_ui_rel_links

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