]> ruin.nu Git - NDIRC.git/blob - Access.pm
modules
[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 ND::IRC::Access;
20 use strict;
21 use warnings;
22 require Exporter;
23
24 our @ISA = qw/Exporter/;
25
26 our @EXPORT = qw/officer dc bc hc scanner intel masterop masterinvite/;
27
28 sub officer {
29         return groupmember("HO");
30 };
31 sub dc {
32         return groupmember("HD");
33 };
34 sub bc {
35         return groupmember("HB");
36 };
37 sub hc {
38         return groupmember("H");
39 };
40 sub scanner {
41         return groupmember("HS");
42 };
43 sub intel {
44         return groupmember("HI");
45 };
46
47 sub masterop {
48         return groupmember("HO");
49 };
50 sub masterinvite {
51         return groupmember("H");
52 };
53
54 sub groupmember {
55         my ($groups) = @_;
56         $groups = join ",", map {"'$_'"} split //, $groups;
57         my $f = $ND::DBH->prepare("SELECT username FROM users NATURAL JOIN groupmembers NATURAL JOIN groups WHERE flag IN ('T',$groups) AND hostmask ILIKE ?");
58         $f->execute($ND::address);
59         if ($f->fetchrow()){
60                 return 1;
61         }
62         return 0;
63 };
64
65 1;