/usr/share/weechat/perl/recoverop.pl is in weechat-scripts 20140928-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | #
# recoverop.pl - WeeChat script to recover channel operator in empty channel
#
# Copyright (C) 2012 "AYANOKOUZI, Ryuunosuke" <i38w7i3@yahoo.co.jp>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Description:
# recoverop.pl tries to take a channel operator privilege by part and join
# after last user leave a channel. After loading the script, by default, it
# is unavailable for all channels. You can specify server and channel in
# which the script is available by perl regular expression.
#
# Vars:
# plugins.var.perl.recoverop.regex
# perl regular expression (format: "server.channel") make recoverop.pl
# available.
# plugins.var.perl.recoverop.modes
# modes for channel (format: "+sn"), empty string or not set == do not change modes
#
# Examples:
# /set plugins.var.perl.recoverop.regex "\A(freenode\.#weechat)|(oftc\.#debian.*)\Z"
# try to recover channel operator privilege in #weechat on freenode and
# in all channels starting from "#debian" on oftc.
# /set plugins.var.perl.recoverop.regex ".*"
# recoverop is available for all channels.
# /set plugins.var.perl.recoverop.regex ""
# recoverop is unavailable for all channels.
# /unset plugins.var.perl.recoverop.regex
# recoverop is unavailable for all channels (default).
# /set plugins.var.perl.recoverop.modes "+sn"
# set modes +sn after join.
#
use strict;
use warnings;
weechat::register(
"recoverop", "AYANOKOUZI, Ryuunosuke",
"0.1.1", "GPL3", "recover channel operator in empty channel",
"", ""
);
my $script_name = "recoverop";
weechat::hook_signal( "*,irc_raw_in_PART", "my_signal_irc_in_PART_cb", "" );
weechat::hook_signal( "*,irc_raw_in_QUIT", "my_signal_irc_in_QUIT_cb", "" );
weechat::hook_config( "plugins.var.perl.$script_name.*", "config_cb", "" );
my $conf = &configure();
sub config_cb {
my $data = shift;
my $option = shift;
my $value = shift;
$conf = &configure();
return weechat::WEECHAT_RC_OK;
}
sub configure {
my $val = weechat::config_get_plugin('regex');
$conf->{regex} = qr/$val/;
$conf->{mode} = weechat::config_get_plugin('modes');
return $conf;
}
sub part_join {
my $server = shift;
my $channel = shift;
my $nick = shift;
if ( "$server.$channel" !~ m/$conf->{regex}/ ) {
return weechat::WEECHAT_RC_OK;
}
my $nicks_count = get_nicks_count( $server, $channel );
if ( defined $nicks_count && $nicks_count == 2 ) {
my $myname = get_myname($server);
if ( defined $myname && $myname ne '' ) {
my $prefix = get_prefix( $server, $channel, $myname );
if ( defined $prefix && $prefix ne '@' ) {
my $buffer =
weechat::buffer_search( "irc", "$server.$channel" );
if ($buffer)
{
my $sec = int rand 10;
weechat::command( $buffer, "/wait ${sec}s /cycle" );
if ($conf->{mode})
{
$sec += 5;
weechat::command( $buffer, "/wait ${sec}s /mode ".$conf->{mode});
}
}
}
}
}
return weechat::WEECHAT_RC_OK;
}
sub my_signal_irc_in_PART_cb {
my $data = shift;
my $signal = shift;
my $type_data = shift;
my $signal_data = shift;
my $server = ( split ',', $signal )[0];
my ( $user, $channel ) = ( split ' ', $type_data, 4 )[ 0, 2 ];
my ( $nick, $username, $address ) = ( $user =~ m/:(.*)!(.*)@(.*)/ );
part_join( $server, $channel, $nick );
return weechat::WEECHAT_RC_OK;
}
sub my_signal_irc_in_QUIT_cb {
my $data = shift;
my $signal = shift;
my $type_data = shift;
my $signal_data = shift;
my $server = ( split ',', $signal )[0];
my $user = ( split ' ', $type_data, 3 )[0];
my ( $nick, $username, $address ) = ( $user =~ m/:(.*)!(.*)@(.*)/ );
my $infolist = weechat::infolist_get( "irc_channel", "", "$server" );
while ( weechat::infolist_next($infolist) ) {
my $name = weechat::infolist_string( $infolist, "name" );
my $infolist2 =
weechat::infolist_get( "irc_nick", "", "$server,$name,$nick" );
if ( defined $infolist2 && $infolist2 eq '' ) {
weechat::infolist_free($infolist2);
next;
}
weechat::infolist_free($infolist2);
part_join( $server, $name, $nick );
}
weechat::infolist_free($infolist);
return weechat::WEECHAT_RC_OK;
}
sub get_myname {
my $server = shift;
my $infolist = weechat::infolist_get( "irc_server", "", "$server" );
weechat::infolist_next($infolist);
my $myname = weechat::infolist_string( $infolist, "nick" );
weechat::infolist_free($infolist);
return $myname;
}
sub get_nicks_count {
my $server = shift;
my $channel = shift;
my $infolist =
weechat::infolist_get( "irc_channel", "", "$server,$channel" );
weechat::infolist_next($infolist);
my $nicks_count = weechat::infolist_integer( $infolist, "nicks_count" );
weechat::infolist_free($infolist);
return $nicks_count;
}
sub get_prefix {
my $server = shift;
my $channel = shift;
my $nick = shift;
my $infolist =
weechat::infolist_get( "irc_nick", "", "$server,$channel,$nick" );
weechat::infolist_next($infolist);
my $prefix = weechat::infolist_string( $infolist, "prefix" );
weechat::infolist_free($infolist);
return $prefix;
}
|