]> ruin.nu Git - NDIRC.git/blobdiff - Commands/Usermgm.pm
Move getpass to Usermgm
[NDIRC.git] / Commands / Usermgm.pm
index 02ff82df133a1b9c56a4ddab662d503545586479..2b6176041287019a27c1c5af76e5a191612ba0bf 100644 (file)
@@ -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) {
@@ -44,7 +45,7 @@ FROM users WHERE username = $1 OR hostmask = $2 OR pnick = $3
                        $c->reply("<b>$username ($p_nick)</b> already exists with host: <b>$hostname</b>");
                }else{
                        $dbh->do(q{
-INSERT INTO users (username,hostmask,pnick,password) VALUES(?,?,?,'')
+INSERT INTO users (username,hostmask,pnick) VALUES($1,$2,$3)
                                },undef,$nick,$host,$pnick);
                        $c->reply("Added <b>$nick(/$pnick)</b> with host: <b>$host</b>");
                }
@@ -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) {
@@ -65,7 +67,7 @@ command '-user' => {
 
                if ($f->rows == 1){
                        my $updated = $dbh->do(q{
-UPDATE users SET hostmask = ?, password = '' WHERE uid = ?
+UPDATE users SET hostmask = $1, password = NULL WHERE uid = $2
                                },undef,$username,$uid);
                        if ($updated > 0){
                                my $groups = $dbh->do(q{DELETE FROM groupmembers WHERE uid = ?},undef,$uid);
@@ -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 //= 1;
 
+               return unless $self->check($c,$nick,$points);
+
                my $dbh = $c->model;
 
                if ($points*$points > 400){
@@ -449,7 +452,7 @@ my $points = class extends NDIRC::Command {
                }
                $f->finish;
        }
-       method check ($c,$nick) {
+       method check ($c,$nick,$points) {
                return 1;
        }
 };
@@ -460,7 +463,7 @@ command a => {
        acl => q(irc_a)
 }, class {
        extends $points->name;
-       method check ($c,$nick) {
+       method check ($c,$nick,$points) {
                my ($fleets) = $c->model->selectrow_array(q{
 SELECT count(*) FROM raids r
        JOIN raid_targets rt ON r.id = rt.raid
@@ -496,4 +499,95 @@ 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("<b>$i</b> fleets with anti-<b>$class</b>: $text");
+               }else{
+                       $c->reply("Couldn't find any user with anti-<b>$class</b>");
+               }
+       }
+};
+
+command getpass => {
+       help => q(Gives new users a random password.),
+       type => q(pm)
+}, class extends NDIRC::Command {
+
+###########################################################
+# Written by Guy Malachi http://guymal.com
+# 18 August, 2002
+###########################################################
+       sub generate_random_string
+       {
+               my $length_of_randomstring=shift;# the length of
+               # the random string to generate
+
+               my @chars=('a'..'z','A'..'Z','0'..'9','_');
+               my $random_string;
+               foreach (1..$length_of_randomstring)
+               {
+                       # rand @chars will generate a random
+                       # number between 0 and scalar @chars
+                       $random_string .= $chars[rand @chars];
+               }
+               return $random_string;
+       }
+
+       method execute ($c,$msg) {
+               my $dbh = $c->model;
+
+               my $password = generate_random_string 16;
+               my $update = $dbh->do(q{
+UPDATE users SET password = $1
+WHERE uid = $2 AND password IS NULL
+                       },undef,$password,$c->uid);
+               if ($update > 0){
+                       $c->reply("Password set to: $password (you can change it on webbie)");
+               }else{
+                       $c->reply("Couldn't set password. Either it has already been set or you don't have an account");
+               }
+       }
+};
+
 1;