Reindent lib/ and t/
[www-search-torrentz.git] / lib / WWW / Search / Torrentz.pm
index 4c575e64de34528dd17e6d52721829f1477ad54f..34ae025bf83ae5ec030ca1f1f3df087de805720e 100644 (file)
@@ -14,58 +14,58 @@ use WWW::Search::Torrentz::Result;
 sub gui_query{ shift->native_query(@_) }
 
 sub _native_setup_search{
-  my ($self, $native_query, $options) = @_;
-  $self->agent_email('marius@ieval.ro');
-  $options //= {};
-  my $base_url = $options->{search_url} // 'https://torrentz.eu/search';
-  $self->{search_debug} = $options->{search_debug};
-  $self->{_next_url} = "$base_url?f=$native_query";
-  $self->user_agent->delay(2/60);
+       my ($self, $native_query, $options) = @_;
+       $self->agent_email('marius@ieval.ro');
+       $options //= {};
+       my $base_url = $options->{search_url} // 'https://torrentz.eu/search';
+       $self->{search_debug} = $options->{search_debug};
+       $self->{_next_url} = "$base_url?f=$native_query";
+       $self->user_agent->delay(2/60);
 }
 
 sub _parse_tree{
-  my ($self, $tree) = @_;
-  my $found = 0;
-
-  my @potential_results = $tree->find('dl');
-  my $result_count = $tree->find('h2')->as_text;
-  if (defined $result_count && $result_count ne 'No Torrents Found') {
-       $result_count =~ s/orrents.*//;
-       $result_count =~ y/0-9//cd;
-       $self->approximate_result_count(int $result_count);
-  }
-
-  for my $node (@potential_results) {
-       my $a = $node->find('a');
-       next unless defined $a;
-
-       my $infohash = substr $a->attr('href'), 1;
-       next unless $infohash =~ m,^[a-f0-9]{40}$,;
-       my $title = $a->as_text;
-       my ($verified, $age, $size, $seeders, $leechers);
-       $verified = 0;
-       for my $span($node->find('span')) {
-         given($span->attr('class')){
-               $verified = int ($span->as_text =~ m,^\d+,) when 'v';
-               $age = $span->as_text when 'a';
-               $size = $span->as_text when 's';
-               $seeders = int $span->as_text when 'u';
-               $leechers = int $span->as_text when 'd';
-         }
+       my ($self, $tree) = @_;
+       my $found = 0;
+
+       my @potential_results = $tree->find('dl');
+       my $result_count = $tree->find('h2')->as_text;
+       if (defined $result_count && $result_count ne 'No Torrents Found') {
+               $result_count =~ s/orrents.*//;
+               $result_count =~ y/0-9//cd;
+               $self->approximate_result_count(int $result_count);
        }
 
-       push @{$self->{cache}}, WWW::Search::Torrentz::Result->new(infohash => $infohash, title => $title, verified => $verified, age => $age, size => $size, seeders => $seeders, leechers => $leechers, ua => $self->user_agent);
-       say STDERR "infohash => $infohash, title => $title, verified => $verified, age => $age, size => $size, seeders => $seeders, leechers => $leechers" if $self->{search_debug};
-       $found++;
-  }
-
-  my $url = $tree->look_down(rel => 'next');
-  if (defined $url) {
-       my $prev = $self->{_prev_url} =~ s,/[^/]+$,,r;
-       $self->{_next_url} = $prev . $url->attr('href')
-  }
-  say STDERR "Found: $found" if $self->{search_debug};
-  return $found;
+       for my $node (@potential_results) {
+               my $a = $node->find('a');
+               next unless defined $a;
+
+               my $infohash = substr $a->attr('href'), 1;
+               next unless $infohash =~ m,^[a-f0-9]{40}$,;
+               my $title = $a->as_text;
+               my ($verified, $age, $size, $seeders, $leechers);
+               $verified = 0;
+               for my $span ($node->find('span')) {
+                       given($span->attr('class')){
+                               $verified = int ($span->as_text =~ m,^\d+,) when 'v';
+                               $age = $span->as_text when 'a';
+                               $size = $span->as_text when 's';
+                               $seeders = int $span->as_text when 'u';
+                               $leechers = int $span->as_text when 'd';
+                       }
+               }
+
+               push @{$self->{cache}}, WWW::Search::Torrentz::Result->new(infohash => $infohash, title => $title, verified => $verified, age => $age, size => $size, seeders => $seeders, leechers => $leechers, ua => $self->user_agent);
+               say STDERR "infohash => $infohash, title => $title, verified => $verified, age => $age, size => $size, seeders => $seeders, leechers => $leechers" if $self->{search_debug};
+               $found++;
+       }
+
+       my $url = $tree->look_down(rel => 'next');
+       if (defined $url) {
+               my $prev = $self->{_prev_url} =~ s,/[^/]+$,,r;
+               $self->{_next_url} = $prev . $url->attr('href')
+       }
+       say STDERR "Found: $found" if $self->{search_debug};
+       return $found;
 }
 
 1;
This page took 0.011598 seconds and 4 git commands to generate.