1 package App::SCS::PageSet;
3 use Text::MultiMarkdown 'markdown';
6 use Syntax::Keyword::Gather;
10 use List::Util qw(reduce max);
11 use Module::Runtime qw(use_module);
14 use Hash::Merge qw(merge);
15 use Data::Pond qw(pond_read_datum pond_write_datum);
18 with 'App::SCS::Role::PageChildren';
25 has top_dir => (is => 'ro', lazy => 1, builder => 'base_dir');
26 has base_dir => (is => 'ro', required => 1);
27 has plugin_config => (is => 'ro', required => 1);
28 has max_depth => (is => 'ro', default => quote_sub q{ 0 });
29 has min_depth => (is => 'ro', default => quote_sub q{ 1 });
31 has rel_path => (is => 'lazy');
36 ->catdir(File::Spec->abs2rel($self->base_dir->name, $self->top_dir->name))
39 sub _page_set { $_[0] }
40 sub _page_set_class { ref($_[0]) }
41 sub _top_dir { shift->top_dir }
42 sub _my_path { shift->base_dir }
45 my ($self, $spec) = @_;
46 $spec->{path} or die "path is required to get";
47 my ($dir, $file) = $spec->{path} =~ m{^(?:(.*)/)?([^/]+)$};
49 my @poss = io->dir($self->base_dir)->${\sub {
51 defined($dir) ? $io->catdir($dir) : $io
53 $_->filename =~ /^\Q${file}\E${\$self->_types_re}$/ and $type = $1
55 ->${\sub { -e "$_[0]" ? $_[0]->all_files : () }};
56 die "multiple files found for ${\$spec->{path}}:\n".join "\n", @poss
58 return undef unless @poss;
60 $type, $self->rel_path->catdir($spec->{path}), $poss[0]
64 sub _config_files_for {
65 my ($self, $path) = @_;
68 my @dirs = io->dir($path)->splitdir;
72 my $build_path = io('');
74 foreach my $dir (@dirs) {
75 $build_path = $build_path->catdir("/$dir");
76 #/home/.../share/pages/blog.conf etc
78 my $file = $self->_top_dir->catfile("$build_path.conf");
80 if (!$file->exists || !$file->file || $file->empty) {
91 my ($self, $type, $path, $io) = @_;
92 (my $cache_name = $io->name) =~ s/\/([^\/]+)$/\/.htcache.$1.json/;
93 my $cache = io($cache_name);
94 my $config_files = $self->_config_files_for($path);
95 my $max_stat = max map $_->mtime, $io, @$config_files;
98 if ($cache->mtime >= $max_stat) {
100 $self->_new_page($path, $self->_json->decode($cache->all));
102 die "Error inflating ${path} from cache: $_\n";
109 my $extracted = $self->${\"_extract_from_${type}"}($raw);
110 my $jsony = JSONY->new;
111 my $config = reduce { merge($a, $jsony->load($b->all)) } [], @$config_files;
113 $extracted->{plugins} = pond_read_datum('[' . $extracted->{plugins} . ']');
115 my $setup = $extracted;
117 $setup->{plugin_config} = merge($extracted->{plugins}, $config);
120 my $tmp_cache = io($cache_name . ".tmp");
121 $tmp_cache->print($self->_json->encode($setup));
122 $tmp_cache->rename($cache_name);
125 $self->_new_page($path, $setup);
127 die "Error inflating ${path} as ${type}: $_\n";
132 my ($self, $mapper) = @_;
133 [ map $mapper->($_), $self->flatten ]
136 sub _depth_under_base {
137 my ($self, $path) = @_;
138 File::Spec->splitdir(File::Spec->abs2rel($path, $self->base_dir->name))
143 my $slash = io->dir('/');
145 my ($path, $type) = $_->name =~ /^(.*)${\$self->_types_re}$/;
148 $slash->catdir(File::Spec->abs2rel($path, $self->top_dir->name)),
156 my $slash = io->dir('/');
158 my ($path, $type) = $_->name =~ /^(.*)${\$self->_types_re}$/;
159 $slash->catdir(File::Spec->abs2rel($path, $self->top_dir->name))->name,
165 return unless (my $base = $self->base_dir)->exists;
167 my $min = $self->min_depth;
169 $_->filter(sub { $_->filename =~ /${\$self->_types_re}$/ })
170 ->all_files($self->max_depth - ($min-1))
174 # can't use ->all_dirs($min-1) since we only want the final level
175 my @x = ($_); @x = map $_->all_dirs, @x for 1..$min-1; @x
182 my ($self, $max) = @_;
183 use_module('App::SCS::LatestPageSet')->new(
190 use_module('App::SCS::Page')->new(
191 path => $_[1], page_set => $_[0], %{$_[2]}
195 sub _types_re { qw/\.(html|md)/ }
197 sub _extract_from_html {
198 my ($self, $html) = @_;
200 HTML::Zoom->from_html($html)
201 ->select('title')->collect_content({ into => \my @title })
205 $a->collect("meta[name=${b}]", { into => ($meta{$b}=[]) })
206 } $z, qw(subtitle description keywords created plugins)
210 title => $title[0]->{raw}||'',
211 (map +($_ => $meta{$_}[0]->{attrs}{content}||''), keys %meta),
216 sub _extract_from_md {
217 my ($self, $md) = @_;
218 $self->_extract_from_html(markdown($md, { document_format => 'complete' }));