X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=Commands%2FUsermgm.pm;h=3501120f10d38b03f8e2b6343f5c98bea056dbf9;hb=fc37239d5f764e9f0f7c113a03fc52d264699725;hp=eed0d19718b2774bfab1f951d054e928a3dd4eeb;hpb=17aabe51d5b62ae4bcae5ec3b02757ab5aa65b77;p=NDIRC.git diff --git a/Commands/Usermgm.pm b/Commands/Usermgm.pm index eed0d19..3501120 100644 --- a/Commands/Usermgm.pm +++ b/Commands/Usermgm.pm @@ -26,6 +26,7 @@ use NDIRC::Dispatcher; command '+user' => { help => q(syntax: .+user username [pnick] | username must be alphanum characters, if no pnick is given then it will be set to the same as username), + type => q(usermgmt), acl => 'irc_adduser' }, class extends NDIRC::Command { method execute ($c,$msg) { @@ -53,6 +54,7 @@ INSERT INTO users (username,hostmask,pnick,password) VALUES(?,?,?,'') command '-user' => { help => q(syntax: .-user nick | nick must be alphanum characters, if no pnick is given then it will be set to nick), + type => q(usermgmt), acl => 'irc_deactivateuser' }, class extends NDIRC::Command { method execute ($c,$msg) { @@ -85,6 +87,7 @@ UPDATE users SET hostmask = ?, password = '' WHERE uid = ? command chattr => { help => q(syntax: .chattr username [-]flags | % can be used for wildcards \%arro% will match barrow, if a - is given then flags will be removed, otherwise added), + type => q(usermgmt), acl => 'irc_chattr' }, class extends NDIRC::Command { method execute ($c,$msg) { @@ -423,10 +426,10 @@ my $points = class extends NDIRC::Command { method execute ($c,$msg) { my ($nick,$points) = $msg =~ /^(\S+)(?: (-?(:?\d+|\d*\.\d+)))?$/ or die 'ARGS'; - return unless $self->check($c,$nick,$points); - $points //= 1; + return unless $self->check($c,$nick,$points); + my $dbh = $c->model; if ($points*$points > 400){ @@ -496,4 +499,54 @@ command h => { acl => q(irc_h), }, $points; +command getanti => { + help => q(Usage: .getanti class [eta] | class is the target class, like fi or bs, eta is optional max eta for the ships.), + acl => q(irc_getships), +}, class extends NDIRC::Command { + method execute ($c,$msg) { + my ($class,$eta) = $msg =~ /^(\S+)(?: (\d+))?$/ or die 'ARGS'; + my $dbh = $c->model; + + $eta //= 9; + + my @classes = qw/Fi Co Fr De Cr Bs/; + for (@classes){ + if (lc $class eq lc $_){ + $class = $_; + last; + } + } + + while ($eta < 9){ + pop @classes; + pop @classes; + $eta++; + } + + my $f = $dbh->prepare(q{ +SELECT username, ship, amount, CASE WHEN $1 = t1 THEN 't1' ELSE 't2' END AS t +FROM available_ships a + JOIN ship_stats s USING (ship) +WHERE uid IN (SELECT uid FROM groupmembers WHERE gid = 'M') + AND class = ANY($2) + AND $1 IN (t1,t2) +ORDER BY amount*(metal+crystal+eonium)*CASE WHEN $1 = t1 THEN 1.0 ELSE 0.6 END DESC + }); + $f->execute($class,\@classes); + my $text; + my $i = 0; + my $total = 0; + while (my $user = $f->fetchrow_hashref){ + $text .= "($user->{username}: $user->{ship} $user->{amount} $user->{t}) "; + $i++; + $total += $user->{amount}; + } + if ($text){ + $c->reply("$i fleets with anti-$class: $text"); + }else{ + $c->reply("Couldn't find any user with anti-$class"); + } + } +}; + 1;