switch FilterBuilder to short form
[catagits/App-IdiotBox.git] / lib / App / IdiotBox.pm
CommitLineData
e30ed59d 1package App::IdiotBox;
2
3use Web::Simple __PACKAGE__;
d7497a23 4use FindBin;
5use HTML::Zoom;
998cc52c 6use HTML::Zoom::FilterBuilder::Template;
02ea620e 7use List::Util qw(first);
d7497a23 8
9{
10 package App::IdiotBox::Announcement;
11
ebba317f 12 sub id { shift->{id} }
d7497a23 13 sub made_at { shift->{made_at} }
14 sub bucket { shift->{bucket} }
15 sub video_count { shift->{video_count} }
16
17 package App::IdiotBox::Bucket;
18
19 sub slug { shift->{slug} }
20 sub name { shift->{name} }
d9702c6d 21 sub video_count {
22 exists $_[0]->{video_count}
23 ? $_[0]->{video_count}
24 : $_[0]->{videos}->count
25 }
71fd1550 26 sub videos { shift->{videos} }
27
28 package App::IdiotBox::Video;
29
30 sub slug { shift->{slug} }
31 sub name { shift->{name} }
32 sub author { shift->{author} }
33 sub details { shift->{details} }
34 sub bucket { shift->{bucket} }
998cc52c 35 sub file_name {
36 (my $s = join(' ', @{+shift}{qw(author name)})) =~ s/ /-/g;
37 $s;
38 }
ebba317f 39 sub url_path {
40 join('/', $_[0]->bucket->slug, $_[0]->slug);
41 }
d7497a23 42}
43
362a8766 44has $_ => (is => 'ro') for qw(recent_announcements buckets);
45
8b9d3d54 46sub default_config {
71a02d85 47 template_dir => 'share/html',
48 store => 'SQLite',
49 db_file => 'var/lib/idiotbox.db',
998cc52c 50 base_url => 'http://localhost:3000/',
ebba317f 51 base_dir => do { use FindBin; $FindBin::Bin },
8b9d3d54 52}
e30ed59d 53
71a02d85 54sub BUILD {
55 my $self = shift;
56 my $store;
57 ($store = $self->config->{store}) =~ /^(\w+)$/
58 or die "Store config should be just a name, got ${store} instead";
59 my $store_class = "App::IdiotBox::Store::${store}";
60 eval "require ${store_class}; 1"
61 or die "Couldn't load ${store} store: $@";
62 $store_class->bind($self);
63}
64
8b9d3d54 65sub dispatch_request {
66 my $self = shift;
e30ed59d 67 sub (/) { $self->show_front_page },
8b9d3d54 68 sub (/*/...) {
e30ed59d 69 my $bucket = $self->buckets->get({ slug => $_[1] });
8b9d3d54 70 sub (/) {
71 $self->show_bucket($bucket)
72 },
73 sub (/*/) {
74 $self->show_video($bucket->videos->get({ slug => $_[1] }));
75 }
e30ed59d 76 }
8b9d3d54 77}
e30ed59d 78
847de56a 79sub show_front_page {
80 my $self = shift;
e30ed59d 81 my $ann = $self->recent_announcements;
82 $self->html_response(
1a1c4f78 83 front_page => sub {
84 $_->select('#announcement-list')
85 ->repeat_content($ann->map(sub {
86 my $obj = $_;
87 sub {
88 $_->select('.bucket-name')->replace_content($obj->bucket->name)
02ea620e 89 ->select('.made-at')->replace_content($obj->made_at)
fb836c4b 90 ->select('.bucket-link')->set_attribute(
91 'href' => $obj->bucket->slug.'/'
92 )
1a1c4f78 93 ->select('.new-videos')->replace_content($obj->video_count)
94 ->select('.total-videos')->replace_content(
95 $obj->bucket->video_count
96 )
97 }
98 }))
99 }
e30ed59d 100 );
101}
102
847de56a 103sub show_bucket {
104 my ($self, $bucket) = @_;
1a1c4f78 105 $self->html_response(bucket => sub {
106 $_->select('.bucket-name')->replace_content($bucket->name)
107 ->select('#video-list')->repeat_content($bucket->videos->map(sub {
108 my $video = $_;
109 sub {
110 $_->select('.video-name')->replace_content($video->name)
111 ->select('.video-author')->replace_content($video->author)
112 ->select('.video-link')->set_attribute(
fb836c4b 113 href => $video->slug.'/'
1a1c4f78 114 )
115 }
116 }))
117 });
d7497a23 118}
119
847de56a 120sub show_video {
121 my ($self, $video) = @_;
02ea620e 122 my $video_file = first {
123 -e join('/', $self->config->{base_dir}, $_)
124 } map {
125 join('/', $video->bucket->slug, $video->slug, $video->file_name.".$_")
126 } qw(flv m4v);
1a1c4f78 127 $self->html_response(video => sub {
998cc52c 128 my $video_url =
129 $self->base_url
6df05090 130 .($video_file||'NO FILE FOUND SORRY');
998cc52c 131
1a1c4f78 132 $_->select('.video-name')->replace_content($video->name)
133 ->select('.author-name')->replace_content($video->author)
134 ->select('.bucket-link')->set_attribute(
fb836c4b 135 href => '../'
1a1c4f78 136 )
137 ->select('.bucket-name')->replace_content($video->bucket->name)
138 ->select('.video-details')->replace_content($video->details)
998cc52c 139 ->select('script')->template_text_raw({ video_url => $video_url });
1a1c4f78 140 });
d7497a23 141}
142
847de56a 143sub html_response {
144 my ($self, $template_name, $selectors) = @_;
1a1c4f78 145 my $io = $self->_zoom_for($template_name => $selectors)->to_fh;
e30ed59d 146 return [ 200, [ 'Content-Type' => 'text/html' ], $io ]
147}
148
847de56a 149sub _template_filename_for {
150 my ($self, $name) = @_;
d7497a23 151 $self->{config}{template_dir}.'/'.$name.'.html';
152}
153
847de56a 154sub _layout_zoom {
155 my $self = shift;
d7497a23 156 $self->{layout_zoom} ||= HTML::Zoom->from_file(
157 $self->_template_filename_for('layout')
e30ed59d 158 )
159}
160
847de56a 161sub _zoom_for {
162 my ($self, $template_name, $selectors) = @_;
e30ed59d 163 ($self->{zoom_for_template}{$template_name} ||= do {
164 my @body;
d7497a23 165 HTML::Zoom->from_file(
166 $self->_template_filename_for($template_name)
e30ed59d 167 )
1a1c4f78 168 ->select('#main-content')->collect_content({ into => \@body })
d7497a23 169 ->run;
1a1c4f78 170 $self->_layout_zoom
171 ->select('#main-content')->replace_content(\@body)
172 ->memoize;
173 })->apply($selectors);
e30ed59d 174}
175
847de56a 176sub base_url {
177 my $self = shift;
998cc52c 178 $self->{base_url} ||= do {
179 (my $u = $self->config->{base_url}) =~ s/\/$//;
180 "${u}/";
181 }
182}
183
847de56a 184sub _run_cli {
185 my $self = shift;
ebba317f 186 unless (@ARGV == 1 && $ARGV[0] eq 'import') {
187 return $self->SUPER::_run_cli(@_);
188 }
189 $self->cli_import;
190}
191
847de56a 192sub _cli_usage {
193 my $self = shift;
ebba317f 194 "To import data into your idiotbox install, chdir into a directory\n".
195 "containing video files and run:\n".
196 "\n".
197 " $0 import\n".
198 "\n".
199 $self->SUPER::_cli_usage(@_);
200}
201
847de56a 202sub cli_import {
203 my $self = shift;
ebba317f 204 require App::IdiotBox::Importer;
205 App::IdiotBox::Importer->run($self);
206}
207
e30ed59d 2081;