Show display names in group members tree
[pithos-web-client] / src / gr / grnet / pithos / web / client / AddUserDialog.java
1 /*\r
2  * Copyright 2011-2012 GRNET S.A. All rights reserved.\r
3  *\r
4  * Redistribution and use in source and binary forms, with or\r
5  * without modification, are permitted provided that the following\r
6  * conditions are met:\r
7  *\r
8  *   1. Redistributions of source code must retain the above\r
9  *      copyright notice, this list of conditions and the following\r
10  *      disclaimer.\r
11  *\r
12  *   2. Redistributions in binary form must reproduce the above\r
13  *      copyright notice, this list of conditions and the following\r
14  *      disclaimer in the documentation and/or other materials\r
15  *      provided with the distribution.\r
16  *\r
17  * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS\r
18  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
20  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR\r
21  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\r
24  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\r
25  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\r
27  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
28  * POSSIBILITY OF SUCH DAMAGE.\r
29  *\r
30  * The views and conclusions contained in the software and\r
31  * documentation are those of the authors and should not be\r
32  * interpreted as representing official policies, either expressed\r
33  * or implied, of GRNET S.A.\r
34  */\r
35 package gr.grnet.pithos.web.client;\r
36 \r
37 import com.google.gwt.core.client.GWT;\r
38 import com.google.gwt.core.client.Scheduler;\r
39 import com.google.gwt.dom.client.NativeEvent;\r
40 import com.google.gwt.event.dom.client.ClickEvent;\r
41 import com.google.gwt.event.dom.client.ClickHandler;\r
42 import com.google.gwt.event.dom.client.KeyCodes;\r
43 import com.google.gwt.event.dom.client.KeyDownEvent;\r
44 import com.google.gwt.http.client.Response;\r
45 import com.google.gwt.http.client.URL;\r
46 import com.google.gwt.user.client.Event.NativePreviewEvent;\r
47 import com.google.gwt.user.client.ui.*;\r
48 import gr.grnet.pithos.web.client.catalog.UpdateUserCatalogs;\r
49 import gr.grnet.pithos.web.client.catalog.UserCatalogs;\r
50 import gr.grnet.pithos.web.client.grouptree.Group;\r
51 import gr.grnet.pithos.web.client.rest.PostRequest;\r
52 import gr.grnet.pithos.web.client.rest.RestException;\r
53 \r
54 import java.util.Arrays;\r
55 \r
56 /**\r
57  * The 'Folder properties' dialog box implementation.\r
58  */\r
59 public class AddUserDialog extends DialogBox {\r
60 \r
61     protected Pithos app;\r
62 \r
63     Group group;\r
64     /**\r
65      * The widget that holds the folderName of the folder.\r
66      */\r
67     TextBox userNameInput = new TextBox();\r
68 \r
69     final VerticalPanel inner;\r
70 \r
71     /**\r
72      * The widget's constructor.\r
73      */\r
74     public AddUserDialog(final Pithos app, Group _group) {\r
75         this.app = app;\r
76         this.group = _group;\r
77 \r
78         Anchor close = new Anchor("close");\r
79         close.addStyleName("close");\r
80         close.addClickHandler(new ClickHandler() {\r
81 \r
82             @Override\r
83             public void onClick(ClickEvent event) {\r
84                 hide();\r
85             }\r
86         });\r
87 \r
88         setGlassEnabled(true);\r
89         setStyleName("pithos-DialogBox");\r
90 \r
91         // Enable IE selection for the dialog (must disable it upon closing it)\r
92         Pithos.enableIESelection();\r
93 \r
94         // Use this opportunity to set the dialog's caption.\r
95         setText("Add user");\r
96 \r
97         // Outer contains inner and buttons\r
98         VerticalPanel outer = new VerticalPanel();\r
99         outer.add(close);\r
100         // Inner contains generalPanel and permPanel\r
101         inner = new VerticalPanel();\r
102         inner.addStyleName("inner");\r
103 \r
104         VerticalPanel generalPanel = new VerticalPanel();\r
105         FlexTable generalTable = new FlexTable();\r
106         generalTable.setText(0, 0, "Username");\r
107 \r
108         generalTable.setWidget(0, 1, userNameInput);\r
109 \r
110         generalTable.getFlexCellFormatter().setStyleName(0, 0, "props-labels");\r
111         generalTable.getFlexCellFormatter().setStyleName(0, 1, "props-values");\r
112         generalTable.setCellSpacing(4);\r
113         generalPanel.add(generalTable);\r
114         inner.add(generalPanel);\r
115 \r
116         outer.add(inner);\r
117 \r
118         // Create the 'Create/Update' button, along with a listener that hides the dialog\r
119         // when the button is clicked and quits the application.\r
120         String okLabel = "Create";\r
121         final Button ok = new Button(okLabel, new ClickHandler() {\r
122             @Override\r
123             public void onClick(ClickEvent event) {\r
124                 addUser();\r
125                 closeDialog();\r
126             }\r
127         });\r
128         ok.addStyleName("button");\r
129         outer.add(ok);\r
130         outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);\r
131 \r
132         setWidget(outer);\r
133     }\r
134 \r
135     @Override\r
136     public void center() {\r
137         super.center();\r
138         userNameInput.setFocus(true);\r
139     }\r
140 \r
141     @Override\r
142     protected void onPreviewNativeEvent(NativePreviewEvent preview) {\r
143         super.onPreviewNativeEvent(preview);\r
144 \r
145         NativeEvent evt = preview.getNativeEvent();\r
146         if(evt.getType().equals(KeyDownEvent.getType().getName()))\r
147         // Use the popup's key preview hooks to close the dialog when either\r
148         // enter or escape is pressed.\r
149         {\r
150             switch(evt.getKeyCode()) {\r
151                 case KeyCodes.KEY_ENTER:\r
152                     addUser();\r
153                     closeDialog();\r
154                     break;\r
155                 case KeyCodes.KEY_ESCAPE:\r
156                     closeDialog();\r
157                     break;\r
158             }\r
159         }\r
160     }\r
161 \r
162 \r
163     /**\r
164      * Enables IE selection prevention and hides the dialog\r
165      * (we disable the prevention on creation of the dialog)\r
166      */\r
167     public void closeDialog() {\r
168         Pithos.preventIESelection();\r
169         hide();\r
170     }\r
171 \r
172     private void doAddUserByName(final String userDisplayName) {\r
173         final String userID = app.getIDForUserDisplayName(userDisplayName);\r
174         group.addMemberID(userID);\r
175         String path = "?update=";\r
176         PostRequest updateGroup = new PostRequest(app.getApiPath(), app.getUserID(), path) {\r
177 \r
178             @Override\r
179             public void onSuccess(Resource result) {\r
180                 app.updateGroupNode(group);\r
181             }\r
182 \r
183             @Override\r
184             public void onError(Throwable t) {\r
185                 GWT.log("", t);\r
186                 app.setError(t);\r
187                 if(t instanceof RestException) {\r
188                     app.displayError("Unable to update group:" + ((RestException) t).getHttpStatusText());\r
189                 }\r
190                 else {\r
191                     app.displayError("System error updating group:" + t.getMessage());\r
192                 }\r
193             }\r
194 \r
195             @Override\r
196             protected void onUnauthorized(Response response) {\r
197                 app.sessionExpired();\r
198             }\r
199         };\r
200         updateGroup.setHeader(Const.X_AUTH_TOKEN, app.getUserToken());\r
201         String groupMembers = "";\r
202         for(String u : group.getMemberIDs()) {\r
203             groupMembers += (URL.encodePathSegment(u) + ",");\r
204         }\r
205         updateGroup.setHeader(Const.X_ACCOUNT_GROUP_ + URL.encodePathSegment(group.getName()), groupMembers);\r
206         Scheduler.get().scheduleDeferred(updateGroup);\r
207     }\r
208     /**\r
209      * Generate an RPC request to create a new folder.\r
210      */\r
211     void addUser() {\r
212         final String userDisplayName = userNameInput.getText().trim();\r
213         if(userDisplayName.length() == 0) {\r
214             return;\r
215         }\r
216         if(!Const.EMAIL_REGEX.test(userDisplayName)) {\r
217             app.displayWarning("Username must be a valid email address");\r
218             return;\r
219         }\r
220 \r
221         if(app.hasIDForUserDisplayName(userDisplayName)) {\r
222             doAddUserByName(userDisplayName);\r
223         }\r
224         else {\r
225             new UpdateUserCatalogs(app, null, Arrays.asList(userDisplayName)) {\r
226                 @Override\r
227                 public void onSuccess(UserCatalogs requestedUserCatalogs, UserCatalogs updatedUserCatalogs) {\r
228                     doAddUserByName(userDisplayName);\r
229                 }\r
230             }.scheduleDeferred();\r
231         }\r
232 \r
233 \r
234     }\r
235 }\r