bdbf423f93e1de8fd05780043c04ac88955c6ea9
[clinton/bobotpp.git] / source / User.C
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., 51 Franklin Street, Fifth Floor, Boston, MA
17 // 02110-1301, USA.
18
19 #include "User.H"
20
21 #include "UserListItem.H"
22 #include "Utils.H"
23
24 User::User(String n, String uh, String channel, int mode, UserList *ul)
25 : mode(mode), floodNum(0),
26 userListItem(ul->getUserListItem(n + "!" + uh, channel)),
27 nick(n), userhost(uh),
28 userkey("")
29 { }
30
31 User::User(String n, int mode)
32 : mode(mode), floodNum(0),
33 userListItem(0), nick(n), userhost("")
34 { }
35
36 int
37 User::getLevel()
38 {
39 if (userListItem && userListItem->identified &&
40 (userListItem->expirationDate == -1 ||
41 userListItem->expirationDate > time(0)))
42 return userListItem->level;
43 return 0;
44 }
45
46 int
47 User::getProt()
48 {
49 if (userListItem && userListItem->identified &&
50 (userListItem->expirationDate == -1 ||
51 userListItem->expirationDate > time(0)))
52 return userListItem->prot;
53 return 0;
54 }
55
56 bool
57 User::getAop()
58 {
59 if (userListItem && userListItem->identified &&
60 (userListItem->expirationDate == -1 ||
61 userListItem->expirationDate < time(0)))
62 return userListItem->aop;
63 return false;
64 }