mirror of
https://github.com/igniterealtime/Spark.git
synced 2025-12-01 12:27:58 +00:00
git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@7429 b35dd754-fafc-0310-a699-88a17e54d16e
462 lines
16 KiB
Java
462 lines
16 KiB
Java
/**
|
|
* $Revision: $
|
|
* $Date: $
|
|
*
|
|
* Copyright (C) 2006 Jive Software. All rights reserved.
|
|
*
|
|
* This software is published under the terms of the GNU Lesser Public License (LGPL),
|
|
* a copy of which is included in this distribution.
|
|
*/
|
|
|
|
package org.jivesoftware.spark;
|
|
|
|
import org.jivesoftware.resource.Res;
|
|
import org.jivesoftware.smack.packet.Presence;
|
|
import org.jivesoftware.smack.util.StringUtils;
|
|
import org.jivesoftware.smackx.muc.Occupant;
|
|
import org.jivesoftware.smackx.packet.VCard;
|
|
import org.jivesoftware.spark.component.JContactItemField;
|
|
import org.jivesoftware.spark.ui.ChatRoom;
|
|
import org.jivesoftware.spark.ui.ContactGroup;
|
|
import org.jivesoftware.spark.ui.ContactItem;
|
|
import org.jivesoftware.spark.ui.ContactList;
|
|
import org.jivesoftware.spark.ui.rooms.GroupChatRoom;
|
|
import org.jivesoftware.spark.util.ModelUtil;
|
|
import org.jivesoftware.spark.util.log.Log;
|
|
import org.jivesoftware.sparkimpl.profile.VCardManager;
|
|
|
|
import javax.swing.BorderFactory;
|
|
import javax.swing.JFrame;
|
|
import javax.swing.JLabel;
|
|
import javax.swing.JPanel;
|
|
|
|
import java.awt.BorderLayout;
|
|
import java.awt.Component;
|
|
import java.awt.Font;
|
|
import java.awt.GridBagConstraints;
|
|
import java.awt.GridBagLayout;
|
|
import java.awt.Insets;
|
|
import java.awt.event.KeyAdapter;
|
|
import java.awt.event.KeyEvent;
|
|
import java.awt.event.MouseAdapter;
|
|
import java.awt.event.MouseEvent;
|
|
import java.awt.event.WindowAdapter;
|
|
import java.awt.event.WindowEvent;
|
|
import java.util.ArrayList;
|
|
import java.util.Collection;
|
|
import java.util.HashMap;
|
|
import java.util.HashSet;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
/**
|
|
* Handles all users in the agent application. Each user or chatting user can be referenced from the User
|
|
* Manager. You would use the UserManager to get visitors in a chat room or secondary agents.
|
|
*/
|
|
public class UserManager {
|
|
|
|
private Map parents = new HashMap();
|
|
|
|
public UserManager() {
|
|
}
|
|
|
|
public String getNickname() {
|
|
final VCardManager vCardManager = SparkManager.getVCardManager();
|
|
VCard vcard = vCardManager.getVCard();
|
|
if (vcard == null) {
|
|
return SparkManager.getSessionManager().getUsername();
|
|
}
|
|
else {
|
|
String nickname = vcard.getNickName();
|
|
if (ModelUtil.hasLength(nickname)) {
|
|
return nickname;
|
|
}
|
|
else {
|
|
String firstName = vcard.getFirstName();
|
|
if (ModelUtil.hasLength(firstName)) {
|
|
return firstName;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Default to node if nothing.
|
|
String username = SparkManager.getSessionManager().getUsername();
|
|
username = StringUtils.unescapeNode(username);
|
|
|
|
return username;
|
|
}
|
|
|
|
|
|
/**
|
|
* Return a Collection of all user jids found in the specified room.
|
|
*
|
|
* @param room the name of the chatroom
|
|
* @param fullJID set to true if you wish to have the full jid with resource, otherwise false
|
|
* for the bare jid.
|
|
* @return a Collection of jids found in the room.
|
|
*/
|
|
public Collection getUserJidsInRoom(String room, boolean fullJID) {
|
|
final List returnList = new ArrayList();
|
|
|
|
|
|
return returnList;
|
|
}
|
|
|
|
/**
|
|
* Checks to see if the user is an owner of the specified room.
|
|
*
|
|
* @param groupChatRoom the group chat room.
|
|
* @param nickname the user's nickname.
|
|
* @return true if the user is an owner.
|
|
*/
|
|
public boolean isOwner(GroupChatRoom groupChatRoom, String nickname) {
|
|
Occupant occupant = getOccupant(groupChatRoom, nickname);
|
|
if (occupant != null) {
|
|
String affiliation = occupant.getAffiliation();
|
|
if ("owner".equals(affiliation)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Checks to see if the Occupant is the owner of the room.
|
|
*
|
|
* @param occupant the occupant of a room.
|
|
* @return true if the user is an owner.
|
|
*/
|
|
public boolean isOwner(Occupant occupant) {
|
|
if (occupant != null) {
|
|
String affiliation = occupant.getAffiliation();
|
|
if ("owner".equals(affiliation)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Checks to see if the Occupant is a moderator.
|
|
*
|
|
* @param groupChatRoom the group chat room.
|
|
* @param nickname the nickname of the user.
|
|
* @return true if the user is a moderator.
|
|
*/
|
|
public boolean isModerator(GroupChatRoom groupChatRoom, String nickname) {
|
|
Occupant occupant = getOccupant(groupChatRoom, nickname);
|
|
if (occupant != null) {
|
|
String role = occupant.getRole();
|
|
if ("moderator".equals(role)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Checks to see if the Occupant is a moderator.
|
|
*
|
|
* @param occupant the Occupant of a room.
|
|
* @return true if the user is a moderator.
|
|
*/
|
|
public boolean isModerator(Occupant occupant) {
|
|
if (occupant != null) {
|
|
String role = occupant.getRole();
|
|
if ("moderator".equals(role)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Checks to see if the user is either an owner or admin of a room.
|
|
*
|
|
* @param groupChatRoom the group chat room.
|
|
* @param nickname the user's nickname.
|
|
* @return true if the user is either an owner or admin of the room.
|
|
*/
|
|
public boolean isOwnerOrAdmin(GroupChatRoom groupChatRoom, String nickname) {
|
|
Occupant occupant = getOccupant(groupChatRoom, nickname);
|
|
if (occupant != null) {
|
|
String affiliation = occupant.getAffiliation();
|
|
if ("owner".equals(affiliation) || "admin".equals(affiliation)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Checks to see if the user is either an owner or admin of the given room.
|
|
*
|
|
* @param occupant the <code>Occupant</code> to check.
|
|
* @return true if the user is either an owner or admin of the room.
|
|
*/
|
|
public boolean isOwnerOrAdmin(Occupant occupant) {
|
|
if (occupant != null) {
|
|
String affiliation = occupant.getAffiliation();
|
|
if ("owner".equals(affiliation) || "admin".equals(affiliation)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Returns the occupant of the room identified by their nickname.
|
|
*
|
|
* @param groupChatRoom the GroupChatRoom.
|
|
* @param nickname the users nickname.
|
|
* @return the Occupant found.
|
|
*/
|
|
public Occupant getOccupant(GroupChatRoom groupChatRoom, String nickname) {
|
|
String userJID = groupChatRoom.getRoomname() + "/" + nickname;
|
|
Occupant occ = null;
|
|
try {
|
|
occ = groupChatRoom.getMultiUserChat().getOccupant(userJID);
|
|
}
|
|
catch (Exception e) {
|
|
Log.error(e);
|
|
}
|
|
return occ;
|
|
}
|
|
|
|
/**
|
|
* Checks the nickname of a user in a room and determines if they are an
|
|
* administrator of the room.
|
|
*
|
|
* @param groupChatRoom the GroupChatRoom.
|
|
* @param nickname the nickname of the user. Note: In MultiUserChats, users nicknames
|
|
* are defined by the resource(ex.theroom@conference.jivesoftware.com/derek) would have
|
|
* derek as a nickname.
|
|
* @return true if the user is an admin.
|
|
*/
|
|
public boolean isAdmin(GroupChatRoom groupChatRoom, String nickname) {
|
|
Occupant occupant = getOccupant(groupChatRoom, nickname);
|
|
if (occupant != null) {
|
|
String affiliation = occupant.getAffiliation();
|
|
if ("admin".equals(affiliation)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public boolean hasVoice(GroupChatRoom groupChatRoom, String nickname) {
|
|
Occupant occupant = getOccupant(groupChatRoom, nickname);
|
|
if (occupant != null) {
|
|
String role = occupant.getRole();
|
|
if ("visitor".equals(role)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
/**
|
|
* Returns a Collection of all <code>ChatUsers</code> in a ChatRoom.
|
|
*
|
|
* @param chatRoom the ChatRoom to inspect.
|
|
* @return the Collection of all ChatUsers.
|
|
* @see <code>ChatUser</code>
|
|
*/
|
|
public Collection getAllParticipantsInRoom(ChatRoom chatRoom) {
|
|
final String room = chatRoom.getRoomname();
|
|
final List returnList = new ArrayList();
|
|
|
|
|
|
return returnList;
|
|
}
|
|
|
|
|
|
public String getUserNicknameFromJID(String jid) {
|
|
ContactList contactList = SparkManager.getWorkspace().getContactList();
|
|
ContactItem item = contactList.getContactItemByJID(jid);
|
|
if (item != null) {
|
|
return item.getNickname();
|
|
}
|
|
|
|
return unescapeJID(jid);
|
|
}
|
|
|
|
/**
|
|
* Escapes a complete JID by examing the Node itself and escaping
|
|
* when neccessary.
|
|
*
|
|
* @param jid the users JID
|
|
* @return the escaped JID.
|
|
*/
|
|
public static String escapeJID(String jid) {
|
|
if (jid == null) {
|
|
return null;
|
|
}
|
|
|
|
final StringBuilder builder = new StringBuilder();
|
|
String node = StringUtils.parseName(jid);
|
|
String restOfJID = jid.substring(node.length());
|
|
builder.append(StringUtils.escapeNode(node));
|
|
builder.append(restOfJID);
|
|
return builder.toString();
|
|
}
|
|
|
|
/**
|
|
* Unescapes a complete JID by examing the node itself and unescaping when necessary.
|
|
*
|
|
* @param jid the users jid.
|
|
* @return the unescaped JID.
|
|
*/
|
|
public static String unescapeJID(String jid) {
|
|
if (jid == null) {
|
|
return null;
|
|
}
|
|
|
|
final StringBuilder builder = new StringBuilder();
|
|
String node = StringUtils.parseName(jid);
|
|
String restOfJID = jid.substring(node.length());
|
|
builder.append(StringUtils.unescapeNode(node));
|
|
builder.append(restOfJID);
|
|
return builder.toString();
|
|
}
|
|
|
|
/**
|
|
* Returns the full jid w/ resource of a user by their nickname
|
|
* in the ContactList.
|
|
*
|
|
* @param nickname the nickname of the user.
|
|
* @return the full jid w/ resource of the user.
|
|
*/
|
|
public String getJIDFromNickname(String nickname) {
|
|
ContactList contactList = SparkManager.getWorkspace().getContactList();
|
|
ContactItem item = contactList.getContactItemByNickname(nickname);
|
|
if (item != null) {
|
|
return getFullJID(item.getJID());
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Returns the full jid (with resource) based on the user's jid.
|
|
*
|
|
* @param jid the users bare jid.
|
|
* @return the full jid with resource.
|
|
*/
|
|
public String getFullJID(String jid) {
|
|
Presence presence = PresenceManager.getPresence(jid);
|
|
return presence.getFrom();
|
|
}
|
|
|
|
|
|
public void searchContacts(String contact, final JFrame parent) {
|
|
if (parents.get(parent) == null) {
|
|
parents.put(parent, parent.getGlassPane());
|
|
}
|
|
|
|
// Make sure we are using the default glass pane
|
|
final Component glassPane = (Component)parents.get(parent);
|
|
parent.setGlassPane(glassPane);
|
|
|
|
final Map contactMap = new HashMap();
|
|
final Set contacts = new HashSet();
|
|
|
|
final ContactList contactList = SparkManager.getWorkspace().getContactList();
|
|
|
|
Iterator groups = contactList.getContactGroups().iterator();
|
|
while (groups.hasNext()) {
|
|
ContactGroup group = (ContactGroup)groups.next();
|
|
Iterator contactItems = group.getContactItems().iterator();
|
|
while (contactItems.hasNext()) {
|
|
ContactItem item = (ContactItem)contactItems.next();
|
|
if (contactMap.get(item.getNickname()) == null) {
|
|
contacts.add(item);
|
|
contactMap.put(item.getNickname(), item);
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
final JContactItemField contactField = new JContactItemField(new ArrayList(contacts));
|
|
|
|
|
|
JPanel layoutPanel = new JPanel();
|
|
layoutPanel.setLayout(new GridBagLayout());
|
|
JLabel enterLabel = new JLabel(Res.getString("label.contact.to.find"));
|
|
enterLabel.setFont(new Font("dialog", Font.BOLD, 10));
|
|
layoutPanel.add(enterLabel, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 0, 5), 0, 0));
|
|
layoutPanel.add(contactField, new GridBagConstraints(0, 1, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 50, 0));
|
|
layoutPanel.setBorder(BorderFactory.createBevelBorder(0));
|
|
|
|
contactField.addKeyListener(new KeyAdapter() {
|
|
public void keyReleased(KeyEvent keyEvent) {
|
|
if (keyEvent.getKeyChar() == KeyEvent.VK_ENTER) {
|
|
if (ModelUtil.hasLength(contactField.getText())) {
|
|
ContactItem item = (ContactItem)contactMap.get(contactField.getText());
|
|
if (item != null) {
|
|
parent.setGlassPane(glassPane);
|
|
parent.getGlassPane().setVisible(false);
|
|
contactField.dispose();
|
|
SparkManager.getChatManager().activateChat(item.getJID(), item.getNickname());
|
|
}
|
|
}
|
|
|
|
}
|
|
else if (keyEvent.getKeyChar() == KeyEvent.VK_ESCAPE) {
|
|
parent.setGlassPane(glassPane);
|
|
parent.getGlassPane().setVisible(false);
|
|
contactField.dispose();
|
|
}
|
|
}
|
|
});
|
|
|
|
contactField.getList().addMouseListener(new MouseAdapter() {
|
|
public void mouseClicked(MouseEvent e) {
|
|
if (e.getClickCount() == 2) {
|
|
if (ModelUtil.hasLength(contactField.getText())) {
|
|
ContactItem item = (ContactItem)contactMap.get(contactField.getText());
|
|
if (item != null) {
|
|
parent.setGlassPane(glassPane);
|
|
parent.getGlassPane().setVisible(false);
|
|
contactField.dispose();
|
|
SparkManager.getChatManager().activateChat(item.getJID(), item.getNickname());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
final JPanel mainPanel = new JPanel(new BorderLayout());
|
|
mainPanel.setLayout(new GridBagLayout());
|
|
mainPanel.add(layoutPanel, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 200, 0));
|
|
mainPanel.setOpaque(false);
|
|
|
|
contactField.setText(contact);
|
|
parent.setGlassPane(mainPanel);
|
|
parent.getGlassPane().setVisible(true);
|
|
contactField.focus();
|
|
|
|
mainPanel.addMouseListener(new MouseAdapter() {
|
|
public void mouseClicked(MouseEvent mouseEvent) {
|
|
parent.setGlassPane(glassPane);
|
|
parent.getGlassPane().setVisible(false);
|
|
contactField.dispose();
|
|
}
|
|
});
|
|
|
|
parent.addWindowListener(new WindowAdapter() {
|
|
public void windowClosing(WindowEvent windowEvent) {
|
|
parent.setGlassPane(glassPane);
|
|
parent.getGlassPane().setVisible(false);
|
|
contactField.dispose();
|
|
parent.removeWindowListener(this);
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
} |