Show display name in FolderPropertiesDialog
[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 gr.grnet.pithos.web.client.grouptree.Group;\r
38 import gr.grnet.pithos.web.client.rest.PostRequest;\r
39 import gr.grnet.pithos.web.client.rest.RestException;\r
40 \r
41 import com.google.gwt.core.client.GWT;\r
42 import com.google.gwt.core.client.Scheduler;\r
43 import com.google.gwt.dom.client.NativeEvent;\r
44 import com.google.gwt.event.dom.client.ClickEvent;\r
45 import com.google.gwt.event.dom.client.ClickHandler;\r
46 import com.google.gwt.event.dom.client.KeyCodes;\r
47 import com.google.gwt.event.dom.client.KeyDownEvent;\r
48 import com.google.gwt.http.client.Response;\r
49 import com.google.gwt.http.client.URL;\r
50 import com.google.gwt.regexp.shared.RegExp;\r
51 import com.google.gwt.user.client.Event.NativePreviewEvent;\r
52 import com.google.gwt.user.client.ui.Anchor;\r
53 import com.google.gwt.user.client.ui.Button;\r
54 import com.google.gwt.user.client.ui.DialogBox;\r
55 import com.google.gwt.user.client.ui.FlexTable;\r
56 import com.google.gwt.user.client.ui.HasHorizontalAlignment;\r
57 import com.google.gwt.user.client.ui.TextBox;\r
58 import com.google.gwt.user.client.ui.VerticalPanel;\r
59 \r
60 /**\r
61  * The 'Folder properties' dialog box implementation.\r
62  */\r
63 public class AddUserDialog extends DialogBox {\r
64 \r
65     protected Pithos app;\r
66 \r
67     Group group;\r
68         /**\r
69          * The widget that holds the folderName of the folder.\r
70          */\r
71         TextBox userName = new TextBox();\r
72 \r
73         final VerticalPanel inner;\r
74 \r
75         /**\r
76          * The widget's constructor.\r
77          */\r
78         public AddUserDialog(final Pithos app, Group _group) {\r
79         this.app = app;\r
80         this.group = _group;\r
81         \r
82                 Anchor close = new Anchor("close");\r
83                 close.addStyleName("close");\r
84                 close.addClickHandler(new ClickHandler() {\r
85                         \r
86                         @Override\r
87                         public void onClick(ClickEvent event) {\r
88                                 hide();\r
89                         }\r
90                 });\r
91 \r
92                 setGlassEnabled(true);\r
93                 setStyleName("pithos-DialogBox");\r
94 \r
95                 // Enable IE selection for the dialog (must disable it upon closing it)\r
96                 Pithos.enableIESelection();\r
97 \r
98                 // Use this opportunity to set the dialog's caption.\r
99                 setText("Add user");\r
100 \r
101                 // Outer contains inner and buttons\r
102                 VerticalPanel outer = new VerticalPanel();\r
103                 outer.add(close);\r
104                 // Inner contains generalPanel and permPanel\r
105                 inner = new VerticalPanel();\r
106                 inner.addStyleName("inner");\r
107 \r
108                 VerticalPanel generalPanel = new VerticalPanel();\r
109         FlexTable generalTable = new FlexTable();\r
110         generalTable.setText(0, 0, "Username");\r
111 \r
112         generalTable.setWidget(0, 1, userName);\r
113 \r
114         generalTable.getFlexCellFormatter().setStyleName(0, 0, "props-labels");\r
115         generalTable.getFlexCellFormatter().setStyleName(0, 1, "props-values");\r
116         generalTable.setCellSpacing(4);\r
117         generalPanel.add(generalTable);\r
118         inner.add(generalPanel);\r
119 \r
120         outer.add(inner);\r
121 \r
122                 // Create the 'Create/Update' button, along with a listener that hides the dialog\r
123                 // when the button is clicked and quits the application.\r
124                 String okLabel = "Create";\r
125                 final Button ok = new Button(okLabel, new ClickHandler() {\r
126                         @Override\r
127                         public void onClick(ClickEvent event) {\r
128                                 addUser();\r
129                                 closeDialog();\r
130                         }\r
131                 });\r
132                 ok.addStyleName("button");\r
133                 outer.add(ok);\r
134         outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);\r
135 \r
136         setWidget(outer);\r
137         }\r
138 \r
139         @Override\r
140         public void center() {\r
141                 super.center();\r
142                 userName.setFocus(true);\r
143         }\r
144 \r
145         @Override\r
146         protected void onPreviewNativeEvent(NativePreviewEvent preview) {\r
147                 super.onPreviewNativeEvent(preview);\r
148 \r
149                 NativeEvent evt = preview.getNativeEvent();\r
150                 if (evt.getType().equals(KeyDownEvent.getType().getName()))\r
151                         // Use the popup's key preview hooks to close the dialog when either\r
152                         // enter or escape is pressed.\r
153                         switch (evt.getKeyCode()) {\r
154                                 case KeyCodes.KEY_ENTER:\r
155                                         addUser();\r
156                     closeDialog();\r
157                                         break;\r
158                                 case KeyCodes.KEY_ESCAPE:\r
159                                         closeDialog();\r
160                                         break;\r
161                         }\r
162         }\r
163 \r
164 \r
165         /**\r
166          * Enables IE selection prevention and hides the dialog\r
167          * (we disable the prevention on creation of the dialog)\r
168          */\r
169         public void closeDialog() {\r
170                 Pithos.preventIESelection();\r
171                 hide();\r
172         }\r
173 \r
174         /**\r
175          * Generate an RPC request to create a new folder.\r
176          */\r
177         void addUser() {\r
178                 String name = userName.getText().trim();\r
179                 if (name.length() == 0)\r
180                         return;\r
181                 RegExp emailValidator = RegExp.compile("^[A-Z0-9._%+-]+@[A-Z0-9.-]+[.][A-Z]{2,4}$", "i");\r
182                 if (!emailValidator.test(name)) {\r
183                         app.displayWarning("Username must be a valid email address");\r
184                         return;\r
185                 }\r
186                         \r
187         group.addMember(name);\r
188         String path = "?update=";\r
189         PostRequest updateGroup = new PostRequest(app.getApiPath(), app.getUserID(), path) {\r
190                         \r
191                         @Override\r
192                         public void onSuccess(Resource result) {\r
193                                 app.updateGroupNode(group);\r
194                         }\r
195                         \r
196                         @Override\r
197                         public void onError(Throwable t) {\r
198                                 GWT.log("", t);\r
199                                 app.setError(t);\r
200                                 if (t instanceof RestException) {\r
201                                         app.displayError("Unable to update group:" + ((RestException) t).getHttpStatusText());\r
202                                 }\r
203                                 else \r
204                                         app.displayError("System error updating group:" + t.getMessage());\r
205                         }\r
206 \r
207                         @Override\r
208                         protected void onUnauthorized(Response response) {\r
209                                 app.sessionExpired();\r
210                         }\r
211                 };\r
212                 updateGroup.setHeader("X-Auth-Token", app.getUserToken());\r
213                 String groupMembers = "";\r
214                 for (String u : group.getMembers())\r
215                         groupMembers += (URL.encodePathSegment(u) + ",");\r
216                 updateGroup.setHeader("X-Account-Group-" + URL.encodePathSegment(group.getName()), groupMembers);\r
217                 Scheduler.get().scheduleDeferred(updateGroup);\r
218         }\r
219 }\r