~singpolyma/biboumi

ref: bf7b05ef72bbdac97704d262ddfe418908267535 biboumi/src/irc/irc_user.cpp -rw-r--r-- 591 bytes
bf7b05ef — Florent Le Coz Implement the Bridge class to translate between the two protocols 10 years ago
                                                                                
bf7b05ef Florent Le Coz
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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] == '+')
        this->nick = name.substr(1);
      else
        this->nick = name;
    }
  else
    {
      if (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;
}