summaryrefslogtreecommitdiff
path: root/modules/nickserv/main/nick.cpp
blob: 0ac55ff93d8937d197f031abe4a757d3bbd8ee69 (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
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
/*
 *
 * (C) 2003-2014 Anope Team
 * Contact us at team@anope.org
 *
 * Please read COPYING and README for further details.
 *
 * Based on the original code of Epona by Lara.
 * Based on the original code of Services by Andy Church.
 *
 */

#include "module.h"
#include "nicktype.h"

NickImpl::~NickImpl()
{
	/* Remove us from the aliases list */
	NickServ::nickalias_map &map = NickServ::service->GetNickMap();
	map.erase(GetNick());
}

void NickImpl::Delete()
{
	Event::OnDelNick(&Event::DelNick::OnDelNick, this);

	if (this->GetAccount())
	{
		/* Next: see if our core is still useful. */
		std::vector<NickServ::Nick *> aliases = this->GetAccount()->GetRefs<NickServ::Nick *>(NickServ::nick);

		auto it = std::find(aliases.begin(), aliases.end(), this);
		if (it != aliases.end())
			aliases.erase(it);

		if (aliases.empty())
		{
			/* just me */
			this->GetAccount()->Delete();
		}
		else
		{
			/* Display updating stuff */
			if (GetNick().equals_ci(this->GetAccount()->GetDisplay()))
				this->GetAccount()->SetDisplay(aliases[0]);
		}
	}

	return Serialize::Object::Delete();
}

Anope::string NickImpl::GetNick()
{
	return Get<Anope::string>(&NickType::nick);
}

void NickImpl::SetNick(const Anope::string &nick)
{
	Set(&NickType::nick, nick);
}

Anope::string NickImpl::GetLastQuit()
{
	return Get(&NickType::last_quit);
}

void NickImpl::SetLastQuit(const Anope::string &lq)
{
	Set(&NickType::last_quit, lq);
}

Anope::string NickImpl::GetLastRealname()
{
	return Get(&NickType::last_realname);
}

void NickImpl::SetLastRealname(const Anope::string &lr)
{
	Set(&NickType::last_realname, lr);
}

Anope::string NickImpl::GetLastUsermask()
{
	return Get(&NickType::last_usermask);
}

void NickImpl::SetLastUsermask(const Anope::string &lu)
{
	Set(&NickType::last_usermask, lu);
}

Anope::string NickImpl::GetLastRealhost()
{
	return Get(&NickType::last_realhost);
}

void NickImpl::SetLastRealhost(const Anope::string &lr)
{
	Set(&NickType::last_realhost, lr);
}

time_t NickImpl::GetTimeRegistered()
{
	return Get(&NickType::time_registered);
}

void NickImpl::SetTimeRegistered(const time_t &tr)
{
	Set(&NickType::time_registered, tr);
}

time_t NickImpl::GetLastSeen()
{
	return Get(&NickType::last_seen);
}

void NickImpl::SetLastSeen(const time_t &ls)
{
	Set(&NickType::last_seen, ls);
}

NickServ::Account *NickImpl::GetAccount()
{
	return Get(&NickType::nc);
}

void NickImpl::SetAccount(NickServ::Account *acc)
{
	Set(&NickType::nc, acc);
}

void NickImpl::SetVhost(const Anope::string &ident, const Anope::string &host, const Anope::string &creator, time_t created)
{
	Set(&NickType::vhost_ident, ident);
	Set(&NickType::vhost_host, host);
	Set(&NickType::vhost_creator, creator);
	Set(&NickType::vhost_created, created);
}

void NickImpl::RemoveVhost()
{
	Anope::string e;
	Set(&NickType::vhost_ident, e);
	Set(&NickType::vhost_host, e);
	Set(&NickType::vhost_creator, e);
	Set(&NickType::vhost_created, 0);
}

bool NickImpl::HasVhost()
{
	return !GetVhostHost().empty();
}

Anope::string NickImpl::GetVhostIdent()
{
	return Get(&NickType::vhost_ident);
}

void NickImpl::SetVhostIdent(const Anope::string &i)
{
	Set(&NickType::vhost_ident, i);
}

Anope::string NickImpl::GetVhostHost()
{
	return Get(&NickType::vhost_host);
}

void NickImpl::SetVhostHost(const Anope::string &h)
{
	Set(&NickType::vhost_host, h);
}

Anope::string NickImpl::GetVhostCreator()
{
	return Get(&NickType::vhost_creator);
}

void NickImpl::SetVhostCreator(const Anope::string &c)
{
	Set(&NickType::vhost_creator, c);
}

time_t NickImpl::GetVhostCreated()
{
	return Get(&NickType::vhost_created);
}

void NickImpl::SetVhostCreated(const time_t &cr)
{
	Set(&NickType::vhost_created, cr);
}