Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -Tw use Carp; use DB_File; use Digest::MD5 qw/md5_hex/; use Fcntl qw/:flock/; use HTTP::Request; use LWP::UserAgent; use URI; use strict; # %despatch_table hash # # The keys of this hash specify the web page to monitor, # with the corresponding hash values containing references # to the script method or subroutine to be executed upon # change in the web page. # my %despatch_table = ( 'http://securityresponse.symantec.com/avcenter/vinfodb.html' => + 'virus_alert' ); # Create a DBM hash containing the last modification time # or page MD5 hash, indexed by the page URL my %index; my $db = tie %index, 'DB_File', "wpmon.dbm", O_CREAT | O_RDWR, 0666; my $fd = $db->fd(); open (DF, "+<&=$fd") || croak $!; flock (DF, LOCK_EX) || croak $!; # Add any new keys within %despatch_table to the array # of URLs to monitor my @urls = keys %index; foreach my $url (keys %despatch_table) { push (@urls, $url) unless (exists $index{$url}); } my $ua = LWP::UserAgent->new; foreach my $url (sort @urls) { my $uri = URI->new($url); my $request = HTTP::Request->new('GET', $uri->canonical->as_string +); my $response = $ua->request($request); if ($response->is_success) { # Update measure for page is last_modified header if # defined or failing this, an MD5 digest of the page my $html = $response->content; my $unique = $response->last_modified || md5_hex($html); $index{$url} = $unique unless (exists $index{$url}); if ($index{$url} ne $unique) { # Ensure that a code or method reference still exists # within the %despatch_table hash - If so, execute it # via an eval statement if (exists $despatch_table{$url}) { $html = quotemeta $html; eval qq/ $despatch_table{$url}("$html") /; carp $@ if $@; } $index{$url} = $unique; } } } undef $db; untie %index; close DF; exit 0; sub virus_alert { # ... response code to changed web page within subroutines }

In reply to Scripted Actions upon Page Changes by rob_au

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-19 02:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found