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