]> ruin.nu Git - NDIRC.git/blob - Access.pm
getScans and fixed typo
[NDIRC.git] / Access.pm
1 #**************************************************************************
2 #   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
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 #   (at your option) 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                         *
16 #   Free Software Foundation, Inc.,                                       *
17 #   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
18 #**************************************************************************/
19 package NDIRC::Access;
20 use strict;
21 use warnings;
22 require Exporter;
23
24 our @ISA = qw/Exporter/;
25
26 our @EXPORT = qw/member officer dc bc ia hc scanner intel masterop masterinvite/;
27
28 sub member {
29         return groupmember("HM");
30 };
31 sub officer {
32         return groupmember("HO");
33 };
34 sub dc {
35         return groupmember("HD");
36 };
37 sub bc {
38         return groupmember("HB");
39 };
40 sub ia {
41         return groupmember("HR");
42 };
43 sub hc {
44         return groupmember("H");
45 };
46 sub scanner {
47         return groupmember("HS");
48 };
49 sub intel {
50         return groupmember("HI");
51 };
52
53 sub masterop {
54         return groupmember("HO");
55 };
56 sub masterinvite {
57         return groupmember("H");
58 };
59
60 sub groupmember {
61         my ($groups) = @_;
62         $groups = join ",", map {"'$_'"} split //, $groups;
63         my $f = $ND::DBH->prepare("SELECT uid,username FROM users NATURAL JOIN groupmembers NATURAL JOIN groups WHERE flag IN ('T',$groups) AND lower(hostmask) = ?") or print $ND::DBH->errstr;
64         $f->execute(lc($ND::address));
65         my $user = $f->fetchrow_hashref;
66         return $user;
67 };
68
69 1;