dde authorization rules and authorized album.
[photos] / src / main / java / org / wamblee / photos / wicket / HomePage.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.photos.wicket;
17
18 import java.util.List;
19
20 import javax.inject.Inject;
21
22 import org.apache.wicket.PageParameters;
23 import org.apache.wicket.markup.html.basic.Label;
24 import org.wamblee.photos.model.Album;
25 import org.wamblee.photos.model.PhotoEntry;
26 import org.wamblee.photos.model.plumbing.AllPhotos;
27 import org.wamblee.security.authentication.User;
28 import org.wamblee.security.authentication.UserAdministration;
29
30 /**
31  * Homepage
32  */
33 public class HomePage extends BasePage {
34
35     private static final long serialVersionUID = 1L;
36
37     @Inject
38     private User user;
39
40     @Inject
41     private UserAdministration userAdmin;
42
43     @Inject
44     @AllPhotos
45     private Album album;
46
47     // @Inject
48     // @AuthorizedPhotos
49     // private Album authorized;
50
51     /**
52      * Constructor that is invoked when page is invoked without a session.
53      * 
54      * @param parameters
55      *            Page parameters
56      */
57     public HomePage(final PageParameters parameters) throws Exception {
58         super();
59         add(new Label("message", "Hello world!"));
60
61         System.out.println("Currently logged in user: " + user);
62
63         List<String> usernames = userAdmin.getUsers();
64         System.out.println("All user names: " + usernames);
65
66         usernames = userAdmin.getUsers("public");
67         System.out.println("Users in group public: " + usernames);
68
69         System.out.println("Entries: " + album.size());
70         for (int i = 0; i < album.size(); i++) {
71             PhotoEntry entry = album.getEntry(i);
72             System.out.println("Entry " + i + " " + entry.getId() + " " +
73                 entry.getPath());
74         }
75
76         /*
77         System.out.println("Authorized Entries: " + authorized.size());
78         for (int i = 0; i < authorized.size(); i++) {
79             PhotoEntry entry = authorized.getEntry(i);
80             System.out.println("Entry " + i + " " + entry.getId() + " " +
81                 entry.getPath());
82         }
83         */
84     }
85 }