Plagger::Rule::URLBL - Rule to URLBL for feed url


Plagger documentation Contained in the Plagger distribution.

Index


Code Index:

NAME

Top

Plagger::Rule::URLBL - Rule to URLBL for feed url

SYNOPSIS

Top

  - module: Aggregator::Xango
    rule:
      - module: URLBL
        dnsbl: rbl.bulkfeeds.jp

DESCRIPTION

Top

The rule is decided by URLBL.

CONFIG

Top

dnsbl
  duration: dnsbl domain

AUTHOR

Top

Kazuhiro Osawa

inspired by Plagger::Plugin::Filter::URLBL

SEE ALSO

Top

Plagger, Plagger::Plugin::Filter::URLBL


Plagger documentation Contained in the Plagger distribution.

package Plagger::Rule::URLBL;
use strict;
use base qw( Plagger::Rule );

use Net::DNS::Resolver;
use URI;

sub init {
    my $self = shift;

    Plagger->context->error("No dnsbl configuration")
        unless $self->{dnsbl};
}

sub dispatch {
    my($self, $args) = @_;

    my $url;
    if ($args->{entry}) {
        $url = $args->{entry}->permalink;
    } elsif ($args->{feed}) {
        $url = $args->{feed}->url;
    } else {
        Plagger->context->error("No feed nor entry object in this plugin phase");
    }

    return unless $url;

    my $uri = URI->new($url);
    return 1 unless $uri->can('host');

    my $domain = $uri->host;
    $domain =~ s/^www\.//;

    if (exists $self->{dnscache}->{$domain}) {
        return $self->{dnscache}->{$domain};
    }

    my $res = Net::DNS::Resolver->new;
    my $dnsbl = $self->{dnsbl};
       $dnsbl = [ $dnsbl ] unless ref $dnsbl;

    for my $dns (@$dnsbl) {
        Plagger->context->log(debug => "looking up $domain.$dns");
        my $q = $res->search("$domain.$dns");
        if ($q && $q->answer) {
            Plagger->context->log(info => "$domain.$dns found.");
            return $self->{dnscache}->{$domain} = 0;
        }
    }

    return $self->{dnscache}->{$domain} = 1;
}

1;

__END__