-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChannel.cpp
More file actions
229 lines (200 loc) · 6.53 KB
/
Channel.cpp
File metadata and controls
229 lines (200 loc) · 6.53 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#include "Channel.hpp"
Channel::Channel() {this->isempty = true;}
Channel::Channel(std::string name, Client& member) : _name(name), isempty(false)
{
this->isPrivate = false;
haveKey(false);
clients.push_back(&member);
operators.push_back(member.getNickName());
}
Channel::Channel(std::string name, Client& member, std::string key) : _name(name), _key(key), isempty(false)
{
this->isPrivate = false;
haveKey(true);
clients.push_back(&member);
operators.push_back(member.getNickName());
}
Channel::Channel(const Channel& other) {*this = other;}
Channel& Channel::operator=(const Channel& other) {
if (this != &other) {
_name = other._name;
_topic = other._topic;
havekey = other.havekey;
_key = other._key;
userLimit = other.userLimit;
Ulimit = other.Ulimit;
isPrivate = other.isPrivate;
haveTopic = other.haveTopic;
isempty = other.isempty;
clients.clear();
std::vector<Client*>::const_iterator itClient;
for (itClient = other.clients.begin(); itClient != other.clients.end(); ++itClient) {
clients.push_back(*itClient);
}
operators.clear();
std::vector<std::string>::const_iterator itOp;
for (itOp = other.operators.begin(); itOp != other.operators.end(); ++itOp) {
operators.push_back(*itOp);
}
inviteList.clear();
std::vector<std::string>::const_iterator itInvite;
for (itInvite = other.inviteList.begin(); itInvite != other.inviteList.end(); ++itInvite) {
inviteList.push_back(*itInvite);
}
}
return *this;
}
Channel::~Channel() {}
std::string Channel::getchannelName(void)
{
return(this->_name);
}
bool Channel::addMember(Client& member)
{
if (this->Ulimit && (int)clients.size() >= this->userLimit && !isInInviteList(member.getNickName())) {
member.ServerToClientPrefix(ERR_CHANNELISFULL(member.getNickName(), getchannelName()));
return false;
}
std::vector<Client *>::iterator c_it;
for (c_it = clients.begin(); c_it != clients.end(); ++c_it) {
if (tolower((*c_it)->getNickName()) == tolower(member.getNickName())) {
member.ServerToClientPrefix(ERR_USERONCHANNEL(member.getNickName(), getchannelName()));
return false;
}
}
if (c_it == clients.end()) {
clients.push_back(&member);
}
return true;
}
std::string Channel::getTopic(){
return(this->_topic);
}
void Channel::setTopic(std::string subj)
{
this->_topic = subj;
}
void Channel::setKey(std::string key){
this->_key = key;
}
std::string Channel::getKey(void){
return(this->_key);
}
bool Channel::sethaveKey(){
return(this->havekey);
}
void Channel::haveKey(bool keyVal){
this->havekey = keyVal;
}
bool Channel::getPrivate(){
return(this->isPrivate);
}
void Channel::setPrivate(bool prv)
{
this->isPrivate = prv;
}
std::string Channel::getClientNames(void) {
std::string result = "";
for (std::vector<Client *>::iterator myit = this->clients.begin(); myit != this->clients.end(); ++myit) {
if (this->isOp((**myit).getNickName())) result += '@' + (**myit).getNickName();
else result += (**myit).getNickName();
result += ' ';
}
return result;
}
void Channel::removeMember(std::string clientName) {
for (std::vector<Client *>::iterator myit = this->clients.begin(); myit != this->clients.end(); ++myit) {
if (tolower((**myit).getNickName()) == tolower(clientName)) {
if (this->isOp((**myit).getNickName()))
removeOp((**myit).getNickName());
if (this->isInInviteList((**myit).getNickName()))
removeFromInviteList((**myit).getNickName());
clients.erase(myit);
return ;
}
}
}
void Channel::boolTopic(bool settop){
this->haveTopic = settop;
}
void Channel::haveLimit(bool change){
this->Ulimit = change;
}
int Channel::getLimit()
{
return(this->userLimit);
}
void Channel::setLimit(int lim){
this->userLimit = lim;
}
bool Channel::hasTopic()
{
return(this->haveTopic);
}
void Channel::removeOp(std::string name)
{
if (operators.size() == 0) return ;
std::vector<std::string>::iterator it = operators.begin();
for(;it != operators.end();it++) {
if (tolower(name) == tolower(*it)) {
operators.erase(it);
return ;
}
}
}
void Channel::setOperators(std::string newOperators) {
if (this->isOp(newOperators)) return ;
else operators.push_back(newOperators);
}
bool Channel::isOp(std::string name){
if (operators.size() == 0) return false;
std::vector<std::string>::iterator it = operators.begin();
for(;it != operators.end();it++)
if (tolower(name) == tolower(*it))
return true;
if(it == operators.end())
return false;
return false;
}
std::string Channel::getClientsSize(void) {
std::stringstream ss;
ss << this->clients.size();
return ss.str();
}
void Channel::addToInviteList(std::string clientName) {
if (this->inviteList.size() == 0) this->inviteList.push_back(clientName);
else {
for (std::vector<std::string>::iterator it = this->inviteList.begin(); it != this->inviteList.end(); it++) {
if (tolower(*it) == tolower(clientName)) return ;
}
this->inviteList.push_back(clientName);
}
}
void Channel::removeFromInviteList(std::string clientName) {
if (this->inviteList.size() == 0) return ;
for (std::vector<std::string>::iterator it = this->inviteList.begin(); it != this->inviteList.end(); it++) {
if (tolower(*it) == tolower(clientName)) {
this->inviteList.erase(it);
return ;
}
}
}
bool Channel::isInInviteList(std::string clientName) {
if (this->inviteList.size() == 0) return false;
for (std::vector<std::string>::iterator it = this->inviteList.begin(); it != this->inviteList.end(); it++) {
if (tolower(*it) == tolower(clientName)) return true;
}
return false;
}
void Channel::changeNickname(std::string oldNick, std::string newNick) {
if (isInInviteList(oldNick)) {
for (std::vector<std::string>::size_type i = 0; i < this->inviteList.size(); i++)
if (tolower(this->inviteList[i]) == tolower(oldNick))
this->inviteList[i] = newNick;
}
if (isOp(oldNick)) {
for (std::vector<std::string>::size_type i = 0; i < this->operators.size(); i++)
if (tolower(this->operators[i]) == tolower(oldNick))
this->operators[i] = newNick;
}
}