summaryrefslogtreecommitdiffstats
path: root/lib/Narwhal/Component/Wiki/Page.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Narwhal/Component/Wiki/Page.pm')
-rw-r--r--lib/Narwhal/Component/Wiki/Page.pm53
1 files changed, 53 insertions, 0 deletions
diff --git a/lib/Narwhal/Component/Wiki/Page.pm b/lib/Narwhal/Component/Wiki/Page.pm
new file mode 100644
index 0000000..726439a
--- /dev/null
+++ b/lib/Narwhal/Component/Wiki/Page.pm
@@ -0,0 +1,53 @@
+package Narwhal::Component::Wiki::Page;
+use Moose;
+
+has kioku => (
+ isa => 'KiokuX::Model',
+ required => 1,
+ handles => 'KiokuDB::Role::API',
+);
+
+has tt => (
+ isa => 'Template',
+ required => 1,
+ handles => ['process'],
+);
+
+has scope => (
+ is => 'ro',
+ isa => 'KiokuDB::LiveObjects::Scope',
+ lazy => 1,
+ default => sub { shift->new_scope },
+);
+
+sub BUILD {
+ my $self = shift;
+ $self->scope;
+}
+
+sub get {
+ my $self = shift;
+ my ($req, $page) = @_;
+
+ my $page_obj = $self->lookup("page:$page");
+ return $req->new_response(404)
+ unless $page_obj;
+
+ my $out;
+ $self->process(
+ 'page.tt',
+ {
+ uri_for => sub { $req->uri_for({@_}) },
+ text => $page_obj->text,
+ page => $page
+ },
+ \$out
+ );
+
+ return $req->new_response(200, [], $out);
+}
+
+__PACKAGE__->meta->make_immutable;
+no Moose;
+
+1;