/usr/share/perl5/Scrappy/Action/Generate.pm is in libscrappy-perl 0.94112090-2.
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 | package Scrappy::Action::Generate;
BEGIN {
$Scrappy::Action::Generate::VERSION = '0.94112090';
}
use File::Util;
use Moose::Role;
use String::TT qw/tt strip/;
with 'Scrappy::Action::Help';
sub script {
my ($self, @options) = @_;
my $script_name = $options[0] || "myapp.pl";
return "\nThe specified file already exists\n"
if -f $script_name;
$script_name =~ s/\.pl$//;
File::Util->new->make_dir(join("_", $script_name, "logs"));
File::Util->new->write_file(
'file' => "$script_name.pl",
'bitmask' => oct 755,
'content' => strip tt q{
#!/usr/bin/perl
use strict;
use warnings;
use Scrappy;
my $scraper = Scrappy->new;
my $datetime = $scraper->logger->timestamp;
$datetime =~ s/\D//g;
# report warning, errors and other information
$scraper->debug(0);
# report detailed event logs
$scraper->logger->verbose(0);
# create a new log file with each execution
$scraper->logger->write("[% script_name %]_logs/$datetime.log")
if $scraper->debug;
# load session file for persistent storage between executions
-f '[% script_name %].sess' ?
$scraper->session->load('[% script_name %].sess') :
$scraper->session->write('[% script_name %].sess');
# crawl something ...
$scraper->crawl('http://localhost/',
'/' => {
'body' => sub {
my ($self, $item, $params) = @_;
# ...
}
}
);
}
);
return "\n... successfully created script $script_name.pl\n";
}
sub class {
my ($self, @options) = @_;
my $project = $options[0] || "MyApp";
return "\nPlease use a properly formatted class name\n"
if $project =~ /[^a-zA-Z0-9\:]/;
my $object = $project;
$object =~ s/::/\-/g;
my $path = $project;
$path =~ s/::/\//g;
File::Util->new->write_file(
'file' => -d $object ? "$object/lib/$path.pm" : "lib/$path.pm",
'bitmask' => oct 644,
'content' => strip tt q{
package [% project %];
use Moose;
with 'Scrappy::Project::Document';
sub title {
return
shift->scraper->select('title')
->data->[0]->{text};
}
1;
}
);
return "\n... successfully created project class $project\n";
}
sub project {
my ($self, @options) = @_;
my $project = $options[0] || "MyApp";
return "\nPlease use a properly formatted class name\n"
if $project =~ /[^a-zA-Z0-9\:]/;
my $object = $project;
$object =~ s/::/\-/g;
my $path = $project;
$path =~ s/::/\//g;
File::Util->new->make_dir('logs');
File::Util->new->write_file(
'file' => "$object/" . lc $object,
'bitmask' => oct 644,
'content' => strip tt q{
#!/usr/bin/perl
use strict;
use warnings;
use lib 'lib';
use [% project %];
my $project = [% project %]->new;
my $scraper = $project->scraper;
my $datetime = $scraper->logger->timestamp;
$datetime =~ s/\D//g;
# report warning, errors and other information
$scraper->debug(0);
# report detailed event logs
$scraper->logger->verbose(0);
# create a new log file with each execution
$scraper->logger->write("logs/$datetime.log")
if $scraper->debug;
# load session file for persistent storage between executions
-f '[% object FILTER lower %].sess' ?
$scraper->session->load('[% object FILTER lower %].sess') :
$scraper->session->write('[% object FILTER lower %].sess');
my $url = 'http://search.cpan.org/';
if ($scraper->get($url)->page_loaded) {
# testing testing 1 .. 2 .. 3
my $data = $project->parse_document($url);
print $scraper->dumper($data);
}
}
);
File::Util->new->write_file(
'file' => "$object/lib/$path.pm",
'bitmask' => oct 644,
'content' => strip tt q{
package [% project %];
use Moose;
use Scrappy;
with 'Scrappy::Project';
sub setup {
# project class
my $self = shift;
# define route(s) - route web pages to parsers
$self->route('/' => 'root');
# return your configured app instance
return $self;
}
1;
}
);
File::Util->new->write_file(
'file' => "$object/lib/$path/Root.pm",
'bitmask' => oct 644,
'content' => strip tt q{
package [% project %]::Root;
use Moose;
with 'Scrappy::Project::Document';
# ... maybe for parsing /index.html
sub title {
return
shift->scraper->select('title')
->data->[0]->{text};
}
1;
}
);
File::Util->new->write_file(
'file' => "$object/lib/$path/List.pm",
'bitmask' => oct 644,
'content' => strip tt q{
package [% project %]::List;
use Moose;
with 'Scrappy::Project::Document';
# ... maybe for parsing /search.html
sub title {
return
shift->scraper->select('title')
->data->[0]->{text};
}
1;
}
);
File::Util->new->write_file(
'file' => "$object/lib/$path/Page.pm",
'bitmask' => oct 644,
'content' => strip tt q{
package [% project %]::Page;
use Moose;
with 'Scrappy::Project::Document';
# ... maybe for parsing /:page.html
sub title {
return
shift->scraper->select('title')
->data->[0]->{text};
}
1;
}
);
return "\n... successfully created project $project\n";
}
1;
__DATA__
The generate action is use to generate various scaffolding (or boiler-plate code)
to reduce the tedium, get you up and running quicker and with more efficiency.
* Generate a Scrappy script
USAGE: scrappy generate script [FILENAME]
EXAMPLE: scrappy generate script eg/web_crawler.pl
* Generate a Scrappy project
USAGE: scrappy generate project [PACKAGE]
EXAMPLE: scrappy generate project MyApp
* Generate a Scrappy project class
USAGE: scrappy generate class [CLASS]
EXAMPLE: scrappy generate class MyApp::SearchPage
|