Better regexp to quote-wrap words in stemma dot. Fixes #19, again.
[scpubgit/stemmaweb.git] / lib / stemmaweb / Controller / Stexaminer.pm
CommitLineData
b8a92065 1package stemmaweb::Controller::Stexaminer;
2use Moose;
3use namespace::autoclean;
be8bf746 4use Encode qw/ decode_utf8 /;
b8a92065 5use File::Temp;
6use JSON;
0737e7dd 7use Text::Tradition::Analysis qw/ run_analysis wit_stringify /;
be8bf746 8use Text::Tradition::Stemma;
b8a92065 9
10BEGIN { extends 'Catalyst::Controller' }
11
12
13=head1 NAME
14
15stemmaweb::Controller::Stexaminer - Simple controller for stemma display
16
17=head1 DESCRIPTION
18
19The stemma analysis tool with the pretty colored table.
20
21=head1 METHODS
22
be8bf746 23=head2 index
24
98a45925 25 GET stexaminer/$textid/$stemmaid
b8a92065 26
98a45925 27Renders the application for the text identified by $textid, using the stemma
28graph identified by $stemmaid.
b8a92065 29
b8a92065 30=cut
31
98a45925 32sub index :Path :Args(2) {
33 my( $self, $c, $textid, $stemid ) = @_;
b8a92065 34 my $m = $c->model('Directory');
d3cdef68 35 $c->stash->{template} = 'stexaminer.tt';
36
37 # Make sure the tradition exists and is viewable
b8a92065 38 my $tradition = $m->tradition( $textid );
d3cdef68 39 unless( $tradition ) {
40 $c->response->status( 404 );
41 $c->stash->{'error'} = "No tradition with ID $textid";
42 return;
43 }
96eae440 44 my $ok = _check_permission( $c, $tradition );
45 return unless $ok;
d3cdef68 46
9c2e7b80 47 if( $tradition->stemma_count ) {
847e1ac6 48 my $stemma = $tradition->stemma( $stemid );
f6bfb763 49 my $svgstr = $stemma->as_svg();
50 $svgstr =~ s/\n/ /g;
51 $c->stash->{svg} = $svgstr;
be8bf746 52 $c->stash->{graphdot} = $stemma->editable({ linesep => ' ' });
c655153c 53 $c->stash->{text_id} = $textid;
9c2e7b80 54 $c->stash->{text_title} = $tradition->name;
0c236c96 55
56 # Get the analysis options
57 my( $use_type1, $ignore_sort ) = ( 0, 'none' );
ccbe9315 58 $use_type1 = $c->req->param( 'show_type1' ) ? 1 : 0;
59 $ignore_sort = $c->req->param( 'ignore_variant' ) || '';
0c236c96 60 $c->stash->{'show_type1'} = $use_type1;
61 $c->stash->{'ignore_variant'} = $ignore_sort;
9c2e7b80 62 # TODO Run the analysis as AJAX from the loaded page.
98a45925 63 my %analysis_options = (
64 stemma_id => $stemid,
65 exclude_type1 => !$use_type1 );
0c236c96 66 if( $ignore_sort eq 'spelling' ) {
e816672a 67 $analysis_options{'merge_types'} = [ qw/ spelling orthographic / ];
0c236c96 68 } elsif( $ignore_sort eq 'orthographic' ) {
e816672a 69 $analysis_options{'merge_types'} = 'orthographic';
0c236c96 70 }
ccbe9315 71
72 # Do the deed
0c236c96 73 my $t = run_analysis( $tradition, %analysis_options );
0737e7dd 74 # Stringify the reading groups
75 foreach my $loc ( @{$t->{'variants'}} ) {
76 my $mst = wit_stringify( $loc->{'missing'} );
77 $loc->{'missing'} = $mst;
78 foreach my $rhash ( @{$loc->{'readings'}} ) {
79 my $gst = wit_stringify( $rhash->{'group'} );
80 $rhash->{'group'} = $gst;
f7371955 81 _stringify_element( $rhash, 'independent_occurrence' );
82 _stringify_element( $rhash, 'reversions' );
5089c3b7 83 unless( $rhash->{'text'} ) {
84 $rhash->{'text'} = $rhash->{'readingid'};
85 }
0737e7dd 86 }
87 }
d5514865 88 # Values for TT rendering
9c2e7b80 89 $c->stash->{variants} = $t->{'variants'};
90 $c->stash->{total} = $t->{'variant_count'};
91 $c->stash->{genealogical} = $t->{'genealogical_count'};
d5514865 92 $c->stash->{conflict} = $t->{'conflict_count'};
93 # Also make a JSON stash of the data for the statistics tables
94 $c->stash->{reading_statistics} = to_json( $t->{'variants'} );
9c2e7b80 95 } else {
96 $c->stash->{error} = 'Tradition ' . $tradition->name
97 . 'has no stemma for analysis.';
98 }
b8a92065 99}
100
f7371955 101sub _stringify_element {
102 my( $hash, $key ) = @_;
8603127a 103 return undef unless exists $hash->{$key};
104 if( ref( $hash->{$key} ) eq 'ARRAY' ) {
105 my $str = join( ', ', @{$hash->{$key}} );
106 $hash->{$key} = $str;
107 }
f7371955 108}
109
96eae440 110sub _check_permission {
111 my( $c, $tradition ) = @_;
112 my $user = $c->user_exists ? $c->user->get_object : undef;
113 if( $user ) {
847e1ac6 114 return 'full' if ( $user->is_admin ||
115 ( $tradition->has_user && $tradition->user->id eq $user->id ) );
116 }
117 # Text doesn't belong to us, so maybe it's public?
118 return 'readonly' if $tradition->public;
119
120 # ...nope. Forbidden!
080f8a02 121 $c->response->status( 403 );
d3cdef68 122 $c->stash->{'error'} = 'You do not have permission to view this tradition';
080f8a02 123 return 0;
96eae440 124}
125
be8bf746 126=head2 graphsvg
127
128 POST stexaminer/graphsvg
129 dot: <stemmagraph dot string>
130 layerwits: [ <a.c. witnesses ]
131
132Returns an SVG string of the given graph, extended to include the given
133layered witnesses.
134
135=cut
136
137sub graphsvg :Local {
138 my( $self, $c ) = @_;
139 my $dot = $c->request->param('dot');
140 my @layerwits = $c->request->param('layerwits[]');
141 open my $stemma_fh, '<', \$dot;
142 binmode( $stemma_fh, ':encoding(UTF-8)' );
dcd9e2a9 143 my $tempstemma = Text::Tradition::Stemma->new( 'dot' => $stemma_fh );
f6bfb763 144 my $svgopts = {};
be8bf746 145 if( @layerwits ) {
146 $svgopts->{'layerwits'} = \@layerwits;
147 }
148 $c->stash->{'result'} = $tempstemma->as_svg( $svgopts );
149 $c->forward('View::SVG');
150}
151
b8a92065 152=head2 end
153
154Attempt to render a view, if needed.
155
156=cut
157
158sub end : ActionClass('RenderView') {}
159
160=head1 AUTHOR
161
162Tara L Andrews
163
164=head1 LICENSE
165
166This library is free software. You can redistribute it and/or modify
167it under the same terms as Perl itself.
168
169=cut
170
171__PACKAGE__->meta->make_immutable;
172
1731;