[project @ 2005-06-23 06:43:12 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
16// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17
18#include "Utils.H"
19#include "User.H"
20
21User::User(String n, String uh, String channel, int mode, UserList *ul)
22 : mode(mode), floodNum(0),
23 userListItem(ul->getUserListItem(n + "!" + uh, channel)),
24 nick(n), userhost(uh),
25 userkey("")
26{ }
27
28User::User(String n, int mode)
29 : mode(mode), floodNum(0),
30 userListItem(0), nick(n), userhost("")
31{ }
32
33int
34User::getLevel()
35{
36 if (userListItem && userListItem->identified &&
37 (userListItem->expirationDate == -1 ||
38 userListItem->expirationDate > time(0)))
39 return userListItem->level;
40 return 0;
41}
42
43int
44User::getProt()
45{
46 if (userListItem && userListItem->identified &&
47 (userListItem->expirationDate == -1 ||
48 userListItem->expirationDate > time(0)))
49 return userListItem->prot;
50 return 0;
51}
52
53bool
54User::getAop()
55{
56 if (userListItem && userListItem->identified &&
57 (userListItem->expirationDate == -1 ||
58 userListItem->expirationDate < time(0)))
59 return userListItem->aop;
60 return false;
61}