/* * Copyright 2000-2006 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package jetbrains.communicator.commands; import jetbrains.communicator.OptionFlag; import jetbrains.communicator.core.users.User; import jetbrains.communicator.core.users.UserAction; import jetbrains.communicator.core.users.UserModel; import jetbrains.communicator.ide.UserListComponent; import jetbrains.communicator.util.StringUtil; /** * @author Kir */ public class ToggleFileAccessCommand extends EnabledWhenFocusedCommand { private final UserModel myUserModel; public ToggleFileAccessCommand(UserModel userModel, UserListComponent userListComponent) { super(userListComponent); myUserModel = userModel; } public boolean enabled() { Object[] nodes = myUserListComponent.getSelectedNodes(); final Boolean[] val = new Boolean[1]; return nodes.length > 0 && doForSelected(new UserAction() { public boolean executeAndContinue(User user) { if (val[0] == null) { val[0] = user.canAccessMyFiles(); } else { if (val[0] != user.canAccessMyFiles()) { return false; } } return true; } }); } public void execute() { doForSelected(new UserAction() { public boolean executeAndContinue(User user) { toggleAccessToFiles(user); return true; } }); } private void toggleAccessToFiles(User user) { user.setCanAccessMyFiles(!user.canAccessMyFiles(), myUserModel); } public boolean isSelected() { final Boolean[] val = new Boolean[1]; doForSelected(new UserAction() { public boolean executeAndContinue(User user) { val[0] = user.canAccessMyFiles(); return false; } }); return val[0] != null && val[0]; } public String getText() { Object[] nodes = myUserListComponent.getSelectedNodes(); if (nodes.length == 0) { return StringUtil.getMsg("ToggleFileAccess.text.single"); } return nodes.length > 1 || !(nodes[0] instanceof User) ? StringUtil.getMsg("ToggleFileAccess.text.multiple") : StringUtil.getMsg("ToggleFileAccess.text.single"); } private boolean doForSelected(UserAction action) { Object[] nodes = myUserListComponent.getSelectedNodes(); return myUserModel.forEach(nodes, action, OptionFlag.OPTION_HIDE_OFFLINE_USERS.isSet() ); } }