]> ruin.nu Git - NDIRC.git/blob - Members.pm
Don't allow pm replies to be sent to channel
[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 NDIRC::Members;
20 use strict;
21 use warnings;
22 use NDIRC::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 ($msg, $command) = @_;
32         if (1){ #TODO: add check for member
33                 my $f = $ND::DBH->prepare(<<SQL
34         SELECT (c.landing_tick - tick()) AS eta, concat(i.shiptype||'/') AS shiptype, dc.username
35         FROM calls c 
36                 JOIN incomings i ON i.call = c.id
37                 LEFT OUTER JOIN users dc ON dc.uid = c.dc
38                 JOIN users u ON u.uid = c.member
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 $command || length $calls > 0){
53                         $ND::server->command("msg $ND::target Current calls: $calls");
54                 }
55         }
56 }
57
58 sub showraids {
59         if (1){ #TODO: add check for member
60                 my $f = $ND::DBH->prepare(<<SQL
61         SELECT id FROM raids 
62         WHERE open AND not removed AND tick + waves - 7 > tick()
63         AND id IN (SELECT raid FROM raid_access WHERE gid = 2)
64 SQL
65 );
66                 $f->execute();
67                 my $calls = "";
68                 while (my ($raid) = $f->fetchrow()){
69                         $calls .= " https://nd.ruin.nu/raids/view/$raid |"
70                 }
71                 $calls = "No open future raids" if ($f->rows == 0);
72                 chop($calls);
73                 $ND::server->command("msg $ND::target $calls");
74         }
75 }
76
77 sub checkPoints {
78         my ($nick,$command) = @_;
79         my $f;
80         if ($nick){
81                 if (officer() || dc() || bc() || ia()){
82                         $f = $ND::DBH->prepare("SELECT username, attack_points, defense_points, scan_points, humor_points FROM users WHERE username ILIKE ?");
83                 }else{
84                         $ND::server->command("msg $ND::target Only officers are allowed to check for others");
85                 }
86         } else{
87                 $f = $ND::DBH->prepare("SELECT username, attack_points, defense_points, scan_points, humor_points FROM users WHERE hostmask ILIKE ?");
88                 $nick = $ND::address;
89         }
90         if ($f){
91                 $f->execute($nick);
92                 while (my @row = $f->fetchrow()){
93                         $ND::server->command("msg $ND::target $row[0] has $row[1] Attack, $row[2] Defense, $row[3] Scan, $row[4] Humor points");
94                 }
95         }
96 }
97
98 sub findSMS {
99         my ($nick,$command) = @_;
100         unless (defined $nick){
101                 $ND::server->command("notice $ND::nick syntax: .$command nick | % can be used for wildcards \%arro\% will match barrow");
102                 return;
103         }
104         if (officer() || dc()){
105                 my $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::nick $ND::B$username$ND::B has sms $ND::B$sms$ND::B");
108                 }else{
109                         $ND::server->command("notice $ND::nick No hit, maybe spelling mistake, or add % as wildcard");
110                 }
111         }
112 }
113
114 1;