Added ids in homefolder(tree.homeFolder), Trash(tree.Trash), My Shared (tree.myShared...
[pithos] / src / gr / ebs / gss / client / UserAddDialog.java
1 /*
2  * Copyright 2008, 2009 Electronic Business Systems Ltd.
3  *
4  * This file is part of GSS.
5  *
6  * GSS is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GSS is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with GSS.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 package gr.ebs.gss.client;
20
21 import gr.ebs.gss.client.rest.GetCommand;
22 import gr.ebs.gss.client.rest.PostCommand;
23 import gr.ebs.gss.client.rest.RestException;
24 import gr.ebs.gss.client.rest.resource.GroupResource;
25 import gr.ebs.gss.client.rest.resource.UserResource;
26 import gr.ebs.gss.client.rest.resource.UserSearchResource;
27
28 import com.google.gwt.core.client.GWT;
29 import com.google.gwt.dom.client.NativeEvent;
30 import com.google.gwt.event.dom.client.ClickEvent;
31 import com.google.gwt.event.dom.client.ClickHandler;
32 import com.google.gwt.event.dom.client.FocusEvent;
33 import com.google.gwt.event.dom.client.FocusHandler;
34 import com.google.gwt.event.dom.client.KeyCodes;
35 import com.google.gwt.event.dom.client.KeyUpEvent;
36 import com.google.gwt.event.dom.client.KeyUpHandler;
37 import com.google.gwt.http.client.URL;
38 import com.google.gwt.user.client.DeferredCommand;
39 import com.google.gwt.user.client.Event.NativePreviewEvent;
40 import com.google.gwt.user.client.ui.Button;
41 import com.google.gwt.user.client.ui.DialogBox;
42 import com.google.gwt.user.client.ui.FlexTable;
43 import com.google.gwt.user.client.ui.HasHorizontalAlignment;
44 import com.google.gwt.user.client.ui.HorizontalPanel;
45 import com.google.gwt.user.client.ui.Label;
46 import com.google.gwt.user.client.ui.MultiWordSuggestOracle;
47 import com.google.gwt.user.client.ui.SuggestBox;
48 import com.google.gwt.user.client.ui.VerticalPanel;
49
50 /**
51  * @author kman
52  */
53 public class UserAddDialog extends DialogBox {
54
55         private MultiWordSuggestOracle oracle = new MultiWordSuggestOracle();
56         private SuggestBox suggestBox = new SuggestBox(oracle);
57
58         String selectedUser=null;
59         FlexTable userTable = new FlexTable();
60
61         /**
62          * The widget's constructor.
63          */
64         public UserAddDialog() {
65                 setAnimationEnabled(true);
66                 setText("Add User");
67                 VerticalPanel panel = new VerticalPanel();
68                 setWidget(panel);
69                 panel.addStyleName("gss-TabPanelBottom");
70                 userTable.addStyleName("gss-permList");
71                 userTable.setWidget(0, 0, new Label("Username:"));
72                 userTable.getFlexCellFormatter().setStyleName(0, 0, "props-toplabels");
73                 suggestBox.getTextBox().addFocusHandler(new FocusHandler() {
74
75                         @Override
76                         public void onFocus(FocusEvent event) {
77                                 if (selectedUser != null && selectedUser.endsWith("@"))
78                                         updateSuggestions();
79                         }
80                 });
81
82                 suggestBox.addKeyUpHandler(new KeyUpHandler() {
83
84                         @Override
85                         public void onKeyUp(KeyUpEvent event) {
86                                 // Ignore the arrow keys.
87                                 int keyCode=event.getNativeKeyCode();
88                                 if(keyCode == KeyCodes.KEY_UP ||
89                                                 keyCode == KeyCodes.KEY_DOWN ||
90                                                 keyCode == KeyCodes.KEY_LEFT ||
91                                                 keyCode == KeyCodes.KEY_RIGHT)
92                                         return;
93                                 if (keyCode==KeyCodes.KEY_ESCAPE) {
94                                         suggestBox.hideSuggestionList();
95                                         return;
96                                 }
97                                 String text = suggestBox.getText().trim();
98                                 // Avoid useless queries for keystrokes that do not modify the
99                                 // text.
100                                 if (text.equals(selectedUser))
101                                         return;
102                                 selectedUser = text;
103                                 // Go to the server only if the user typed the @ character.
104                                 if (selectedUser.endsWith("@"))
105                                         updateSuggestions();
106                         }
107                 });
108         userTable.setWidget(0, 1, suggestBox);
109         panel.add(userTable);
110                 HorizontalPanel buttons = new HorizontalPanel();
111                 Button ok = new Button("OK", new ClickHandler() {
112                         @Override
113                         public void onClick(ClickEvent event) {
114                                 addUser();
115                                 hide();
116                         }
117                 });
118                 buttons.add(ok);
119                 buttons.setCellHorizontalAlignment(ok, HasHorizontalAlignment.ALIGN_CENTER);
120                 // Create the 'Cancel' button, along with a listener that hides the
121                 // dialog when the button is clicked.
122                 Button cancel = new Button("Cancel", new ClickHandler() {
123                         @Override
124                         public void onClick(ClickEvent event) {
125                                 hide();
126                         }
127                 });
128                 buttons.add(cancel);
129                 buttons.setCellHorizontalAlignment(cancel, HasHorizontalAlignment.ALIGN_CENTER);
130                 buttons.setSpacing(8);
131                 buttons.addStyleName("gss-TabPanelBottom");
132                 panel.add(buttons);
133                 panel.setCellHorizontalAlignment(buttons, HasHorizontalAlignment.ALIGN_CENTER);
134                 panel.addStyleName("gss-DialogBox");
135         }
136
137         @Override
138         public void center() {
139                 super.center();
140                 suggestBox.setFocus(true);
141         }
142
143         @Override
144         protected void onPreviewNativeEvent(NativePreviewEvent preview) {
145                 super.onPreviewNativeEvent(preview);
146
147                 NativeEvent evt = preview.getNativeEvent();
148                 if (evt.getType().equals("keydown"))
149                         // Use the popup's key preview hooks to close the dialog when either
150                         // enter or escape is pressed.
151                         switch (evt.getKeyCode()) {
152                                 case KeyCodes.KEY_ENTER:
153                                         addUser();
154                                         hide();
155                                         break;
156                                 case KeyCodes.KEY_ESCAPE:
157                                         hide();
158                                         break;
159                         }
160         }
161
162         /**
163          * Generate a request to add a user to a group.
164          *
165          * @param groupName the name of the group to create
166          */
167         private void addUser() {
168                 GroupResource group = (GroupResource) GSS.get().getCurrentSelection();
169                 selectedUser = suggestBox.getText();
170                 if ( group == null ) {
171                         GSS.get().displayError("Empty group name!");
172                         return;
173                 }
174                 if ( selectedUser == null ) {
175                         GSS.get().displayError("No User Selected!");
176                         return;
177                 }
178                 PostCommand cg = new PostCommand(group.getUri()+"?name="+selectedUser, "", 201){
179                         @Override
180                         public void onComplete() {
181                                 GSS.get().getGroups().updateGroups();
182                                 GSS.get().showUserList();
183                         }
184
185                         @Override
186                         public void onError(Throwable t) {
187                                 GWT.log("", t);
188                                 if(t instanceof RestException){
189                                         int statusCode = ((RestException)t).getHttpStatusCode();
190                                         if(statusCode == 405)
191                                                 GSS.get().displayError("You don't have the necessary permissions");
192                                         else if(statusCode == 404)
193                                                 GSS.get().displayError("User does not exist");
194                                         else if(statusCode == 409)
195                                                 GSS.get().displayError("A user with the same name already exists");
196                                         else if(statusCode == 413)
197                                                 GSS.get().displayError("Your quota has been exceeded");
198                                         else
199                                                 GSS.get().displayError("Unable to add user: "+((RestException)t).getHttpStatusText());
200                                 }
201                                 else
202                                         GSS.get().displayError("System error adding user: "+t.getMessage());
203                         }
204                 };
205                 DeferredCommand.addCommand(cg);
206         }
207
208         /**
209          * Update the list of suggestions.
210          */
211         protected void updateSuggestions() {
212                 final GSS app = GSS.get();
213                 String query = selectedUser.substring(0, selectedUser.length()-1);
214                 GWT.log("Searching for " + query, null);
215
216                 GetCommand<UserSearchResource> eg = new GetCommand<UserSearchResource>(UserSearchResource.class,
217                                         app.getApiPath() + "users/" + URL.encodeComponent(query), false, null) {
218
219                         @Override
220                         public void onComplete() {
221                                 suggestBox.hideSuggestionList();
222                                 oracle.clear();
223                                 UserSearchResource s = getResult();
224                                 for (UserResource user : s.getUsers()) {
225                                         GWT.log("Found " + user.getUsername(), null);
226                                         oracle.add(user.getUsername());
227                                 }
228                                 suggestBox.showSuggestionList();
229                         }
230
231                         @Override
232                         public void onError(Throwable t) {
233                                 if(t instanceof RestException)
234                                         app.displayError("Unable to perform search: "+((RestException)t).getHttpStatusText());
235                                 else
236                                         app.displayError("System error while searching for users: "+t.getMessage());
237                                 GWT.log("", t);
238                                 DisplayHelper.log(t.getMessage());
239                         }
240
241                 };
242                 DeferredCommand.addCommand(eg);
243         }
244
245 }