]> ruin.nu Git - NDIRC.git/blob - Members.pm
modules
[NDIRC.git] / Members.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::Members;
20 use strict;
21 use warnings;
22 use ND::IRC::Access;
23 use ND::DB;
24 require Exporter;
25
26 our @ISA = qw/Exporter/;
27
28 our @EXPORT = qw/currentCalls showraids checkPoints findSMS/;
29
30 sub currentCalls {
31         my ($verbose) = @_;
32         DB();
33         if (1){ #TODO: add check for member
34                 my $f = $ND::DBH->prepare(<<SQL
35         SELECT (c.landing_tick - tick()) AS eta, concat(i.shiptype||'/') AS shiptype, dc.username
36         FROM calls c 
37                 JOIN incomings i ON i.call = c.id
38                 LEFT OUTER JOIN users dc ON dc.uid = c.dc
39         WHERE open AND (c.landing_tick - tick()) >= 7
40         GROUP BY c.id,c.landing_tick,dc.username
41         ORDER BY c.landing_tick;
42 SQL
43 );
44                 $f->execute();
45                 my $calls = "";
46                 while (my @row = $f->fetchrow()){
47                         chop($row[1]);
48                         my $dc = defined $row[2] ? $row[2] : '';
49                         $calls .= " (Anti $row[1] ETA: $row[0] DC: $dc) |"
50                 }
51                 chop($calls);
52                 if (defined $verbose || length $calls > 0){
53                         $ND::server->command("msg $ND::target Current calls: $calls");
54                 }
55         }
56 }
57
58 sub showraids {
59         DB();
60         if (1){ #TODO: add check for member
61                 my $f = $ND::DBH->prepare(<<SQL
62         SELECT id FROM raids 
63         WHERE open AND not removed AND tick + waves - 7 > tick()
64         AND id IN (SELECT raid FROM raid_access WHERE gid = 2)
65 SQL
66 );
67                 $f->execute();
68                 my $calls = "";
69                 while (my ($raid) = $f->fetchrow()){
70                         $calls .= " https://nd.ruin.nu/raids?raid=$raid |"
71                 }
72                 $calls = "No open future raids" if ($f->rows == 0);
73                 chop($calls);
74                 $ND::server->command("msg $ND::target $calls");
75         }
76 }
77
78 sub checkPoints {
79         my ($nick) = @_;
80         DB();
81         my $f;
82         if ($nick){
83                 if (officer() || dc() || bc()){
84                         $f = $ND::DBH->prepare("SELECT username, attack_points, defense_points, scan_points, humor_points FROM users WHERE username ILIKE ?");
85                 }else{
86                         $ND::server->command("msg $ND::target Only officers are allowed to check for others");
87                 }
88         } else{
89                 $f = $ND::DBH->prepare("SELECT username, attack_points, defense_points, scan_points, humor_points FROM users WHERE hostmask ILIKE ?");
90                 $nick = $ND::address;
91         }
92         if ($f){
93                 $f->execute($nick);
94                 while (my @row = $f->fetchrow()){
95                         $ND::server->command("msg $ND::target $row[0] has $row[1] Attack, $row[2] Defense, $row[3] Scan, $row[4] Humor points");
96                 }
97         }
98 }
99
100 sub findSMS {
101         my ($nick) = @_;
102         DB();
103         my $f;
104         if (officer() || dc()){
105                 $f = $ND::DBH->prepare("SELECT username,COALESCE(sms,'nothing added') FROM users WHERE username ILIKE ?");
106                 if (my ($username,$sms) = $ND::DBH->selectrow_array($f,undef,$nick)){
107                         $ND::server->command("notice $ND::target $ND::B$username$ND::B has sms $ND::B$sms$ND::B");
108                 }else{
109                         $ND::server->command("notice $ND::target No hit, maybe spelling mistake, or add % as wildcard");
110                 }
111         }else{
112                 $ND::server->command("notice $ND::target Only dcs and above are allowed to check for others");
113         }
114 }
115
116 1;