summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/commands/UserCommand.java
blob: ac7796f7c8c08c9ac9ee0e0770ce1c6d8aa5a9eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package f00f.net.irc.martyr.commands;

import f00f.net.irc.martyr.IRCConnection;
import f00f.net.irc.martyr.OutCommand;
/**
 * Defines USER command, part of the handshake to register on the
 * network.
 */
public class UserCommand implements OutCommand
{

    private String name;
    private String user;
    private String someA; // Might be a mode on some networks
    private String someB; // might be ignored

    public static final String IDENTIFIER = "USER";

    /**
     * @param user the login name on the computer the client is on
     * @param name the purported full name of the user, can be anything.
     * @param connection the connection the user command is affiliated with
     * */
    public UserCommand( String user, String name, IRCConnection connection )
    {
        this.name = name;
        this.user = user;
        //localhost = connection.getLocalhost();
        //remotehost = connection.getRemotehost();
        someA = "0"; // Can be 0|4|8, with 4=+w, 8=+i
        someB = connection.getRemotehost(); // ignored, apparently
    }

    public String render()
    {
        return IDENTIFIER + " " + user + " " + someA + " " + someB + " :" + name;
    }

    public String getIrcIdentifier()
    {
        return IDENTIFIER;
    }

}