summaryrefslogtreecommitdiff
path: root/src/irc/irc_user.cpp
blob: afe86238b398f3ac69c9a1d4f111dc1c3e58e75d (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
#include <irc/irc_user.hpp>

#include <iostream>

IrcUser::IrcUser(const std::string& name)
{
  const std::string::size_type sep = name.find("!");
  if (sep == std::string::npos)
    {
      if (name[0] == '~' || name[0] == '&'
          || name[0] == '@' || name[0] == '%'
          || name[0] == '+')
        this->nick = name.substr(1);
      else
        this->nick = name;
    }
  else
    {
      if (name[0] == '~' || name[0] == '&'
          || name[0] == '@' || name[0] == '%'
          || name[0] == '+')
        this->nick = name.substr(1, sep);
      else
        this->nick = name.substr(0, sep);
      this->host = name.substr(sep+1);
    }
  std::cout << "Created user: [" << this->nick << "!" << this->host << std::endl;
}