rename TreeOfTexts to less annoying stemmaweb
[scpubgit/stemmatology.git] / stemmaweb / lib / stemmaweb / Controller / Root.pm
CommitLineData
5c9ecf66 1package stemmaweb::Controller::Root;
dbcf12a6 2use Moose;
3use namespace::autoclean;
3837c155 4use Text::Tradition::Analysis qw/ run_analysis /;
5
dbcf12a6 6
7BEGIN { extends 'Catalyst::Controller' }
8
9#
10# Sets the actions in this controller to be registered with no prefix
11# so they function identically to actions created in MyApp.pm
12#
13__PACKAGE__->config(namespace => '');
14
15=head1 NAME
16
5c9ecf66 17stemmaweb::Controller::Root - Root Controller for stemmaweb
dbcf12a6 18
19=head1 DESCRIPTION
20
6b70c348 21Serves up the main container pages.
dbcf12a6 22
6b70c348 23=head1 URLs
dbcf12a6 24
25=head2 index
26
6b70c348 27The root page (/). Serves the main container page, from which the various
28components will be loaded.
dbcf12a6 29
30=cut
31
32sub index :Path :Args(0) {
33 my ( $self, $c ) = @_;
34
6b70c348 35 $c->stash->{template} = 'index.tt';
36}
37
38=head1 Elements of index page
39
40=head2 directory
41
42 GET /directory
43
44Serves a snippet of HTML that lists the available texts. Eventually this will be available texts by user.
45
46=cut
2376359f 47sub directory :Local :Args(0) {
6b70c348 48 my( $self, $c ) = @_;
3837c155 49 my $m = $c->model('Directory');
6b70c348 50 # TODO not used yet, will load user texts later
51 my $user = $c->request->param( 'user' ) || 'ALL';
52 my @textlist;
12720144 53 foreach my $id ( $m->tradition_ids ) {
3837c155 54 my $data = {
55 'id' => $id,
12720144 56 'name' => $m->name( $id ),
3837c155 57 };
2376359f 58 push( @textlist, $data );
3837c155 59 }
60
6b70c348 61 $c->stash->{texts} = \@textlist;
62 $c->stash->{template} = 'directory.tt';
63}
64
65=head2 alignment
66
67 GET /alignment/$textid
68
69Returns an alignment table for the text specified at $textid.
70
71=cut
72
2376359f 73sub alignment :Local :Args(1) {
6b70c348 74 my( $self, $c, $textid ) = @_;
75 my $m = $c->model('Directory');
76 my $collation = $m->tradition( $textid )->collation;
77 my $alignment = $collation->make_alignment_table;
78
79 # Turn the table, so that witnesses are by column and the rows
80 # are by rank.
81 my $wits = [ map { $_->{'witness'} } @{$alignment->{'alignment'}} ];
82 my $rows;
83 foreach my $i ( 0 .. $alignment->{'length'} - 1 ) {
84 my @rankrdgs = map { $_->{'tokens'}->[$i]->{'t'} }
85 @{$alignment->{'alignment'}};
86 push( @$rows, { 'rank' => $i+1, 'readings' => \@rankrdgs } );
87 }
88 $c->log->debug( Dumper( $rows ) );
89 $c->stash->{'witnesses'} = $wits;
90 $c->stash->{'table'} = $rows;
91 $c->stash->{'template'} = 'alignment.tt';
92}
93
94=head2 stemma
95
96 GET /stemma/$textid
97 POST /stemma/$textid, { 'dot' => $dot_string }
98
99Returns an SVG representation of the stemma hypothesis for the text. If
100the URL is called with POST and a new dot string, updates the stemma and
101returns the SVG as with GET.
102
103=cut
104
2376359f 105sub stemma :Local :Args(1) {
6b70c348 106 my( $self, $c, $textid ) = @_;
107 my $m = $c->model('Directory');
108 my $tradition = $m->tradition( $textid );
109
110 if( $c->req->method eq 'POST' ) {
111 # Update the stemma
112 my $dot = $c->request->body_params->{'dot'};
113 $tradition->add_stemma( $dot );
114 $m->store( $tradition );
115 }
116
117 $c->stash->{'result'} = $tradition->stemma->as_svg;
118 $c->forward('View::SVG');
dbcf12a6 119}
120
6b70c348 121=head2 stemmadot
12720144 122
6b70c348 123 GET /stemmadot/$textid
124
125Returns the 'dot' format representation of the current stemma hypothesis.
126
127=cut
128
2376359f 129sub stemmadot :Local :Args(1) {
6b70c348 130 my( $self, $c, $textid ) = @_;
131 my $m = $c->model('Directory');
132 my $tradition = $m->tradition( $textid );
133
134 $c->response->body( $tradition->stemma->editable );
135 $c->forward('View::Plain');
136}
12720144 137
dbcf12a6 138=head2 default
139
140Standard 404 error page
141
142=cut
143
144sub default :Path {
145 my ( $self, $c ) = @_;
146 $c->response->body( 'Page not found' );
147 $c->response->status(404);
148}
149
150=head2 end
151
152Attempt to render a view, if needed.
153
154=cut
155
156sub end : ActionClass('RenderView') {}
157
158=head1 AUTHOR
159
160Tara L Andrews
161
162=head1 LICENSE
163
164This library is free software. You can redistribute it and/or modify
165it under the same terms as Perl itself.
166
167=cut
168
169__PACKAGE__->meta->make_immutable;
170
1711;