make page_set copy correctly in with()
[scpubgit/App-SCS.git] / lib / App / SCS / Page.pm
CommitLineData
632f0e07 1package App::SCS::Page;
2
3use IO::All;
4use Time::Local qw(timelocal);
632f0e07 5use List::Util qw(reduce);
0034f151 6use Module::Runtime qw(use_module);
18968192 7use HTML::Zoom;
632f0e07 8use Moo;
9
6b35e5c5 10has $_ => (is => 'ro', reader => "_$_", init_arg => $_) for qw(page_set);
f50b4a35 11
12sub _page_set_class { ref($_[0]->_page_set) }
13sub _top_dir { $_[0]->_page_set->top_dir }
14sub _my_path { io->dir($_[0]->_top_dir)->catdir($_[0]->path) }
15
632f0e07 16with 'App::SCS::Role::PageChildren';
17
18has $_ => (is => 'ro') for qw(
c68d9e18 19 title subtitle description keywords html created path
632f0e07 20);
21
c68d9e18 22has plugin_config => (is => 'rw', 'required' => 1);
632f0e07 23
24sub has_plugin_config { exists $_[0]->plugin_config->{$_[1]} }
25
26sub with_plugin_config {
27 my ($self, $with_name, $with_config) = @_;
28 my @orig = @{$self->plugin_config};
29 my @new;
30 while (my ($name, $config) = splice @orig, 0, 2) {
31 push @new, (
32 $name eq $with_name
33 ? ($name, { %$config, %$with_config })
34 : ($name, $config)
35 );
36 }
c68d9e18 37 return $self->with(plugin_config => \@new);
632f0e07 38}
39
e2e7175f 40has _raw_page_plugins => (is => 'lazy', builder => sub {
632f0e07 41 my ($self) = @_;
42 my $plugin_config = $self->plugin_config;
0034f151 43 my ($plugin_map, $defaults) = @{$self->_page_set->plugin_config}
44 {qw(plugin_map defaults)};
632f0e07 45 my @spec = (@$defaults, @$plugin_config);
46 my @plugins;
47 while (my ($name, $config) = splice @spec, 0, 2) {
48 my $info = $plugin_map->{$name};
49 push @plugins,
50 use_module($info->{class})->new(
e2e7175f 51 ($info->{config}||sub{})->(), %$config, page => $self,
52 plugin_map => $plugin_map, # some things will need this
632f0e07 53 );
54 }
55 return \@plugins;
e2e7175f 56});
57
58has _page_plugins => (is => 'lazy', builder => sub {
59 my ($self) = @_;
60 my $raw = $self->_raw_page_plugins;
61 reduce { $b->filter_plugins($a) } $raw, @$raw;
62});
632f0e07 63
64sub published_at {
65 $_[0]->created
66 ? scalar localtime timelocal
67 map +(@{$_}[0..3], $_->[4]-1, $_->[5]-1900),
68 [ reverse split '\D+', $_[0]->created ]
69 : ''
70}
71
632f0e07 72sub to_app {
73 my ($self) = @_;
74 return sub { $self->to_psgi_response(@_) };
75}
76
77sub to_psgi_response {
78 my ($self, $env) = @_;
79
80 if (my $cb = $env->{'App::SCS::Command::Generate.extra_pages'}) {
81 $cb->($_->extra_pages) for @{$self->page_plugins};
82 }
83
84 $self->_psgi_response;
85}
86
87has _psgi_response => (is => 'lazy');
88
89sub _build__psgi_response {
90 my ($self) = @_;
91
632f0e07 92 my $psgi_res = [
0034f151 93 200, [ 'Content-type' => 'text/html' ], $self->_content_zoom->to_fh
632f0e07 94 ];
95
96 return reduce {
97 $b->filter_psgi_response($a)
0034f151 98 } $psgi_res, @{$self->_page_plugins};
99}
100
101sub _content_zoom {
102 my ($self) = @_;
103 return reduce {
104 $b->filter_content_zoom($a)
105 } $self->_html_zoom, @{$self->_page_plugins};
106}
107
108sub _html_zoom {
109 my ($self) = @_;
110 return reduce {
111 $b->filter_html_zoom($a)
112 } HTML::Zoom->from_html($self->html), @{$self->_page_plugins};
632f0e07 113}
114
18968192 115sub body {
116 my ($self) = @_;
117 HTML::Zoom->from_html($self->html)
118 ->collect(body => { into => \my @ev })
119 ->run;
120 HTML::Zoom->from_events(\@ev)->to_html;
121}
122
632f0e07 123no Moo;
124
125sub with {
126 my $self = shift;
127 return ref($self)->new(%$self, @_);
128}
129
1301;