This file is indexed.

/usr/share/irssi/scripts/bitlbee_tab_completion.pl is in irssi-scripts 20160301.

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
use strict;
use vars qw($VERSION %IRSSI);

$VERSION = '1.3';

%IRSSI = (
    authors     => 'Tijmen "timing" Ruizendaal & Wilmer van der Gaast',
    contact     => 'tijmen.ruizendaal@gmail.com',
    name        => 'BitlBee_tab_completion',
    description => 'Intelligent Tab-completion for BitlBee commands.',
    license     => 'GPLv2',
    url         => 'http://the-timing.nl/stuff/irssi-bitlbee',
    changed     => '2009-08-11',
);

my $root_nick = 'root';
my $bitlbee_channel = '&bitlbee';
my $bitlbee_server_tag = 'localhost';
my $get_completions = 0;

my @commands;

Irssi::signal_add_last 'channel sync' => sub {
        my( $channel ) = @_;
        if( $channel->{topic} eq "Welcome to the control channel. Type \x02help\x02 for help information." ){
                $bitlbee_server_tag = $channel->{server}->{tag};
                $bitlbee_channel = $channel->{name};
		request_completions();
        }
};

if (get_channel()) {
	request_completions();
}

sub request_completions {
	$get_completions = 1;
	Irssi::server_find_tag($bitlbee_server_tag)->send_raw( 'COMPLETIONS' );
}

sub get_channel {
        my @channels = Irssi::channels();
        foreach my $channel(@channels) {
                if ($channel->{topic} eq "Welcome to the control channel. Type \x02help\x02 for help information.") {
                        $bitlbee_channel = $channel->{name};
                        $bitlbee_server_tag = $channel->{server}->{tag};
			return 1;
                }
        }
	return 0;
}

sub irc_notice {
	return unless $get_completions;
	my( $server, $msg, $from, $address, $target ) = @_;
	
	if( $msg =~ s/^COMPLETIONS // )	{
		$root_nick = $from;
		if( $msg eq 'OK' ) {
			@commands = ();
		}
		elsif( $msg eq 'END' ) {
			$get_completions = 0;
		}
		@commands = ( @commands, $msg );
		
		Irssi::signal_stop();
	}
}

sub complete_word {
	my ($complist, $window, $word, $linestart, $want_space) = @_;
	my $channel = $window->get_active_name();
	if ($channel eq $bitlbee_channel or $channel eq $root_nick or $linestart =~ /^\/(msg|query) \Q$root_nick\E */i){
		$linestart =~ s/^\/(msg|query) \Q$root_nick\E *//i;
		$linestart =~ s/^\Q$root_nick\E[:,] *//i;
		foreach my $command(@commands) {	
			if ($command =~ /^$word/i) {
				push @$complist, $command;
		    	}
		}
	}
}


Irssi::signal_add_last('complete word', 'complete_word');
Irssi::signal_add_first('message irc notice', 'irc_notice');