26331e6fec69d83494ca993d8b1aafd61a8c3ba5
[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.photos.model.plumbing.AuthorizedPhotos;
28 import org.wamblee.security.authentication.User;
29 import org.wamblee.security.authentication.UserAdministration;
30
31 /**
32  * Homepage
33  */
34 public class HomePage extends BasePage {
35
36     private static final long serialVersionUID = 1L;
37
38     @Inject
39     private User user;
40
41     @Inject
42     private UserAdministration userAdmin;
43
44     @Inject
45     @AllPhotos
46     private Album album;
47
48     @Inject
49     @AuthorizedPhotos
50     private Album authorized;
51
52     /**
53      * Constructor that is invoked when page is invoked without a session.
54      *
55      * @param parameters 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() + " " + entry.getPath());
73         }
74
75         System.out.println("Authorized Entries: " + authorized.size());
76         for (int i = 0; i < authorized.size(); i++) {
77             PhotoEntry entry = authorized.getEntry(i);
78             System.out.println("Entry " + i + " " + entry.getId() + " " + entry.getPath());
79         }
80     }
81 }