[project @ 2006-02-03 22:08:15 by unknown_lamer]
[clinton/bobotpp.git] / source / User.C
CommitLineData
cb21075d 1// User.C -*- C++ -*-
2// Copyright (c) 1997, 1998 Etienne BERNARD
3
4// This program is free software; you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation; either version 2 of the License, or
7// any later version.
8
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License
15// along with this program; if not, write to the Free Software
7b564711 16// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17// 02110-1301, USA.
cb21075d 18
19#include "Utils.H"
20#include "User.H"
21
22User::User(String n, String uh, String channel, int mode, UserList *ul)
23 : mode(mode), floodNum(0),
24 userListItem(ul->getUserListItem(n + "!" + uh, channel)),
25 nick(n), userhost(uh),
26 userkey("")
27{ }
28
29User::User(String n, int mode)
30 : mode(mode), floodNum(0),
31 userListItem(0), nick(n), userhost("")
32{ }
33
34int
35User::getLevel()
36{
37 if (userListItem && userListItem->identified &&
38 (userListItem->expirationDate == -1 ||
39 userListItem->expirationDate > time(0)))
40 return userListItem->level;
41 return 0;
42}
43
44int
45User::getProt()
46{
47 if (userListItem && userListItem->identified &&
48 (userListItem->expirationDate == -1 ||
49 userListItem->expirationDate > time(0)))
50 return userListItem->prot;
51 return 0;
52}
53
54bool
55User::getAop()
56{
57 if (userListItem && userListItem->identified &&
58 (userListItem->expirationDate == -1 ||
59 userListItem->expirationDate < time(0)))
60 return userListItem->aop;
61 return false;
62}