]> ruin.nu Git - NDIRC.git/commitdiff
Converted the invite command, turning it into a real command
authorMichael Andreen <harv@ruin.nu>
Sat, 9 May 2009 16:23:29 +0000 (18:23 +0200)
committerMichael Andreen <harv@ruin.nu>
Sat, 9 May 2009 16:23:29 +0000 (18:23 +0200)
Commands/Channel.pm
database/roles.sql

index c1a5f7b5f405a864f0acb1d961f5faae22d14590..117817e09bc4792b55ecb238fb62ee60e5503ac4 100644 (file)
@@ -61,4 +61,40 @@ WHERE u.hostmask ILIKE ? AND c.name = ? AND (f.name = '$access' $where);
        }
 }
 
+sub invite
+       :Help(Syntax: invite [channel] | If no channel is specified it invites you to all channel you have auto invite access on)
+       : Type(pm)
+{
+       my ($self,$c,$msg) = @_;
+
+       my ($channel) = $msg =~ /^\s*(\S+)?\s*$/ or die 'ARGS';
+
+       my @channels;
+       if ($channel && $c->check_user_roles('irc_masterinvite')){
+               print "master $channel";
+               push @channels,$channel;
+       }else{
+               print "master $channel";
+               my @access = ('auto_invite');
+               push @access, 'invite' if $channel;
+               my $channels = $c->model->prepare(q{
+SELECT DISTINCT c.name FROM users u
+       JOIN groupmembers g ON g.uid = u.uid
+       JOIN channel_group_flags gf ON g.gid = gf.group
+       JOIN channels c ON gf.channel = c.id
+       JOIN channel_flags f ON f.id = gf.flag
+WHERE u.hostmask ILIKE $1 AND COALESCE(c.name = $2,TRUE)
+       AND (f.name = ANY($3) )
+               });
+               $channels->execute($c->host,$channel,\@access);
+               while (my ($channel) = $channels->fetchrow()){
+                       push @channels,$channel;
+               }
+       }
+       for (@channels){
+               print;
+               $c->server->command("invite ". $c->nick ." $_");
+       }
+}
+
 1;
index 49de3231f378a6731c302e68af784baf401dd414..9a31ced48b7d2a7c4a2e43562fc96386cd9fdfae 100644 (file)
@@ -1,13 +1,16 @@
 INSERT INTO roles VALUES('irc_p_nick');
 INSERT INTO roles VALUES('irc_p_intel');
 INSERT INTO roles VALUES('irc_masterop');
+INSERT INTO roles VALUES('irc_masterinvite');
 
 INSERT INTO group_roles (gid,role) VALUES(1,'irc_p_nick');
 INSERT INTO group_roles (gid,role) VALUES(1,'irc_p_intel');
 INSERT INTO group_roles (gid,role) VALUES(1,'irc_masterop');
+INSERT INTO group_roles (gid,role) VALUES(1,'irc_masterinvite');
 
 INSERT INTO group_roles (gid,role) VALUES(3,'irc_p_nick');
 INSERT INTO group_roles (gid,role) VALUES(3,'irc_masterop');
+INSERT INTO group_roles (gid,role) VALUES(3,'irc_masterinvite');
 
 INSERT INTO group_roles (gid,role) VALUES(5,'irc_p_nick');
 INSERT INTO group_roles (gid,role) VALUES(5,'irc_p_intel');