Bump version
[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.grouptree.User;\r
52 import gr.grnet.pithos.web.client.rest.PostRequest;\r
53 import gr.grnet.pithos.web.client.rest.RestException;\r
54 \r
55 /**\r
56  * The 'Folder properties' dialog box implementation.\r
57  */\r
58 public class AddUserDialog extends DialogBox {\r
59 \r
60     protected Pithos app;\r
61 \r
62     Group group;\r
63     /**\r
64      * The widget that holds the folderName of the folder.\r
65      */\r
66     TextBox userDisplayNameTextBox = new TextBox();\r
67 \r
68     final VerticalPanel inner;\r
69 \r
70     /**\r
71      * The widget's constructor.\r
72      */\r
73     public AddUserDialog(final Pithos app, Group _group) {\r
74         this.app = app;\r
75         this.group = _group;\r
76 \r
77         Anchor close = new Anchor("close");\r
78         close.addStyleName("close");\r
79         close.addClickHandler(new ClickHandler() {\r
80 \r
81             @Override\r
82             public void onClick(ClickEvent event) {\r
83                 hide();\r
84             }\r
85         });\r
86 \r
87         setGlassEnabled(true);\r
88         setStyleName("pithos-DialogBox");\r
89 \r
90         // Enable IE selection for the dialog (must disable it upon closing it)\r
91         Pithos.enableIESelection();\r
92 \r
93         // Use this opportunity to set the dialog's caption.\r
94         setText("Add user");\r
95 \r
96         // Outer contains inner and buttons\r
97         VerticalPanel outer = new VerticalPanel();\r
98         outer.add(close);\r
99         // Inner contains generalPanel and permPanel\r
100         inner = new VerticalPanel();\r
101         inner.addStyleName("inner");\r
102 \r
103         VerticalPanel generalPanel = new VerticalPanel();\r
104         FlexTable generalTable = new FlexTable();\r
105         generalTable.setText(0, 0, "Username");\r
106 \r
107         generalTable.setWidget(0, 1, userDisplayNameTextBox);\r
108 \r
109         generalTable.getFlexCellFormatter().setStyleName(0, 0, "props-labels");\r
110         generalTable.getFlexCellFormatter().setStyleName(0, 1, "props-values");\r
111         generalTable.setCellSpacing(4);\r
112         generalPanel.add(generalTable);\r
113         inner.add(generalPanel);\r
114 \r
115         outer.add(inner);\r
116 \r
117         // Create the 'Create/Update' button, along with a listener that hides the dialog\r
118         // when the button is clicked and quits the application.\r
119         String okLabel = "Create";\r
120         final Button ok = new Button(okLabel, new ClickHandler() {\r
121             @Override\r
122             public void onClick(ClickEvent event) {\r
123                 addUser();\r
124                 closeDialog();\r
125             }\r
126         });\r
127         ok.addStyleName("button");\r
128         outer.add(ok);\r
129         outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);\r
130 \r
131         setWidget(outer);\r
132     }\r
133 \r
134     @Override\r
135     public void center() {\r
136         super.center();\r
137         userDisplayNameTextBox.setFocus(true);\r
138     }\r
139 \r
140     @Override\r
141     protected void onPreviewNativeEvent(NativePreviewEvent preview) {\r
142         super.onPreviewNativeEvent(preview);\r
143 \r
144         NativeEvent evt = preview.getNativeEvent();\r
145         if(evt.getType().equals(KeyDownEvent.getType().getName()))\r
146         // Use the popup's key preview hooks to close the dialog when either\r
147         // enter or escape is pressed.\r
148         {\r
149             switch(evt.getKeyCode()) {\r
150                 case KeyCodes.KEY_ENTER:\r
151                     addUser();\r
152                     closeDialog();\r
153                     break;\r
154                 case KeyCodes.KEY_ESCAPE:\r
155                     closeDialog();\r
156                     break;\r
157             }\r
158         }\r
159     }\r
160 \r
161 \r
162     /**\r
163      * Enables IE selection prevention and hides the dialog\r
164      * (we disable the prevention on creation of the dialog)\r
165      */\r
166     public void closeDialog() {\r
167         Pithos.preventIESelection();\r
168         hide();\r
169     }\r
170 \r
171     /**\r
172      * Generate an RPC request to create a new folder.\r
173      */\r
174     void addUser() {\r
175         final String userDisplayName = userDisplayNameTextBox.getText().trim();\r
176         if(userDisplayName.length() == 0) {\r
177             return;\r
178         }\r
179         if(!Const.EMAIL_REGEX.test(userDisplayName)) {\r
180             app.displayWarning("Username must be a valid email address");\r
181             return;\r
182         }\r
183 \r
184         // Now get the userID\r
185         final String userID = app.getUserIDForDisplayName(userDisplayName);\r
186         if(userID != null) {\r
187             doAddUser(userID, userDisplayName);\r
188         }\r
189         else {\r
190             // Must call server to obtain userID\r
191             new UpdateUserCatalogs(app, null, Helpers.toList(userDisplayName)) {\r
192                 @Override\r
193                 public void onSuccess(UserCatalogs requestedUserCatalogs, UserCatalogs updatedUserCatalogs) {\r
194                     final String userID = updatedUserCatalogs.getUserID(userDisplayName);\r
195                     if(userID != null) {\r
196                         doAddUser(userID, userDisplayName);\r
197                     }\r
198                     else {\r
199                         app.displayError("Unknown user " + userDisplayName);\r
200                     }\r
201                 }\r
202             }.scheduleDeferred();\r
203         }\r
204     }\r
205 \r
206     private void doAddUser(String userID, String userDisplayName) {\r
207         final User newUser = new User(userID, userDisplayName, group.getName());\r
208         app.LOG("doAddUser() ", newUser);\r
209         group.addUser(newUser);\r
210         final String path = "?update=";\r
211         PostRequest updateGroup = new PostRequest(app, app.getApiPath(), app.getUserID(), path) {\r
212             @Override\r
213             public void onSuccess(Resource result) {\r
214                 app.updateGroupNode(group);\r
215             }\r
216 \r
217             @Override\r
218             public void onError(Throwable t) {\r
219                 GWT.log("", t);\r
220                 app.setError(t);\r
221                 if(t instanceof RestException) {\r
222                     app.displayError("Unable to update group:" + ((RestException) t).getHttpStatusText());\r
223                 }\r
224                 else {\r
225                     app.displayError("System error updating group:" + t.getMessage());\r
226                 }\r
227             }\r
228 \r
229             @Override\r
230             protected void onUnauthorized(Response response) {\r
231                 app.sessionExpired();\r
232             }\r
233         };\r
234         updateGroup.setHeader(Const.X_AUTH_TOKEN, app.getUserToken());\r
235         final String groupMembers = group.encodeUserIDsForXAccountGroup();\r
236         updateGroup.setHeader(Const.X_ACCOUNT_GROUP_ + URL.encodePathSegment(group.getName()), groupMembers);\r
237         Scheduler.get().scheduleDeferred(updateGroup);\r
238     }\r
239 }\r