add index page link to stexaminer and relmapper
[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 /;
852190b9 5use TryCatch;
3837c155 6
dbcf12a6 7
8BEGIN { extends 'Catalyst::Controller' }
9
10#
11# Sets the actions in this controller to be registered with no prefix
12# so they function identically to actions created in MyApp.pm
13#
14__PACKAGE__->config(namespace => '');
15
16=head1 NAME
17
5c9ecf66 18stemmaweb::Controller::Root - Root Controller for stemmaweb
dbcf12a6 19
20=head1 DESCRIPTION
21
6b70c348 22Serves up the main container pages.
dbcf12a6 23
6b70c348 24=head1 URLs
dbcf12a6 25
26=head2 index
27
6b70c348 28The root page (/). Serves the main container page, from which the various
29components will be loaded.
dbcf12a6 30
31=cut
32
33sub index :Path :Args(0) {
34 my ( $self, $c ) = @_;
35
5d9fd8da 36 # Are we being asked to load a text immediately? If so
37 if( $c->req->param('withtradition') ) {
38 $c->stash->{'withtradition'} = $c->req->param('withtradition');
39 }
6b70c348 40 $c->stash->{template} = 'index.tt';
41}
42
43=head1 Elements of index page
44
45=head2 directory
46
47 GET /directory
48
7c256818 49Serves a snippet of HTML that lists the available texts. This returns texts belonging to the logged-in user if any, otherwise it returns all public texts.
6b70c348 50
51=cut
7c256818 52
2376359f 53sub directory :Local :Args(0) {
6b70c348 54 my( $self, $c ) = @_;
3837c155 55 my $m = $c->model('Directory');
27a20fbe 56 # Is someone logged in?
3524c08f 57 my %usertexts;
27a20fbe 58 if( $c->user_exists ) {
59 my $user = $c->user->get_object;
3524c08f 60 my @list = $m->traditionlist( $user );
61 map { $usertexts{$_->{id}} = 1 } @list;
62 $c->stash->{usertexts} = \@list;
27a20fbe 63 $c->stash->{is_admin} = 1 if $user->is_admin;
64 }
3524c08f 65 # List public (i.e. readonly) texts separately from any user (i.e.
66 # full access) texts that exist. Admin users therefore have nothing
67 # in this list.
68 my @plist = grep { !$usertexts{$_->{id}} } $m->traditionlist('public');
69 $c->stash->{publictexts} = \@plist;
6b70c348 70 $c->stash->{template} = 'directory.tt';
71}
72
0bded693 73=head1 AJAX methods for traditions and their properties
cf9626aa 74
0bded693 75=head2 newtradition
76
77 POST /newtradition,
78 { name: <name>,
79 language: <language>,
80 public: <is_public>,
81 file: <fileupload> }
cf9626aa 82
0bded693 83Creates a new tradition belonging to the logged-in user, with the given name
84and the collation given in the uploaded file. The file type is indicated via
85the filename extension (.csv, .txt, .xls, .xlsx, .xml). Returns the ID and
86name of the new tradition.
87
88=cut
89
90sub newtradition :Local :Args(0) {
91 my( $self, $c ) = @_;
92 return _json_error( $c, 403, 'Cannot save a tradition without being logged in' )
93 unless $c->user_exists;
94
95 my $user = $c->user->get_object;
96 # Grab the file upload, check its name/extension, and call the
97 # appropriate parser(s).
98 my $upload = $c->request->upload('file');
99 my $name = $c->request->param('name') || 'Uploaded tradition';
100 my $lang = $c->request->param( 'language' ) || 'Default';
101 my $public = $c->request->param( 'public' ) ? 1 : undef;
102 my( $ext ) = $upload->filename =~ /\.(\w+)$/;
103 my %newopts = (
104 'name' => $name,
105 'language' => $lang,
106 'public' => $public,
107 'file' => $upload->tempname
108 );
109
110 my $tradition;
111 my $errmsg;
112 if( $ext eq 'xml' ) {
113 # Try the different XML parsing options to see if one works.
114 foreach my $type ( qw/ CollateX CTE TEI / ) {
115 try {
116 $tradition = Text::Tradition->new( %newopts, 'input' => $type );
117 } catch ( Text::Tradition::Error $e ) {
118 $errmsg = $e->message;
119 } catch {
120 $errmsg = "Unexpected parsing error";
121 }
122 last if $tradition;
123 }
124 } elsif( $ext =~ /^(txt|csv|xls(x)?)$/ ) {
125 # If it's Excel we need to pass excel => $ext;
126 # otherwise we need to pass sep_char => [record separator].
127 if( $ext =~ /xls/ ) {
128 $newopts{'excel'} = $ext;
129 } else {
130 $newopts{'sep_char'} = $ext eq 'txt' ? "\t" : ',';
131 }
132 try {
133 $tradition = Text::Tradition->new(
134 %newopts,
135 'input' => 'Tabular',
136 );
137 } catch ( Text::Tradition::Error $e ) {
138 $errmsg = $e->message;
139 } catch {
140 $errmsg = "Unexpected parsing error";
141 }
142 } else {
143 # Error unless we have a recognized filename extension
144 return _json_error( $c, 500, "Unrecognized file type extension $ext" );
145 }
146
147 # Save the tradition if we have it, and return its data or else the
148 # error that occurred trying to make it.
149 if( $errmsg ) {
150 return _json_error( $c, 500, "Error parsing tradition .$ext file: $errmsg" );
151 } elsif( !$tradition ) {
152 return _json_error( $c, 500, "No error caught but tradition not created" );
153 }
154
155 my $m = $c->model('Directory');
156 $user->add_tradition( $tradition );
157 my $id = $c->model('Directory')->store( $tradition );
158 $c->model('Directory')->store( $user );
159 $c->stash->{'result'} = { 'id' => $id, 'name' => $tradition->name };
160 $c->forward('View::JSON');
161}
162
163=head2 textinfo
164
165 GET /textinfo/$textid
166 POST /textinfo/$textid,
167 { name: $new_name,
168 language: $new_language,
169 public: $is_public,
170 owner: $new_userid } # only admin users can update the owner
171
172Returns information about a particular text.
cf9626aa 173
174=cut
175
0bded693 176sub textinfo :Local :Args(1) {
cf9626aa 177 my( $self, $c, $textid ) = @_;
3524c08f 178 my $tradition = $c->model('Directory')->tradition( $textid );
0bded693 179 unless( $tradition ) {
180 return _json_error( $c, 500, "No tradition with ID $textid" );
181 }
852190b9 182 my $ok = _check_permission( $c, $tradition );
183 return unless $ok;
0bded693 184 if( $c->req->method eq 'POST' ) {
185 return _json_error( $c, 403,
186 'You do not have permission to update this tradition' )
187 unless $ok eq 'full';
188 my $params = $c->request->parameters;
189 # Handle changes to owner-accessible parameters
190 my $m = $c->model('Directory');
191 my $changed;
789cbe47 192 # Handle name param - easy
193 if( exists $params->{name} ) {
194 my $newname = delete $params->{name};
195 unless( $tradition->name eq $newname ) {
196 try {
197 $tradition->name( $newname );
0bded693 198 $changed = 1;
789cbe47 199 } catch {
200 return _json_error( $c, 500, "Error setting name to $newname" );
0bded693 201 }
202 }
203 }
789cbe47 204 # Handle language param, making Default => null
205 my $langval = delete $params->{language} || 'Default';
206 unless( $tradition->language eq $langval ) {
207 try {
208 $tradition->language( $langval );
209 $changed = 1;
210 } catch {
211 return _json_error( $c, 500, "Error setting language to $langval" );
212 }
213 }
214
0bded693 215 # Handle our boolean
789cbe47 216 my $ispublic = $tradition->public;
0bded693 217 if( delete $params->{'public'} ) { # if it's any true value...
218 $tradition->public( 1 );
789cbe47 219 $changed = 1 unless $ispublic;
220 } else { # the checkbox was unchecked, ergo it should not be public
221 $tradition->public( 0 );
222 $changed = 1 if $ispublic;
0bded693 223 }
789cbe47 224
225 # Handle ownership change
0bded693 226 my $newuser;
227 if( exists $params->{'owner'} ) {
228 # Only admins can update user / owner
229 my $newownerid = delete $params->{'owner'};
38093cb0 230 unless( !$newownerid ||
231 ( $tradition->has_user && $tradition->user->id eq $newownerid ) ) {
0bded693 232 unless( $c->user->get_object->is_admin ) {
233 return _json_error( $c, 403,
234 "Only admin users can change tradition ownership" );
235 }
789cbe47 236 $newuser = $m->find_user({ username => $newownerid });
0bded693 237 unless( $newuser ) {
789cbe47 238 return _json_error( $c, 500, "No such user " . $newownerid );
0bded693 239 }
240 $newuser->add_tradition( $tradition );
241 $changed = 1;
242 }
243 }
244 # TODO check for rogue parameters
245 if( scalar keys %$params ) {
246 my $rogueparams = join( ', ', keys %$params );
247 return _json_error( $c, 403, "Request parameters $rogueparams not recognized" );
248 }
249 # If we safely got to the end, then write to the database.
250 $m->save( $tradition ) if $changed;
251 $m->save( $newuser ) if $newuser;
252 }
852190b9 253
0bded693 254 # Now return the current textinfo, whether GET or successful POST.
255 my $textinfo = {
256 textid => $textid,
257 name => $tradition->name,
258 language => $tradition->language,
259 public => $tradition->public,
260 owner => $tradition->user ? $tradition->user->id : undef,
261 witnesses => [ map { $_->sigil } $tradition->witnesses ],
262 };
263 my @stemmasvg = map { $_->as_svg({ size => [ 500, 375 ] }) } $tradition->stemmata;
264 map { $_ =~ s/\n/ /mg } @stemmasvg;
265 $textinfo->{stemmata} = \@stemmasvg;
266 $c->stash->{'result'} = $textinfo;
267 $c->forward('View::JSON');
cf9626aa 268}
6b70c348 269
0bded693 270=head2 variantgraph
6b70c348 271
0bded693 272 GET /variantgraph/$textid
273
274Returns the variant graph for the text specified at $textid, in SVG form.
6b70c348 275
276=cut
277
0bded693 278sub variantgraph :Local :Args(1) {
6b70c348 279 my( $self, $c, $textid ) = @_;
3524c08f 280 my $tradition = $c->model('Directory')->tradition( $textid );
0bded693 281 unless( $tradition ) {
282 return _json_error( $c, 500, "No tradition with ID $textid" );
283 }
852190b9 284 my $ok = _check_permission( $c, $tradition );
285 return unless $ok;
286
3524c08f 287 my $collation = $tradition->collation;
0bded693 288 $c->stash->{'result'} = $collation->as_svg;
289 $c->forward('View::SVG');
6b70c348 290}
0bded693 291
6b70c348 292=head2 stemma
293
0bded693 294 GET /stemma/$textid/$stemmaseq
295 POST /stemma/$textid/$stemmaseq, { 'dot' => $dot_string }
6b70c348 296
0bded693 297Returns an SVG representation of the given stemma hypothesis for the text.
298If the URL is called with POST, the stemma at $stemmaseq will be altered
299to reflect the definition in $dot_string. If $stemmaseq is 'n', a new
300stemma will be added.
6b70c348 301
302=cut
303
0bded693 304sub stemma :Local :Args(2) {
852190b9 305 my( $self, $c, $textid, $stemmaid ) = @_;
6b70c348 306 my $m = $c->model('Directory');
307 my $tradition = $m->tradition( $textid );
0bded693 308 unless( $tradition ) {
309 return _json_error( $c, 500, "No tradition with ID $textid" );
310 }
852190b9 311 my $ok = _check_permission( $c, $tradition );
312 return unless $ok;
313
852190b9 314 $c->stash->{'result'} = '';
0bded693 315 my $stemma;
316 if( $c->req->method eq 'POST' ) {
317 if( $ok eq 'full' ) {
852190b9 318 my $dot = $c->request->body_params->{'dot'};
0bded693 319 try {
320 if( $stemmaid eq 'n' ) {
321 # We are adding a new stemma.
322 $stemma = $tradition->add_stemma( 'dot' => $dot );
789cbe47 323 $stemmaid = $tradition->stemma_count - 1;
0bded693 324 } elsif( $stemmaid < $tradition->stemma_count ) {
325 # We are updating an existing stemma.
326 $stemma = $tradition->stemma( $stemmaid );
327 $stemma->alter_graph( $dot );
328 } else {
329 # Unrecognized stemma ID
330 return _json_error( $c, 500, "No stemma at index $stemmaid, cannot update" );
331 }
332 } catch ( Text::Tradition::Error $e ) {
333 return _json_error( $c, 500, $e->message );
334 }
852190b9 335 $m->store( $tradition );
0bded693 336 } else {
337 # No permissions to update the stemma
338 return _json_error( $c, 403,
339 'You do not have permission to update stemmata for this tradition' );
852190b9 340 }
6b70c348 341 }
0bded693 342
343 # For a GET or a successful POST request, return the SVG representation
344 # of the stemma in question, if any.
0bded693 345 if( !$stemma && $tradition->stemma_count > $stemmaid ) {
346 $stemma = $tradition->stemma( $stemmaid );
347 }
789cbe47 348 my $stemma_xml = $stemma ? $stemma->as_svg( { size => [ 500, 375 ] } ) : '';
349 # What was requested, XML or JSON?
350 my $return_view = 'SVG';
351 if( my $accept_header = $c->req->header('Accept') ) {
352 $c->log->debug( "Received Accept header: $accept_header" );
353 foreach my $type ( split( /,\s*/, $accept_header ) ) {
354 # If we were first asked for XML, return SVG
355 last if $type =~ /^(application|text)\/xml$/;
356 # If we were first asked for JSON, return JSON
357 if( $type eq 'application/json' ) {
358 $return_view = 'JSON';
359 last;
360 }
361 }
362 }
363 if( $return_view eq 'SVG' ) {
364 $c->stash->{'result'} = $stemma_xml;
365 $c->forward('View::SVG');
366 } else { # JSON
367 $stemma_xml =~ s/\n/ /mg;
368 $c->stash->{'result'} = { 'stemmaid' => $stemmaid, 'stemmasvg' => $stemma_xml };
369 $c->forward('View::JSON');
370 }
dbcf12a6 371}
372
6b70c348 373=head2 stemmadot
12720144 374
0bded693 375 GET /stemmadot/$textid/$stemmaseq
6b70c348 376
377Returns the 'dot' format representation of the current stemma hypothesis.
378
379=cut
380
0bded693 381sub stemmadot :Local :Args(2) {
382 my( $self, $c, $textid, $stemmaid ) = @_;
6b70c348 383 my $m = $c->model('Directory');
384 my $tradition = $m->tradition( $textid );
0bded693 385 unless( $tradition ) {
386 return _json_error( $c, 500, "No tradition with ID $textid" );
387 }
852190b9 388 my $ok = _check_permission( $c, $tradition );
389 return unless $ok;
0bded693 390 my $stemma = $tradition->stemma( $stemmaid );
391 unless( $stemma ) {
392 return _json_error( $c, 500, "Tradition $textid has no stemma ID $stemmaid" );
393 }
394 # Get the dot and transmute its line breaks to literal '|n'
395 $c->stash->{'result'} = { 'dot' => $stemma->editable( { linesep => '|n' } ) };
852190b9 396 $c->forward('View::JSON');
397}
398
0bded693 399####################
400### Helper functions
401####################
852190b9 402
0bded693 403# Helper to check what permission, if any, the active user has for
404# the given tradition
852190b9 405sub _check_permission {
406 my( $c, $tradition ) = @_;
407 my $user = $c->user_exists ? $c->user->get_object : undef;
408 if( $user ) {
2b4baccc 409 return 'full' if ( $user->is_admin ||
410 ( $tradition->has_user && $tradition->user->id eq $user->id ) );
75ce4f7a 411 }
412 # Text doesn't belong to us, so maybe it's public?
413 return 'readonly' if $tradition->public;
414
415 # ...nope. Forbidden!
0bded693 416 return _json_error( $c, 403, 'You do not have permission to view this tradition.' );
417}
418
419# Helper to throw a JSON exception
420sub _json_error {
421 my( $c, $code, $errmsg ) = @_;
422 $c->response->status( $code );
423 $c->stash->{'result'} = { 'error' => $errmsg };
424 $c->forward('View::JSON');
2b4baccc 425 return 0;
852190b9 426}
427
dbcf12a6 428=head2 default
429
430Standard 404 error page
431
432=cut
433
434sub default :Path {
435 my ( $self, $c ) = @_;
436 $c->response->body( 'Page not found' );
437 $c->response->status(404);
438}
439
440=head2 end
441
442Attempt to render a view, if needed.
443
444=cut
445
446sub end : ActionClass('RenderView') {}
447
448=head1 AUTHOR
449
450Tara L Andrews
451
452=head1 LICENSE
453
454This library is free software. You can redistribute it and/or modify
455it under the same terms as Perl itself.
456
457=cut
458
459__PACKAGE__->meta->make_immutable;
460
4611;