/usr/share/perl5/TWatch/Watch.pm is in libtwatch-perl 0.0.7-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 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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 | package TWatch::Watch;
=head1 NAME
TWatch::Watch task module to load torrents.
=cut
use strict;
use warnings;
use utf8;
use POSIX (qw(strftime));
use WWW::Mechanize;
use Safe;
use TWatch::Config;
use TWatch::Message;
use TWatch::Watch::Reg;
use TWatch::Watch::ResultList;
use TWatch::Watch::FilterList;
=head1 CONSTRUCTOR
=cut
sub new
{
my ($class, %opts) = @_;
# Get params
my ($reg, $xpath, $filters, $tree) = (
delete $opts{reg}, delete $opts{xpath}, delete $opts{filters},
delete $opts{tree}
);
$opts{tree} = 1 if $tree;
die 'Need complete list object' unless
'TWatch::Watch::ResultList' eq ref $opts{complete};
my $self = bless \%opts ,$class;
# Replace oprs to objects
$self->{reg} = TWatch::Watch::Reg->new(
reg => $reg, xpath => $xpath, tree => $tree)
or die 'Can`t create regexp object';
$self->{results} = TWatch::Watch::ResultList->new
or die 'Can`t create result list object';
$self->{filters} = TWatch::Watch::FilterList->new( filters => $filters )
or die 'Can`t create filter list object';
# Set type of tracker
# If tracker layout like this:
# - Torrents list
# |- Torrent 1 description
# |- Link to 1.torrent
# |- Torrent 2 description
# |- Link to 2.torrent
# |- Torrent 3 description
# |- Link to 3.torrent
#
# this is tree type. List of torrents contain links to description
# page. Then description page have link to torrent file.
# This is main trackers layout. Example: thepiratebay.org, torrents.ru
# If tracker layout like this:
# - Torrent description
# |- Link to 1.torrent
# |- Link to 2.torrent
# |- Link to 3.torrent
#
# this is linear type. Torrent have one description page and many
# *.torrents links on it.
# This trackers typically for series. Example: lostfilm.tv
($tree) ?$self->param('type', 'tree') :$self->param('type', 'linear');
return $self;
}
=head1 DATA METHODS
=cut
=head2 param $name, $value
Get or set new parameter value
=cut
sub param
{
my ($self, $name, $value) = @_;
$self->{$name} = $value if defined $value;
return $self->{$name};
}
=head2 reg
Return regular expression object for user defined params.
=cut
sub reg { return shift()->{reg} }
=head2 results
Return results list object for task.
=cut
sub results { return shift()->{results} }
=head2 filters
Return filters list object for task.
=cut
sub filters { return shift()->{filters} }
=head2 complete
Return completed list object for task.
=cut
sub complete { return shift()->{complete} }
=head1 DOWNLOAD METHODS
=cut
=head2 run $browser
Do job to get new torrent files
=over
=item $browser
WWW::Mechanize object.
It`s must be authtorized and prepared for unlimited usage.
=back
=cut
sub run
{
my ($self, $browser) = @_;
unless( $self->param('url') )
{
notify('Url not set. Skip watch.');
return;
}
notify(sprintf 'Get links list from %s', $self->param('url') );
# Get torrents links page
eval{ $browser->get( $self->param('url') ); };
# Check for page content
if( !$browser->success or ($@ and $@ =~ m/Can't connect/) )
{
warn sprintf 'Can`t get content (links list) by link: %s',
$self->param('url');
return;
}
# Get page content
my $content = $browser->content;
# Define torrent type (tree or linear) and get links for torrent description
my @links;
if ($self->param('type') eq 'tree')
{
# Parse links to description pages
@links = $self->reg->url( $content );
}
else
{
# Current page contain links.
@links = ($self->param('url'));
}
notify(sprintf 'Watch type: %s', $self->param('type'));
notify(sprintf 'Links count: %d', scalar @links)
if $self->param('type') eq 'tree';
# For all description page get *.torrent files from them
for my $url ( @links )
{
# Get description page
if( $self->param('type') eq 'tree' )
{
notify(sprintf 'Get torrent page by tree from: %s.', $url);
notify(sprintf 'Sleep %d seconds', config->get('TimeoutDownloads'));
sleep config->get('TimeoutDownloads');
eval{ $browser->get( $url ); };
# Check for content
if( !$browser->success or ($@ and $@ =~ m/Can't connect/) )
{
warn
sprintf 'Can`t get content (torrent page) by link: %s',$url;
next;
}
# Get content
$content = $browser->content;
}
# Remember absolutly url
my $absoulete = $browser->uri->as_string();
# Parse links for *.torrents
$self->parse( $content );
notify('Nothing to download. Skip Watch.'),
next
unless $self->results->count;
# Add current page in result
$self->results->param(undef, page => $absoulete);
# Download torrents
notify('NEW TORRENTS AVAILABLE!', 'good');
$self->download( $browser );
notify('Has not dowloaded torrents') if $self->results->count;
}
return $self;
}
=head2 parse $content
Parse content for torrent data
=over
=item $content
content of html page for parsing
=back
=cut
sub parse
{
my ($self, $content) = @_;
# Use users regexp to get fields
notify('Get data by user regexp/xpath');
my @result = $self->reg->match( $content, $self->param('type') );
for my $result ( @result )
{
# Skip if no fields found
notify(
sprintf('Links not found. Wrong regexp?: %s',
$self->reg->rparam('link')), 'warn'),
return
unless $result->{link};
}
$self->results->add( \@result );
# Remove from results already completed torrents
if( $self->complete->count )
{
notify('Drop completed torrents');
for my $key ( $self->complete->keys )
{
$self->results->delete( $key ) if $self->results->exists( $key );
}
}
# Skip if no new torrents
notify('All torrent already completed.'),
return
unless $self->results->count;
{{
# Remove torrents by filters
notify('Filter torrents');
# Skip if no filters
last unless $self->filters->count;
# Create sandbox for users expressions
my $sandbox = Safe->new;
# For each results
for my $key ( $self->results->keys )
{
# Get result
my $result = $self->results->get($key);
# Flag - result suit to filter (and be download)
my $flag = 1;
# For all filters
for my $name ( $self->filters->keys )
{
# printf "FILTER name: %s, value: %s, method: %s\n",
# $name, $self->filters->param($name, 'value'),
# $self->filters->param($name, 'method');
# printf "DATA: %s\n", $result->{$name};
# Remove result if no filters for them
$flag = 0, last unless $result->{$name};
# Check filter
my $left = $result->{$name};
my $right = $self->filters->param($name, 'value');
my $method = $self->filters->param($name, 'method') || '=~';
if($method eq '=~' or $method eq '!~')
{
# Eval filter
$flag &&= $sandbox->reval(qq{"$left" $method $right})
}
else
{
# Add squares for non digit values to prevent warnings
$_ = ($_ =~ m/^\d+$/ ) ?$_ :'"'.$_.'"' for $left, $right;
# Eval filter
$flag &&= $sandbox->reval(qq{$left $method $right});
}
# Skip if expression not valid
warn sprintf(
'Can`t set filter %s: "%s %s %s", becouse %s',
$name, $left, $method, $right, $@),
next
if $@;
# results not coincide
last unless $flag;
}
# Remove result if filter check fail
$self->results->delete( $key ) unless $flag;
}
}}
# Skip if no results (all filtered)
notify('All links filtered'),
return
unless $self->results->count;
return $self->results->count;
}
=head2 download $browser
Download torrents listed in watch results.
=over
=item $browser
WWW::Mechanize object.
It`s must be authtorized and prepared for unlimited usage.
=back
=cut
sub download
{
my ($self, $browser) = @_;
# For each result download torrent
for my $key ( $self->results->keys )
{
my $result = $self->results->get( $key );
# Download torrent
$browser->get( $result->{link} );
# If download complete store result in completed array
if ($browser->success)
{
# Get torrent file data
my $torrent = $browser->content;
my $filename = $browser->response->filename;
# Set path to store
my $save = config->get('Save').'/'.$filename;
# Save file or skip already dowloaded
unless (-f $save or -s _)
{
open my $fh, '+>', $save or die $!;
print $fh $torrent or die $!;
close $fh or die $!;
notify( sprintf 'Download complete: %s', $save );
# Add message about this completed result
message->add(
level => 'info',
message => sprintf('Download complete: %s', $save),
data => $result);
}
else
{
notify( sprintf 'Already exists. Skip download: %s', $save );
}
# Put additional parameters
$result->{datetime} = POSIX::strftime(
"%Y-%m-%d %H:%M:%S", localtime(time));
$result->{torrent} = $filename;
# Move result to completed
$self->complete->add( $result );
$self->results->delete( $key );
}
# If download fail add message about it
else
{
notify( sprintf 'Can`t download from %s', $result->{link} );
message->add(
level => 'error',
message => sprintf('Can`t download from %s', $result->{link}),
data => $result);
}
}
return $self->results->count;
}
1;
=head1 REQUESTS & BUGS
Roman V. Nikolaev <rshadow@rambler.ru>
=head1 AUTHORS
Copyright (C) 2008 Roman V. Nikolaev <rshadow@rambler.ru>
=head1 LICENSE
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/>.
=cut
|