]> ruin.nu Git - NDIRC.git/blobdiff - Commands/Usermgm.pm
Converted laston, split half the command into lastseen
[NDIRC.git] / Commands / Usermgm.pm
index d7d86b0c007e79e480db07f9048d02a3d739609e..3563b84fc12b7754b6dfb41330adff97ea6ed8cb 100644 (file)
@@ -53,4 +53,198 @@ INSERT INTO users (username,hostmask,pnick,password) VALUES(?,?,?,'')
        }
 }
 
+sub deactivateuser
+       : Help(syntax: .-user nick | nick must be alphanum characters, if no pnick is given then it will be set to nick)
+       : Alias(-user)
+       : ACL(irc_deactivateuser)
+{
+       my ($self,$c,$msg) = @_;
+
+       my ($nick) = $msg =~ /^(\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 ($uid,$username) = $f->fetchrow();
+
+       if ($f->rows == 1){
+               my $updated = $dbh->do(q{
+UPDATE users SET hostmask = ?, password = '' WHERE uid = ?
+               },undef,$username,$uid);
+               if ($updated > 0){
+                       my $groups = $dbh->do(q{DELETE FROM groupmembers WHERE uid = ?},undef,$uid);
+                       $groups += 0;
+                       $c->reply("<b>$username</b> has been deactivated. Removed from $groups groups.");
+               }else{
+                       $c->reply("Something went wrong when trying to modify <b>$username</b>");
+               }
+       }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 chattr
+       : Help(syntax: .chattr username [-]flags | % can be used for wildcards \%arro% will match barrow, if a - is given then flags will be removed, otherwise added)
+       : ACL(irc_chattr)
+{
+       my ($self,$c,$msg) = @_;
+
+       my ($nick, $flags) = $msg =~ /^(\S+) ((\+|-)?\w+)$/ 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 $update;
+               if ($flags =~ /^(-)/){
+                       $update = $dbh->prepare(q{
+DELETE FROM groupmembers WHERE uid = $1 AND
+       gid IN (SELECT gid FROM groups WHERE flag = ANY($2))
+                       });
+               }else{
+                       $update = $dbh->prepare(q{
+INSERT INTO groupmembers (uid,gid) (SELECT $1,gid FROM groups
+       WHERE flag = ANY($2) AND gid NOT IN (SELECT gid FROM groupmembers WHERE uid = $1))
+                       });
+               }
+               my @flags = split /\W*/,$flags;
+               $update->execute($user->{uid},\@flags);
+               $update = $dbh->prepare(q{
+SELECT concat(flag)
+FROM (SELECT uid,flag FROM groupmembers NATURAL JOIN groups ORDER BY uid,flag ) g
+WHERE uid = ?
+               });
+               $flags = $dbh->selectrow_array($update,undef,$user->{uid});
+               $c->reply("Flags for <b>$user->{username}</b> are now: $flags");
+       }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 whois
+       : Help(syntax: .whois [username] | % can be used for wildcards \%arro% will match barrow. If no username is given then all flags will be listed)
+       : Alias(flags)
+       : ACL(irc_whois)
+{
+       my ($self,$c,$msg) = @_;
+       my ($nick) = $msg =~ /^(\S+)?$/ or die 'ARGS';
+       my $dbh = $c->model;
+
+       unless ($nick){
+               my ($flags) = $dbh->selectrow_array(q{
+SELECT TRIM(', ' FROM concat(flag||':'||groupname||', ')) FROM groups
+               });
+               $c->reply("Current flags: $flags");
+               return;
+       }
+
+       my $f = $dbh->prepare(q{
+SELECT username, pnick, hostmask, concat(flag) AS flags
+FROM users u
+       LEFT OUTER JOIN (SELECT uid,flag FROM groupmembers
+               NATURAL JOIN groups ORDER BY uid,flag ) g USING (uid)
+WHERE username ILIKE ?
+GROUP BY username,pnick,hostmask LIMIT 5
+               });
+       $f->execute($nick);
+       while (my $user = $f->fetchrow_hashref){
+               $c->reply("<b>$user->{username} (/$user->{pnick})</b> flags: ($user->{flags}) host: $user->{hostmask}");
+       }
+       if ($f->rows == 0){
+               $c->reply("No hit, maybe spelling mistake, or add % as wildcard");
+       }
+}
+
+sub flag
+       : Help(syntax: .flag flag | Lists all users with the given flag.)
+       : ACL(irc_flag)
+{
+       my ($self,$c,$msg) = @_;
+       my ($flag) = $msg =~ /^(\w)$/ or die 'ARGS';
+
+       my $f = $c->model->prepare(q{
+SELECT TRIM(', ' FROM concat(username||', ')),count(username)
+FROM (SELECT uid, username FROM users ORDER BY username) u
+       JOIN groupmembers gm USING (uid)
+       JOIN groups g USING (gid)
+WHERE flag = $1
+               });
+       my ($users,$count) = $c->model->selectrow_array($f,undef,$flag);
+       $c->reply("<b>$count</b> Users with flag <b>$flag</b>: $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("<b>$i</b> Users(days) with flag <b>$flag</b>: $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("<b>$i</b> Users(days): $text");
+}
+
 1;