X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=Commands%2FUsermgm.pm;h=a8683c8c211c57e30c5012e098fe7aacea12e38e;hb=46d32b072c0eb2c390a981616bdec029eb179d1d;hp=8a87f8e1fae85147459336c9e4bcf654420c6f29;hpb=5f7e87f30570220f44035831a51c881ee3ca34b7;p=NDIRC.git diff --git a/Commands/Usermgm.pm b/Commands/Usermgm.pm index 8a87f8e..a8683c8 100644 --- a/Commands/Usermgm.pm +++ b/Commands/Usermgm.pm @@ -180,4 +180,227 @@ WHERE flag = $1 $c->reply("$count Users with flag $flag: $users"); } +sub laston + : Help(syntax: .laston flag [days] | lists users and the number of days since they were last seen (irc|forum|claim). If days is specified it will only list users with at least that amount of idle time. Days can also specify forum and claim with irc|forum|claim syntax) + : ACL(irc_laston) +{ + my ($self,$c,$msg) = @_; + my ($flag,$min,$forum,$claim) = $msg =~ /^(\w)(?: (\d+)(?:\|(\d+)\|(\d+))?)?$/ + or die 'ARGS'; + $min //= 0; + + my $f = $c->model->prepare(q{ +SELECT username, COALESCE(last::text,'?') AS last + ,COALESCE(lastforum::text,'?') AS lastforum + ,COALESCE(lastclaim::text,'?') AS lastclaim +FROM (SELECT username + ,date_part('day',now() - laston)::int AS last + ,date_part('day',now() - + (SELECT max(time) FROM forum_thread_visits WHERE uid = u.uid)) AS lastforum + ,date_part('day',now() - + (SELECT max(timestamp) FROM raid_claims WHERE uid = u.uid)) AS lastclaim + FROM users u + NATURAL JOIN groupmembers + NATURAL JOIN groups + WHERE flag = $1 + ) a +WHERE COALESCE(last >= $2,TRUE) AND COALESCE(lastforum >= $3,TRUE) + AND COALESCE(lastclaim >= $4,TRUE) +ORDER BY last DESC, lastforum DESC, lastclaim DESC + }); + $f->execute($flag,$min,$forum,$claim); + + my $text; + my $i = 0; + while (my $user = $f->fetchrow_hashref){ + $text .= "$user->{username}($user->{last}|$user->{lastforum}|$user->{lastclaim}) "; + $i++; + } + $c->reply("$i Users(days) with flag $flag: $text"); +} + + +sub lastseen + : Help(syntax: .lastseen username | Shows the number of days since the user(s) last visited irc, forum and raids) + : ACL(irc_lastseen) +{ + my ($self,$c,$msg) = @_; + my ($username) = $msg =~ /^(\S+)$/ or die 'ARGS'; + + my $f = $c->model->prepare(q{ +SELECT username, COALESCE(date_part('day',now() - laston)::text,'?') AS last + ,COALESCE(date_part('day',now() - (SELECT max(time) + FROM forum_thread_visits WHERE uid = u.uid))::text,'?') AS lastforum + ,COALESCE(date_part('day',now() - (SELECT max(timestamp) + FROM raid_claims WHERE uid = u.uid))::text,'?') AS lastclaim +FROM users u +WHERE username ILIKE $1 ORDER BY lower(username) + }); + $f->execute($username); + + my $text; + my $i = 0; + while (my $user = $f->fetchrow_hashref){ + $text .= "$user->{username}($user->{last}|$user->{lastforum}|$user->{lastclaim}) "; + $i++; + } + $c->reply("$i Users(days): $text"); +} + +sub getships + : Help(Usage: .getships ship | % can be used as wildcard, e.g. beet%, shipshome shows the number of ships currently home) + : Alias(shipshome) + : ACL(irc_getships) +{ + my ($self,$c,$msg) = @_; + my ($ship) = $msg =~ /^(\S+)$/ or die 'ARGS'; + my $dbh = $c->model; + + my $f = $dbh->prepare(q{ +SELECT username,SUM(fs.amount) AS amount +FROM users u + JOIN (SELECT DISTINCT ON (planet) planet,fid FROM fleets + WHERE mission = 'Full fleet' AND name <> 'Unit' + ORDER BY planet,tick DESC,fid DESC + ) f USING (planet) + 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 + }); + if ($self->name eq 'shipshome'){ + $f = $dbh->prepare(q{ +SELECT username,SUM(amount) AS amount +FROM available_ships +WHERE ship ILIKE ? AND uid IN (SELECT uid FROM groupmembers WHERE gid = 2) +GROUP BY username ORDER BY amount DESC + }); + } + $f->execute($ship); + my $text; + my $i = 0; + my $total = 0; + while (my $user = $f->fetchrow_hashref){ + $text .= "$user->{username}: $user->{amount} "; + $i++; + $total += $user->{amount}; + } + if ($text){ + $c->reply("$i Users with $total $ship: $text"); + }else{ + $c->reply("Couldn't find any user with $ship"); + } +} + +sub getfleet + : Help(Usage: .getfleet username | % can be used as wildcard, e.g. barr%) + : ACL(irc_getfleet) +{ + my ($self,$c,$msg) = @_; + my ($nick) = $msg =~ /^(\S+)$/ or die 'ARGS'; + my $dbh = $c->model; + + my $f = $dbh->prepare(q{ +SELECT fs.ship, fs.amount, username +FROM fleet_ships fs + JOIN (SELECT fid,username + FROM fleets f + JOIN users u USING (planet) + WHERE mission = 'Full fleet' AND name <> 'Unit' + AND username ILIKE $1 + ORDER BY planet,tick DESC,fid DESC + LIMIT 1 + ) f USING (fid) +ORDER BY num + }); + $f->execute($nick); + my $text; + my $username; + while (my $ship = $f->fetchrow_hashref){ + unless (defined $username) { + $username = $ship->{username}; + $text = "$username has: " + } + $text .= "$ship->{ship} $ship->{amount} "; + } + if ($text){ + $c->reply($text); + }else{ + $c->reply("Couldn't find any fleet for $nick"); + } +} + +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; +} + 1;