Fix boneheaded XML parsing mistake. Fixes #32
[scpubgit/stemmaweb.git] / lib / stemmaweb / Controller / Root.pm
CommitLineData
b8a92065 1package stemmaweb::Controller::Root;
2use Moose;
3use namespace::autoclean;
c2b80bba 4use JSON qw ();
41279a86 5use TryCatch;
16143416 6use XML::LibXML;
7use XML::LibXML::XPathContext;
b8a92065 8
9
10BEGIN { extends 'Catalyst::Controller' }
11
12#
13# Sets the actions in this controller to be registered with no prefix
14# so they function identically to actions created in MyApp.pm
15#
16__PACKAGE__->config(namespace => '');
17
18=head1 NAME
19
20stemmaweb::Controller::Root - Root Controller for stemmaweb
21
22=head1 DESCRIPTION
23
24Serves up the main container pages.
25
26=head1 URLs
27
28=head2 index
29
30The root page (/). Serves the main container page, from which the various
31components will be loaded.
32
33=cut
34
35sub index :Path :Args(0) {
36 my ( $self, $c ) = @_;
37
c655153c 38 # Are we being asked to load a text immediately? If so
39 if( $c->req->param('withtradition') ) {
40 $c->stash->{'withtradition'} = $c->req->param('withtradition');
41 }
b8a92065 42 $c->stash->{template} = 'index.tt';
43}
44
3f9d7ae5 45=head2 about
46
47A general overview/documentation page for the site.
48
49=cut
50
51sub about :Local :Args(0) {
52 my( $self, $c ) = @_;
53 $c->stash->{template} = 'about.tt';
54}
55
4a6b658f 56=head2 help/*
57
58A dispatcher for documentation of various aspects of the application.
59
60=cut
61
62sub help :Local :Args(1) {
63 my( $self, $c, $topic ) = @_;
64 $c->stash->{template} = "$topic.tt";
65}
66
b8a92065 67=head1 Elements of index page
68
69=head2 directory
70
71 GET /directory
72
70ccaf75 73Serves 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.
b8a92065 74
75=cut
70ccaf75 76
b8a92065 77sub directory :Local :Args(0) {
78 my( $self, $c ) = @_;
79 my $m = $c->model('Directory');
69799996 80 # Is someone logged in?
98a45925 81 my %usertexts;
69799996 82 if( $c->user_exists ) {
83 my $user = $c->user->get_object;
98a45925 84 my @list = $m->traditionlist( $user );
85 map { $usertexts{$_->{id}} = 1 } @list;
86 $c->stash->{usertexts} = \@list;
69799996 87 $c->stash->{is_admin} = 1 if $user->is_admin;
88 }
98a45925 89 # List public (i.e. readonly) texts separately from any user (i.e.
90 # full access) texts that exist. Admin users therefore have nothing
91 # in this list.
92 my @plist = grep { !$usertexts{$_->{id}} } $m->traditionlist('public');
93 $c->stash->{publictexts} = \@plist;
b8a92065 94 $c->stash->{template} = 'directory.tt';
95}
96
75354c3a 97=head1 AJAX methods for traditions and their properties
fb6e49b3 98
75354c3a 99=head2 newtradition
100
101 POST /newtradition,
102 { name: <name>,
103 language: <language>,
104 public: <is_public>,
2ece58b3 105 file: <fileupload> }
fb6e49b3 106
75354c3a 107Creates a new tradition belonging to the logged-in user, with the given name
108and the collation given in the uploaded file. The file type is indicated via
109the filename extension (.csv, .txt, .xls, .xlsx, .xml). Returns the ID and
110name of the new tradition.
111
112=cut
113
114sub newtradition :Local :Args(0) {
115 my( $self, $c ) = @_;
116 return _json_error( $c, 403, 'Cannot save a tradition without being logged in' )
117 unless $c->user_exists;
118
119 my $user = $c->user->get_object;
120 # Grab the file upload, check its name/extension, and call the
121 # appropriate parser(s).
2ece58b3 122 my $upload = $c->request->upload('file');
75354c3a 123 my $name = $c->request->param('name') || 'Uploaded tradition';
124 my $lang = $c->request->param( 'language' ) || 'Default';
125 my $public = $c->request->param( 'public' ) ? 1 : undef;
2ece58b3 126 my( $ext ) = $upload->filename =~ /\.(\w+)$/;
75354c3a 127 my %newopts = (
128 'name' => $name,
129 'language' => $lang,
130 'public' => $public,
2ece58b3 131 'file' => $upload->tempname
75354c3a 132 );
133
134 my $tradition;
135 my $errmsg;
136 if( $ext eq 'xml' ) {
16143416 137 my $type;
138 # Parse the XML to see which flavor it is.
139 my $parser = XML::LibXML->new();
140 my $doc;
141 try {
142 $doc = $parser->parse_file( $newopts{'file'} );
143 } catch( $err ) {
144 $errmsg = "XML file parsing error: $err";
145 }
146 if( $doc ) {
f60227e2 147 if( $doc->documentElement->nodeName eq 'graphml' ) {
16143416 148 $type = 'CollateX';
149 } elsif( $doc->documentElement->nodeName ne 'TEI' ) {
150 $errmsg = 'Unrecognized XML type ' . $doc->documentElement->nodeName;
151 } else {
152 my $xpc = XML::LibXML::XPathContext->new( $doc->documentElement );
153 my $venc = $xpc->findvalue( '/TEI/teiHeader/encodingDesc/variantEncoding/attribute::method' );
154 if( $venc && $venc eq 'double-end-point' ) {
155 $type = 'CTE';
156 } else {
157 $type = 'TEI';
158 }
159 }
160 }
161 # Try the relevant XML parsing option.
162 if( $type ) {
163 delete $newopts{'file'};
164 $newopts{'xmlobj'} = $doc;
75354c3a 165 try {
166 $tradition = Text::Tradition->new( %newopts, 'input' => $type );
167 } catch ( Text::Tradition::Error $e ) {
168 $errmsg = $e->message;
16143416 169 } catch ( $e ) {
170 $errmsg = "Unexpected parsing error: $e";
699ab7ea 171 }
75354c3a 172 }
173 } elsif( $ext =~ /^(txt|csv|xls(x)?)$/ ) {
174 # If it's Excel we need to pass excel => $ext;
175 # otherwise we need to pass sep_char => [record separator].
176 if( $ext =~ /xls/ ) {
177 $newopts{'excel'} = $ext;
178 } else {
179 $newopts{'sep_char'} = $ext eq 'txt' ? "\t" : ',';
180 }
181 try {
182 $tradition = Text::Tradition->new(
183 %newopts,
184 'input' => 'Tabular',
185 );
186 } catch ( Text::Tradition::Error $e ) {
187 $errmsg = $e->message;
16143416 188 } catch ( $e ) {
189 $errmsg = "Unexpected parsing error: $e";
75354c3a 190 }
191 } else {
192 # Error unless we have a recognized filename extension
2bfac197 193 return _json_error( $c, 403, "Unrecognized file type extension $ext" );
75354c3a 194 }
195
196 # Save the tradition if we have it, and return its data or else the
197 # error that occurred trying to make it.
198 if( $errmsg ) {
199 return _json_error( $c, 500, "Error parsing tradition .$ext file: $errmsg" );
200 } elsif( !$tradition ) {
201 return _json_error( $c, 500, "No error caught but tradition not created" );
202 }
203
204 my $m = $c->model('Directory');
205 $user->add_tradition( $tradition );
206 my $id = $c->model('Directory')->store( $tradition );
207 $c->model('Directory')->store( $user );
208 $c->stash->{'result'} = { 'id' => $id, 'name' => $tradition->name };
209 $c->forward('View::JSON');
210}
211
212=head2 textinfo
213
214 GET /textinfo/$textid
215 POST /textinfo/$textid,
216 { name: $new_name,
217 language: $new_language,
218 public: $is_public,
219 owner: $new_userid } # only admin users can update the owner
220
221Returns information about a particular text.
fb6e49b3 222
223=cut
224
75354c3a 225sub textinfo :Local :Args(1) {
fb6e49b3 226 my( $self, $c, $textid ) = @_;
98a45925 227 my $tradition = $c->model('Directory')->tradition( $textid );
6978962f 228 ## Have to keep users in the same scope as tradition
229 my $newuser;
230 my $olduser;
75354c3a 231 unless( $tradition ) {
2bfac197 232 return _json_error( $c, 404, "No tradition with ID $textid" );
75354c3a 233 }
41279a86 234 my $ok = _check_permission( $c, $tradition );
235 return unless $ok;
75354c3a 236 if( $c->req->method eq 'POST' ) {
237 return _json_error( $c, 403,
238 'You do not have permission to update this tradition' )
239 unless $ok eq 'full';
240 my $params = $c->request->parameters;
241 # Handle changes to owner-accessible parameters
242 my $m = $c->model('Directory');
243 my $changed;
ce1c5863 244 # Handle name param - easy
245 if( exists $params->{name} ) {
246 my $newname = delete $params->{name};
247 unless( $tradition->name eq $newname ) {
248 try {
249 $tradition->name( $newname );
75354c3a 250 $changed = 1;
ce1c5863 251 } catch {
6aabefa3 252 return _json_error( $c, 500, "Error setting name to $newname: $@" );
75354c3a 253 }
254 }
255 }
ce1c5863 256 # Handle language param, making Default => null
257 my $langval = delete $params->{language} || 'Default';
ed2aaedb 258
259 unless( $tradition->language eq $langval || !$tradition->can('language') ) {
ce1c5863 260 try {
261 $tradition->language( $langval );
262 $changed = 1;
263 } catch {
6aabefa3 264 return _json_error( $c, 500, "Error setting language to $langval: $@" );
ce1c5863 265 }
266 }
267
75354c3a 268 # Handle our boolean
ce1c5863 269 my $ispublic = $tradition->public;
75354c3a 270 if( delete $params->{'public'} ) { # if it's any true value...
271 $tradition->public( 1 );
ce1c5863 272 $changed = 1 unless $ispublic;
273 } else { # the checkbox was unchecked, ergo it should not be public
274 $tradition->public( 0 );
275 $changed = 1 if $ispublic;
75354c3a 276 }
ce1c5863 277
278 # Handle ownership change
75354c3a 279 if( exists $params->{'owner'} ) {
280 # Only admins can update user / owner
281 my $newownerid = delete $params->{'owner'};
16a7dd1f 282 if( $tradition->has_user && !$tradition->user ) {
283 $tradition->clear_user;
284 }
4f849eea 285 unless( !$newownerid ||
6978962f 286 ( $tradition->has_user && $tradition->user->email eq $newownerid ) ) {
75354c3a 287 unless( $c->user->get_object->is_admin ) {
288 return _json_error( $c, 403,
289 "Only admin users can change tradition ownership" );
290 }
6978962f 291 $newuser = $m->find_user({ email => $newownerid });
75354c3a 292 unless( $newuser ) {
ce1c5863 293 return _json_error( $c, 500, "No such user " . $newownerid );
75354c3a 294 }
6978962f 295 if( $tradition->has_user ) {
296 $olduser = $tradition->user;
297 $olduser->remove_tradition( $tradition );
298 }
75354c3a 299 $newuser->add_tradition( $tradition );
300 $changed = 1;
301 }
302 }
303 # TODO check for rogue parameters
304 if( scalar keys %$params ) {
305 my $rogueparams = join( ', ', keys %$params );
306 return _json_error( $c, 403, "Request parameters $rogueparams not recognized" );
307 }
308 # If we safely got to the end, then write to the database.
309 $m->save( $tradition ) if $changed;
310 $m->save( $newuser ) if $newuser;
311 }
41279a86 312
75354c3a 313 # Now return the current textinfo, whether GET or successful POST.
314 my $textinfo = {
315 textid => $textid,
316 name => $tradition->name,
e0b90236 317 public => $tradition->public || 0,
2ece58b3 318 owner => $tradition->user ? $tradition->user->email : undef,
75354c3a 319 witnesses => [ map { $_->sigil } $tradition->witnesses ],
320 };
6aabefa3 321 ## TODO Make these into callbacks in the other controllers maybe?
ed2aaedb 322 if( $tradition->can('language') ) {
323 $textinfo->{'language'} = $tradition->language;
324 }
c2b80bba 325 if( $tradition->can('stemweb_jobid') ) {
326 $textinfo->{'stemweb_jobid'} = $tradition->stemweb_jobid || 0;
327 }
6aabefa3 328 my @stemmasvg = map { _stemma_info( $_ ) } $tradition->stemmata;
75354c3a 329 $textinfo->{stemmata} = \@stemmasvg;
330 $c->stash->{'result'} = $textinfo;
331 $c->forward('View::JSON');
fb6e49b3 332}
b8a92065 333
75354c3a 334=head2 variantgraph
b8a92065 335
75354c3a 336 GET /variantgraph/$textid
337
338Returns the variant graph for the text specified at $textid, in SVG form.
b8a92065 339
340=cut
341
75354c3a 342sub variantgraph :Local :Args(1) {
b8a92065 343 my( $self, $c, $textid ) = @_;
98a45925 344 my $tradition = $c->model('Directory')->tradition( $textid );
75354c3a 345 unless( $tradition ) {
2bfac197 346 return _json_error( $c, 404, "No tradition with ID $textid" );
75354c3a 347 }
41279a86 348 my $ok = _check_permission( $c, $tradition );
349 return unless $ok;
350
98a45925 351 my $collation = $tradition->collation;
75354c3a 352 $c->stash->{'result'} = $collation->as_svg;
353 $c->forward('View::SVG');
b8a92065 354}
6aabefa3 355
356sub _stemma_info {
357 my( $stemma, $sid ) = @_;
358 my $ssvg = $stemma->as_svg();
359 $ssvg =~ s/\n/ /mg;
360 my $sinfo = {
361 name => $stemma->identifier,
362 directed => _json_bool( !$stemma->is_undirected ),
363 svg => $ssvg };
364 if( $sid ) {
365 $sinfo->{stemmaid} = $sid;
366 }
367 return $sinfo;
368}
369
370## TODO Separate stemma manipulation functionality into its own controller.
75354c3a 371
b8a92065 372=head2 stemma
373
75354c3a 374 GET /stemma/$textid/$stemmaseq
375 POST /stemma/$textid/$stemmaseq, { 'dot' => $dot_string }
b8a92065 376
75354c3a 377Returns an SVG representation of the given stemma hypothesis for the text.
378If the URL is called with POST, the stemma at $stemmaseq will be altered
379to reflect the definition in $dot_string. If $stemmaseq is 'n', a new
380stemma will be added.
b8a92065 381
382=cut
383
75354c3a 384sub stemma :Local :Args(2) {
41279a86 385 my( $self, $c, $textid, $stemmaid ) = @_;
b8a92065 386 my $m = $c->model('Directory');
387 my $tradition = $m->tradition( $textid );
75354c3a 388 unless( $tradition ) {
2bfac197 389 return _json_error( $c, 404, "No tradition with ID $textid" );
75354c3a 390 }
41279a86 391 my $ok = _check_permission( $c, $tradition );
392 return unless $ok;
393
41279a86 394 $c->stash->{'result'} = '';
75354c3a 395 my $stemma;
396 if( $c->req->method eq 'POST' ) {
397 if( $ok eq 'full' ) {
41279a86 398 my $dot = $c->request->body_params->{'dot'};
174e78df 399 # Graph::Reader::Dot does not handle bare unicode. We get around this
4770d077 400 # by wrapping all words in double quotes, as long as they aren't already
be536c89 401 # wrapped, and as long as they aren't the initial '(di)?graph .*'.
4770d077 402 # Horrible HACK.
be536c89 403 my @dlines = split( "\n", $dot );
404 my $wdot = '';
405 foreach( @dlines ) {
406 unless( /^(di)?graph/ ) { # Skip the first line
407 s/(?<!")\b(\w+)\b(?!")/"$1"/g;
408 }
409 $wdot .= "$_\n";
410 }
411 # $dot =~ s/(?<!")\b(?!(?:digraph|stemma)\b)(\w+)\b(?!")/"$1"/g;
412 $dot = $wdot;
413 print STDERR "$dot\n";
75354c3a 414 try {
415 if( $stemmaid eq 'n' ) {
416 # We are adding a new stemma.
3f7346b1 417 $stemmaid = $tradition->stemma_count;
75354c3a 418 $stemma = $tradition->add_stemma( 'dot' => $dot );
2bfac197 419 } elsif( $stemmaid !~ /^\d+$/ ) {
420 return _json_error( $c, 403, "Invalid stemma ID specification $stemmaid" );
75354c3a 421 } elsif( $stemmaid < $tradition->stemma_count ) {
422 # We are updating an existing stemma.
423 $stemma = $tradition->stemma( $stemmaid );
424 $stemma->alter_graph( $dot );
425 } else {
426 # Unrecognized stemma ID
2bfac197 427 return _json_error( $c, 404, "No stemma at index $stemmaid, cannot update" );
75354c3a 428 }
429 } catch ( Text::Tradition::Error $e ) {
430 return _json_error( $c, 500, $e->message );
431 }
41279a86 432 $m->store( $tradition );
75354c3a 433 } else {
434 # No permissions to update the stemma
435 return _json_error( $c, 403,
436 'You do not have permission to update stemmata for this tradition' );
41279a86 437 }
b8a92065 438 }
75354c3a 439
440 # For a GET or a successful POST request, return the SVG representation
441 # of the stemma in question, if any.
75354c3a 442 if( !$stemma && $tradition->stemma_count > $stemmaid ) {
443 $stemma = $tradition->stemma( $stemmaid );
444 }
ce1c5863 445 # What was requested, XML or JSON?
446 my $return_view = 'SVG';
447 if( my $accept_header = $c->req->header('Accept') ) {
448 $c->log->debug( "Received Accept header: $accept_header" );
449 foreach my $type ( split( /,\s*/, $accept_header ) ) {
450 # If we were first asked for XML, return SVG
451 last if $type =~ /^(application|text)\/xml$/;
452 # If we were first asked for JSON, return JSON
453 if( $type eq 'application/json' ) {
454 $return_view = 'JSON';
455 last;
456 }
457 }
458 }
459 if( $return_view eq 'SVG' ) {
6aabefa3 460 $c->stash->{'result'} = $stemma->as_svg();
ce1c5863 461 $c->forward('View::SVG');
462 } else { # JSON
6aabefa3 463 $c->stash->{'result'} = { _stemma_info( $stemma, $stemmaid ) };
ce1c5863 464 $c->forward('View::JSON');
465 }
b8a92065 466}
467
468=head2 stemmadot
469
75354c3a 470 GET /stemmadot/$textid/$stemmaseq
b8a92065 471
472Returns the 'dot' format representation of the current stemma hypothesis.
473
474=cut
475
75354c3a 476sub stemmadot :Local :Args(2) {
477 my( $self, $c, $textid, $stemmaid ) = @_;
b8a92065 478 my $m = $c->model('Directory');
479 my $tradition = $m->tradition( $textid );
75354c3a 480 unless( $tradition ) {
2bfac197 481 return _json_error( $c, 404, "No tradition with ID $textid" );
75354c3a 482 }
41279a86 483 my $ok = _check_permission( $c, $tradition );
484 return unless $ok;
75354c3a 485 my $stemma = $tradition->stemma( $stemmaid );
486 unless( $stemma ) {
2bfac197 487 return _json_error( $c, 404, "Tradition $textid has no stemma ID $stemmaid" );
75354c3a 488 }
489 # Get the dot and transmute its line breaks to literal '|n'
490 $c->stash->{'result'} = { 'dot' => $stemma->editable( { linesep => '|n' } ) };
41279a86 491 $c->forward('View::JSON');
492}
493
6aabefa3 494=head2 stemmaroot
495
496 POST /stemmaroot/$textid/$stemmaseq, { root: <root node ID> }
497
498Orients the given stemma so that the given node is the root (archetype). Returns the
499information structure for the new stemma.
500
501=cut
502
503sub stemmaroot :Local :Args(2) {
504 my( $self, $c, $textid, $stemmaid ) = @_;
505 my $m = $c->model('Directory');
506 my $tradition = $m->tradition( $textid );
507 unless( $tradition ) {
508 return _json_error( $c, 404, "No tradition with ID $textid" );
509 }
510 my $ok = _check_permission( $c, $tradition );
511 if( $ok eq 'full' ) {
512 my $stemma = $tradition->stemma( $stemmaid );
513 try {
514 $stemma->root_graph( $c->req->param('root') );
515 $m->save( $tradition );
516 } catch( Text::Tradition::Error $e ) {
517 return _json_error( $c, 400, $e->message );
518 } catch {
519 return _json_error( $c, 500, "Error re-rooting stemma: $@" );
520 }
521 $c->stash->{'result'} = _stemma_info( $stemma );
522 $c->forward('View::JSON');
523 } else {
524 return _json_error( $c, 403,
525 'You do not have permission to update stemmata for this tradition' );
526 }
527}
528
38627d20 529=head2 download
530
531 GET /download/$textid
532
533Returns the full XML definition of the tradition and its stemmata, if any.
534
535=cut
536
537sub download :Local :Args(1) {
538 my( $self, $c, $textid ) = @_;
539 my $tradition = $c->model('Directory')->tradition( $textid );
540 unless( $tradition ) {
541 return _json_error( $c, 404, "No tradition with ID $textid" );
542 }
543 my $ok = _check_permission( $c, $tradition );
544 return unless $ok;
545 try {
546 $c->stash->{'result'} = $tradition->collation->as_graphml();
547 } catch( Text::Tradition::Error $e ) {
548 return _json_error( $c, 500, $e->message );
549 }
550 $c->forward('View::GraphML');
551}
552
75354c3a 553####################
554### Helper functions
555####################
41279a86 556
75354c3a 557# Helper to check what permission, if any, the active user has for
558# the given tradition
41279a86 559sub _check_permission {
560 my( $c, $tradition ) = @_;
561 my $user = $c->user_exists ? $c->user->get_object : undef;
562 if( $user ) {
929ba7c8 563 return 'full' if ( $user->is_admin ||
564 ( $tradition->has_user && $tradition->user->id eq $user->id ) );
080f8a02 565 }
566 # Text doesn't belong to us, so maybe it's public?
567 return 'readonly' if $tradition->public;
568
569 # ...nope. Forbidden!
75354c3a 570 return _json_error( $c, 403, 'You do not have permission to view this tradition.' );
571}
572
573# Helper to throw a JSON exception
574sub _json_error {
575 my( $c, $code, $errmsg ) = @_;
576 $c->response->status( $code );
577 $c->stash->{'result'} = { 'error' => $errmsg };
578 $c->forward('View::JSON');
929ba7c8 579 return 0;
41279a86 580}
581
63378fe0 582sub _json_bool {
583 return $_[0] ? JSON::true : JSON::false;
584}
585
b8a92065 586=head2 default
587
588Standard 404 error page
589
590=cut
591
592sub default :Path {
593 my ( $self, $c ) = @_;
594 $c->response->body( 'Page not found' );
595 $c->response->status(404);
596}
597
598=head2 end
599
600Attempt to render a view, if needed.
601
602=cut
603
604sub end : ActionClass('RenderView') {}
605
606=head1 AUTHOR
607
608Tara L Andrews
609
610=head1 LICENSE
611
612This library is free software. You can redistribute it and/or modify
613it under the same terms as Perl itself.
614
615=cut
616
617__PACKAGE__->meta->make_immutable;
618
6191;