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