Make a resolver object implementing the current policy. You should now be able to...
[catagits/Gitalist.git] / lib / Gitalist / Model / ContentMangler.pm
CommitLineData
03297637 1package Gitalist::Model::ContentMangler;
2use Moose;
b2e0fe31 3use MooseX::Types::Moose qw/HashRef/;
7c781a87 4use MooseX::Types::Common::String qw/NonEmptySimpleStr/;
5use Gitalist::ContentMangler::Resolver;
03297637 6use namespace::autoclean;
7
8extends 'Catalyst::Model';
9
7c781a87 10has resolver_class => (
11 isa => NonEmptySimpleStr,
12 is => 'ro',
13 required => 1,
14 default => 'Gitalist::ContentMangler::Resolver::Default',
15);
16
17has resolver_config => (
b2e0fe31 18 isa => HashRef,
19 is => 'ro',
20 default => sub { {} },
7c781a87 21);
22
23has _resolver => (
24 does => 'Gitalist::ContentMangler::Resolver',
25 handles => ['resolve'],
26 is => 'bare', lazy => 1,
27 default => sub {
28 my $self = shift;
29 my $class = $self->resolver_class;
30 Class::MOP::load_class($class);
31 return $class->new($self->resolver_config);
b2e0fe31 32 },
33);
34
35# FIXME This method is a gross hack.
36#
37# We need to work out what types of content mangles we have for various things based on hit type
38# file name and mime type, and perform the appropriate bits..
39
40# We need to support multiple languages, and we also want to be able to do HTMLizing (for e.g. Pod)
41
42sub process {
43 my ($self, $c) = @_;
44
7c781a87 45 my @steps = $self->resolve({ filename => $c->stash->{filename} });
46 my @css = map { $_->[1]->{css} } grep { exists $_->[1] && exists $_->[1]->{css} && defined $_->[1]->{css} && length $_->[1]->{css} } @steps;
47 $c->stash(syntax_css => [ map { $c->uri_for('/static/css/syntax/' . $_ . '.css') } @css ]);
b2e0fe31 48
49 if ($c->stash->{blobs} || $c->stash->{blob}) {
7c781a87 50 foreach my $step (@steps) {
51 for ($c->stash->{blobs} ? @{$c->stash->{blobs}} : $c->stash->{blob}) {
52 $_ = $c->view($step->[0])->render($c, $_, $step->[1]);
53 }
b2e0fe31 54 }
55 }
56}
57
03297637 58__PACKAGE__->meta->make_immutable;