X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=Commands%2FUsermgm.pm;h=e85638562653df4206abff60a1ae6a90c578f42d;hb=ae37bc6b64270f8c65298a36fce1f4bad761231f;hp=21fe6375322b36bf0a4beb09e39b80339d704181;hpb=04c0624b174ff51ccd6f1847d342e79a98bfa29b;p=NDIRC.git diff --git a/Commands/Usermgm.pm b/Commands/Usermgm.pm index 21fe637..e856385 100644 --- a/Commands/Usermgm.pm +++ b/Commands/Usermgm.pm @@ -259,10 +259,10 @@ sub getships my $f = $dbh->prepare(q{ SELECT username,SUM(fs.amount) AS amount FROM users u - JOIN (SELECT DISTINCT ON (planet) planet,fid FROM fleets + JOIN (SELECT DISTINCT ON (pid) pid,fid FROM fleets WHERE mission = 'Full fleet' AND name <> 'Unit' - ORDER BY planet,tick DESC,fid DESC - ) f USING (planet) + ORDER BY pid,tick DESC,fid DESC + ) f USING (pid) JOIN fleet_ships fs USING (fid) WHERE ship ILIKE $1 AND uid IN (SELECT uid FROM groupmembers WHERE gid = 2) GROUP BY username ORDER BY amount DESC @@ -304,10 +304,10 @@ SELECT fs.ship, fs.amount, username FROM fleet_ships fs JOIN (SELECT fid,username FROM fleets f - JOIN users u USING (planet) + JOIN users u USING (pid) WHERE mission = 'Full fleet' AND name <> 'Unit' AND username ILIKE $1 - ORDER BY planet,tick DESC,fid DESC + ORDER BY pid,tick DESC,fid DESC LIMIT 1 ) f USING (fid) ORDER BY num @@ -329,4 +329,159 @@ ORDER BY num } } +sub sethost + : Help(Usage: .sethost username [host] | if host isn't given then it resets to netgamers host) + : ACL(irc_sethost) +{ + my ($self,$c,$msg) = @_; + my ($nick,$host) = $msg =~ /^(\S+)(?: (\S+))?$/ or die 'ARGS'; + my $dbh = $c->model; + + my $f = $dbh->prepare(q{ +SELECT uid,username,pnick,hostmask FROM users WHERE username ILIKE ? + }); + $f->execute($nick); + my $user = $f->fetchrow_hashref; + if ($f->rows == 1){ + $host //= "$user->{pnick}.users.netgamers.org"; + eval{ + $dbh->do(q{UPDATE users SET hostmask = ? WHERE uid = ?} + ,undef,$host,$user->{uid}); + $c->reply("Updated $user->{username}'s host to: $host"); + }; + if($@){ + if ($@ =~ /duplicate key value violates unique constraint/){ + my ($username, $hostname) = $dbh->selectrow_array(q{ +SELECT username,hostmask FROM users WHERE hostmask ILIKE $1 + },undef,$host); + $c->reply("Problem, $username already uses host $hostname."); + }else{ + die $@; + } + } + }elsif ($f->rows == 0){ + $c->reply("No hit, maybe spelling mistake, or add % as wildcard"); + }else{ + $c->reply("More than 1 user matched, please refine the search"); + } + $f->finish; +} + +sub setpnick + : Help(Usage: .setpnick username pnick | Changes a user's pnick) + : ACL(irc_setpnick) +{ + my ($self,$c,$msg) = @_; + my ($nick,$pnick) = $msg =~ /^(\S+) (\S+)$/ or die 'ARGS'; + my $dbh = $c->model; + + my $f = $dbh->prepare(q{SELECT uid,username FROM users WHERE username ILIKE ?}); + $f->execute($nick); + my $user = $f->fetchrow_hashref; + if ($f->rows == 1){ + my $hostname = "$pnick.users.netgamers.org"; + eval{ + $dbh->do(q{UPDATE users SET pnick = ?, hostmask = ? WHERE uid = ?} + ,undef,$pnick,$hostname,$user->{uid}); + $c->reply("Updated $user->{username}'s pnick to: $pnick and hostname to $hostname"); + }; + if($@){ + if ($@ =~ /duplicate key value violates unique constraint/){ + my ($username, $hostname, $pnick) = $dbh->selectrow_array(q{ +SELECT username,hostmask,pnick FROM users WHERE hostmask ILIKE $1 OR pnick ILIKE $2 + },undef,$hostname, $pnick); + $c->reply("Problem, $username already uses host $hostname and pnick $pnick."); + }else{ + die $@; + } + } + }elsif ($f->rows == 0){ + $c->reply("No hit, maybe spelling mistake, or add % as wildcard"); + }else{ + $c->reply("More than 1 user matched, please refine the search"); + } + $f->finish; +} + +sub a + : Help(Usage: .a username [points] | % can be used for wildcards %arro% will match barrow, if the number of points isn't specified, then 1 will be assumed.) + : ACL(irc_a) +{ + my ($self,$c,$msg) = @_; + my ($nick,$points) = $msg =~ /^(\S+)(?: (-?(:?\d+|\d*\.\d+)))?$/ or die 'ARGS'; + $points //= 1; + + my ($fleets) = $c->model->selectrow_array(q{ +SELECT count(*) FROM raids r + JOIN raid_targets rt ON r.id = rt.raid + JOIN raid_claims rc ON rt.id = rc.target +WHERE not launched AND tick + 24 > tick() + AND uid = (SELECT uid FROM users WHERE username ILIKE $1); + },undef,$nick); + + if ($fleets > 0 && $points > 0){ + $c->reply("$nick has $fleets claimed waves the last 24 ticks that aren't marked as launched, so no points."); + return; + } + addPoints($c, 'attack', $nick, $points); +} + +sub d + : Help(Usage: .d username [points] | % can be used for wildcards %arro% will match barrow, if the number of points isn't specified, then 1 will be assumed.) + : ACL(irc_d) + : Type(def) +{ + my ($self,$c,$msg) = @_; + my ($nick,$points) = $msg =~ /^(\S+)(?: (-?(:?\d+|\d*\.\d+)))?$/ or die 'ARGS'; + + addPoints($c, 'defense', $nick, $points); +} + +sub s + : Help(Usage: .s username [points] | % can be used for wildcards %arro% will match barrow, if the number of points isn't specified, then 1 will be assumed.) + : ACL(irc_s) +{ + my ($self,$c,$msg) = @_; + my ($nick,$points) = $msg =~ /^(\S+)(?: (-?(:?\d+|\d*\.\d+)))?$/ or die 'ARGS'; + + addPoints($c, 'scan', $nick, $points); +} + +sub h + : Help(Usage: .h username [points] | % can be used for wildcards %arro% will match barrow, if the number of points isn't specified, then 1 will be assumed.) + : ACL(irc_h) +{ + my ($self,$c,$msg) = @_; + my ($nick,$points) = $msg =~ /^(\S+)(?: (-?(:?\d+|\d*\.\d+)))?$/ or die 'ARGS'; + + addPoints($c, 'humor', $nick, $points); +} + +sub addPoints { + my ($c,$type, $nick, $points) = @_; + $points //= 1; + + my $dbh = $c->model; + + if ($points*$points > 400){ + $c->reply("Values between -20 and 20 please"); + return; + } + + my $f = $dbh->prepare(q{SELECT uid,username FROM users WHERE username ILIKE ?}); + $f->execute($nick); + my $user = $f->fetchrow_hashref; + if ($f->rows == 1){ + $type .= "_points"; + $dbh->do(qq{UPDATE users SET $type = $type + ? WHERE uid = ?} + ,undef,$points,$user->{uid}); + $c->reply("$user->{username} has been given $points $type"); + }elsif ($f->rows == 0){ + $c->reply("No hit, maybe spelling mistake, or add % as wildcard"); + }else{ + $c->reply("More than 1 user matched, please refine the search"); + } + $f->finish; +} + 1;