[project @ 2005-06-23 06:43:12 by unknown_lamer]
[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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17
18 #include "Utils.H"
19 #include "User.H"
20
21 User::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
28 User::User(String n, int mode)
29 : mode(mode), floodNum(0),
30 userListItem(0), nick(n), userhost("")
31 { }
32
33 int
34 User::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
43 int
44 User::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
53 bool
54 User::getAop()
55 {
56 if (userListItem && userListItem->identified &&
57 (userListItem->expirationDate == -1 ||
58 userListItem->expirationDate < time(0)))
59 return userListItem->aop;
60 return false;
61 }