Android Open Source - BerryTube Chat User






From Project

Back to project page BerryTube.

License

The source code is released under:

GNU General Public License

If you think the Android project BerryTube listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * BerryTube Service//from  w ww  .  j av  a2  s.  c o m
 * Copyright (C) 2012 Daniel Triendl <trellmor@trellmor.com>
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.trellmor.berrytube;

import java.util.Locale;

import org.json.JSONException;
import org.json.JSONObject;

/**
 * Encapsulates a chat user
 * 
 * @author Daniel Triendl
 */
public class ChatUser implements Cloneable {
  /**
   * Not logged in
   */
  public final static int TYPE_NOBODY = -2;
  /**
   * Not logged in (anonymous)
   */
  public final static int TYPE_ANON = -1;
  /**
   * Logged in
   */
  public final static int TYPE_USER = 0;
  /**
   * Moderator
   */
  public final static int TYPE_MOD = 1;
  /**
   * Administrator
   */
  public final static int TYPE_ADMIN = 2;

  private final String nick;
  private int type;

  /**
   * Convenience for <code>ChatUser(String, -2)</code>
   * 
   * @param nick
   *            Username
   */
  public ChatUser(String nick) {
    this(nick, TYPE_NOBODY);
  }

  /**
   * Constructs a <code>ChatUser</code>
   * 
   * @param nick
   *            Username
   * @param type
   *            type
   */
  public ChatUser(String nick, int type) {
    this.nick = nick;
    this.type = type;
  }

  /**
   * Constructs a <code>ChatUser</code> from a <code>JSONObject</code>
   * 
   * @param user
   *            <code>JSONObject<code> containing user data
   * @throws JSONException
   */
  public ChatUser(JSONObject user) throws JSONException {
    this(user.getString("nick"));

    if (user.has("type"))
      this.type = user.getInt("type");
  }

  /**
   * Get the users name
   * 
   * @return Username
   */
  public String getNick() {
    return nick;
  }

  /**
   * Get the users type
   * 
   * @return type
   */
  public int getType() {
    return type;
  }

  /**
   * Compares to lower case nick
   * 
   * @see java.lang.Object#equals(java.lang.Object)
   */
  @Override
  public boolean equals(Object obj) {
    if (this.getClass() == obj.getClass()) {
      ChatUser objUser = (ChatUser) obj;

      // only compare nick
      return nick.toLowerCase(Locale.ENGLISH).equals(
          objUser.getNick().toLowerCase(Locale.ENGLISH));
    } else
      return false;
  }

  /**
   * Creates and returns a deep copy of this ChatUser
   * 
   * @see java.lang.Object#clone()
   */
  @Override
  public ChatUser clone() throws CloneNotSupportedException {
    super.clone();
    return new ChatUser(this.nick, this.type);
  }

  /**
   * Converts the ChatUser to a String
   * 
   * @return User nick
   * @see java.lang.Object#toString()
   */
  @Override
  public String toString() {
    return nick;
  }
}




Java Source Code List

com.trellmor.berrytube.BerryTubeBinder.java
com.trellmor.berrytube.BerryTubeCallback.java
com.trellmor.berrytube.BerryTubeIOCallback.java
com.trellmor.berrytube.BerryTube.java
com.trellmor.berrytube.ChatMessage.java
com.trellmor.berrytube.ChatUser.java
com.trellmor.berrytube.Poll.java
com.trellmor.berrytubechat.BerryTubeUtils.java
com.trellmor.berrytubechat.ChatActivity.java
com.trellmor.berrytubechat.ChatMessageAdapter.java
com.trellmor.berrytubechat.ChatMessageFormatter.java
com.trellmor.berrytubechat.FlairGetter.java
com.trellmor.berrytubechat.MainActivity.java
com.trellmor.berrytubechat.SettingsActivity.java
com.trellmor.berrytubechat.SettingsFragment.java
com.trellmor.berrytubechat.SimpleCrypto.java