This file is indexed.

/usr/share/perl5/Debbugs/Log/Spam.pm is in libdebbugs-perl 2.6.0.

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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# This module is part of debbugs, and is released under the terms of the GPL
# version 2, or any later version (at your option). See the file README and
# COPYING for more information.
#
# Copyright 2017 by Don Armstrong <don@donarmstrong.com>.

package Debbugs::Log::Spam;

=head1 NAME

Debbugs::Log::Spam -- an interface to debbugs .log.spam files and .log.spam.d
directories

=head1 SYNOPSIS

use Debbugs::Log::Spam;

my $spam = Debbugs::Log::Spam->new(bug_num => '12345');

=head1 DESCRIPTION

Spam in bugs can be excluded using a .log.spam file and a .log.spam.d directory.
The file contains message ids, one per line, and the directory contains files
named after message ids, one per file.

=head1 BUGS

None known.

=cut

use warnings;
use strict;
use vars qw($VERSION $DEBUG %EXPORT_TAGS @EXPORT_OK @EXPORT);
use base qw(Exporter);

BEGIN{
    $VERSION = 1;
    $DEBUG = 0 unless defined $DEBUG;

    @EXPORT = ();
    %EXPORT_TAGS = ();
    @EXPORT_OK = ();
    Exporter::export_ok_tags(keys %EXPORT_TAGS);
    $EXPORT_TAGS{all} = [@EXPORT_OK];

}

use Carp;
use feature 'state';
use Params::Validate qw(:types validate_with);
use Debbugs::Common qw(getbuglocation getbugcomponent filelock unfilelock);

=head1 FUNCTIONS

=over 4

=item new

Creates a new log spam reader.

    my $spam_log = Debbugs::Log::Spam->new(log_spam_name => "56/123456.log.spam");
    my $spam_log = Debbugs::Log::Spam->new(bug_num => $nnn);

Parameters

=over

=item bug_num -- bug number

=item log_spam_name -- name of log

=back

One of the above options must be passed.

=cut

sub new {
    my $this = shift;
    state $spec =
        {bug_num => {type => SCALAR,
                     optional => 1,
                    },
         log_spam_name => {type => SCALAR,
                           optional => 1,
                          },
        };
    my %param =
        validate_with(params => \@_,
                      spec   => $spec
                     );
    if (grep({exists $param{$_} and
              defined $param{$_}} qw(bug_num log_spam_name)) ne 1) {
        croak "Exactly one of bug_num or log_spam_name".
            "must be passed and must be defined";
    }

    my $class = ref($this) || $this;
    my $self = {};
    bless $self, $class;

    if (exists $param{log_spam_name}) {
        $self->{name} = $param{log_spam_name};
    } elsif (exists $param{bug_num}) {
        my $location = getbuglocation($param{bug_num},'log.spam');
        my $bug_log = getbugcomponent($param{bug_num},'log.spam',$location);
        $self->{name} = $bug_log;
    }
    $self->_init();
    return $self;
}


sub _init {
    my $self = shift;

    $self->{spam} = {};
    if (-e $self->{name}) {
        open(my $fh,'<',$self->{name}) or
            croak "Unable to open bug log spam '$self->{name}' for reading: $!";
        binmode($fh,':encoding(UTF-8)');
        while (<$fh>) {
            chomp;
            if (s/\sham$//) {
                $self->{spam}{$_} = '0';
            } else {
                $self->{spam}{$_} = '1';
            }
        }
        close ($fh) or
            croak "Unable to close bug log filehandle: $!";
    }
    if (-d $self->{name}.'.d') {
        opendir(my $d,$self->{name}.'.d') or
            croak "Unable to open bug log spamdir '$self->{name}.d' for reading: $!";
        for my $dir (readdir($d)) {
            next unless $dir =~ m/([^\.].*)_(\w+)$/;
            # .spam overrides .spam.d
            next if exists $self->{spam}{$1};
            # set the spam HASH to $dir so we know where this value was set from
            $self->{spam}{$1} = $dir;
        }
        closedir($d) or
            croak "Unable to close bug log spamdir: $!";
    }
    return $self;
}

=item save

C<$spam_log->save();>

Saves changes to the bug log spam file.

=cut

sub save {
    my $self = shift;
    return unless keys %{$self->{spam}};
    filelock($self->{name}.'.lock');
    open(my $fh,'>',$self->{name}.'.tmp') or
        croak "Unable to open bug log spam '$self->{name}.tmp' for writing: $!";
    binmode($fh,':encoding(UTF-8)');
    for my $msgid (keys %{$self->{spam}}) {
        # was this message set to spam/ham by .d? If so, don't save it
        if ($self->{spam}{$msgid} ne '0' and
            $self->{spam}{$msgid} ne '1') {
            next;
        }
        print {$fh} $msgid;
        if ($self->{spam}{$msgid} eq '0') {
            print {$fh} ' ham';
        }
        print {$fh} "\n";
    }
    close($fh) or croak "Unable to write to '$self->{name}.tmp': $!";
    rename($self->{name}.'.tmp',$self->{name});
    unfilelock();
}

=item is_spam

C<next if ($spam_log->is_spam('12456@exmaple.com'));>

Returns 1 if this message id confirms that the message is spam

Returns 0 if this message is not known to be spam

=cut
sub is_spam {
    my ($self,$msgid) = @_;
    return 0 if not defined $msgid or not length $msgid;
    $msgid =~ s/^<|>$//;
    if (exists $self->{spam}{$msgid} and
        $self->{spam}{$msgid} ne '0'
       ) {
        return 1;
    }
    return 0;
}

=item is_ham

    next if ($spam_log->is_ham('12456@exmaple.com'));

Returns 1 if this message id confirms that the message is ham

Returns 0 if this message is not known to be ham

=cut
sub is_ham {
    my ($self,$msgid) = @_;
    return 0 if not defined $msgid or not length $msgid;
    $msgid =~ s/^<|>$//;
    if (exists $self->{spam}{$msgid} and
        $self->{spam}{$msgid} eq '0'
       ) {
        return 1;
    }
    return 0;
}


=item add_spam

    $spam_log->add_spam('123456@example.com');

Add a message id to the spam listing.

You must call C<$spam_log->save()> if you wish the changes to be written out to disk.

=cut

sub add_spam {
    my ($self,$msgid) = @_;
    $msgid =~ s/^<|>$//;
    $self->{spam}{$msgid} = '1';
}

=item add_ham

    $spam_log->add_ham('123456@example.com');

Add a message id to the ham listing.

You must call C<$spam_log->save()> if you wish the changes to be written out to disk.

=cut

sub add_ham {
    my ($self,$msgid) = @_;
    $msgid =~ s/^<|>$//;
    $self->{spam}{$msgid} = '0';
}

=item remove_message

     $spam_log->remove_message('123456@example.com');

Remove a message from the spam/ham listing.

You must call C<$spam_log->save()> if you wish the changes to be written out to disk.

=cut


1;

=back

=cut

__END__

# Local Variables:
# indent-tabs-mode: nil
# cperl-indent-level: 4
# End: