reinstate useful_variant; better handling of AC wits
[scpubgit/stemmatology.git] / stemmaweb / lib / stemmaweb / Controller / Relation.pm
CommitLineData
5c9ecf66 1package stemmaweb::Controller::Relation;
2376359f 2use Moose;
3use namespace::autoclean;
581aee24 4use TryCatch;
2376359f 5
6BEGIN { extends 'Catalyst::Controller' }
7
8
9=head1 NAME
10
5c9ecf66 11stemmaweb::Controller::Relation - Controller for the relationship mapper
2376359f 12
13=head1 DESCRIPTION
14
581aee24 15The reading relationship mapper with draggable nodes.
2376359f 16
17=head1 METHODS
18
581aee24 19=head2 index
20
2376359f 21 GET relation/$textid
22
23Renders the application for the text identified by $textid.
24
2376359f 25=cut
26
72874569 27sub index :Path :Args(0) {
28 my( $self, $c ) = @_;
581aee24 29 $c->stash->{'template'} = 'relate.tt';
30}
31
72874569 32=head2 definitions
581aee24 33
1c0900ef 34 GET relation/definitions
581aee24 35
36Returns a data structure giving the valid types and scopes for a relationship.
37
38=cut
39
1c0900ef 40sub definitions :Local :Args(0) {
581aee24 41 my( $self, $c ) = @_;
72874569 42 my $valid_relationships = [ qw/ spelling orthographic grammatical meaning
43 lexical transposition / ];
581aee24 44 my $valid_scopes = [ qw/ local global / ];
45 $c->stash->{'result'} = { 'types' => $valid_relationships, 'scopes' => $valid_scopes };
46 $c->forward('View::JSON');
2376359f 47}
48
72874569 49=head2 text
581aee24 50
72874569 51 GET relation/$textid/
52
53 Runs the relationship mapper for the specified text ID.
54
581aee24 55=cut
56
72874569 57sub text :Chained('/') :PathPart('relation') :CaptureArgs(1) {
58 my( $self, $c, $textid ) = @_;
59 $c->stash->{'tradition'} = $c->model('Directory')->tradition( $textid );
60}
61
62sub main :Chained('text') :PathPart('') :Args(0) {
581aee24 63 my( $self, $c ) = @_;
1c0900ef 64 my $tradition = delete $c->stash->{'tradition'};
65 my $collation = $tradition->collation;
72874569 66 my $svg_str = $collation->as_svg;
67 $svg_str =~ s/\n//gs;
68 $c->stash->{'svg_string'} = $svg_str;
69 $c->stash->{'text_title'} = $tradition->name;
70 $c->stash->{'template'} = 'relate.tt';
71
581aee24 72}
73
74=head2 relationships
75
72874569 76 GET $textid/relationships
77
78Returns the list of relationships defined for this text.
581aee24 79
72874569 80 POST $textid/relationships { request }
81
82Attempts to define the requested relationship within the text. Returns 200 on
83success or 403 on error.
581aee24 84
72874569 85 DELETE $textid/relationships { request }
86
581aee24 87
88=cut
89
72874569 90sub relationships :Chained('text') :PathPart :Args(0) {
581aee24 91 my( $self, $c ) = @_;
bff7bb42 92 my $tradition = delete $c->stash->{'tradition'};
93 my $collation = $tradition->collation;
72874569 94 if( $c->request->method eq 'GET' ) {
95 my @pairs = $collation->relationships; # returns the edges
96 my @all_relations;
97 foreach my $p ( @pairs ) {
98 my $relobj = $collation->relations->get_relationship( @$p );
99 push( @all_relations,
100 { source => $p->[0], target => $p->[1],
101 type => $relobj->type, scope => $relobj->scope } );
102 }
103 $c->stash->{'result'} = \@all_relations;
104 } elsif( $c->request->method eq 'POST' ) {
105 my $node = $c->request->param('source_id');
106 my $target = $c->request->param('target_id');
107 my $relation = $c->request->param('rel_type');
108 my $note = $c->request->param('note');
109 my $scope = $c->request->param('scope');
110
111 my $opts = { 'type' => $relation,
112 'scope' => $scope };
113
114 try {
115 my @vectors = $collation->add_relationship( $node, $target, $opts );
116 $c->stash->{'result'} = \@vectors;
117 } catch( Text::Tradition::Error $e ) {
118 $c->response->status( '403' );
119 $c->stash->{'result'} = { 'error' => $e->message };
120 }
121 } elsif( $c->request->method eq 'DELETE' ) {
122 my $node = $c->request->param('source_id');
123 my $target = $c->request->param('target_id');
124
125 try {
126 my @vectors = $collation->del_relationship( $node, $target );
127 $c->stash->{'result'} = \@vectors;
128 } catch( Text::Tradition::Error $e ) {
129 $c->response->status( '403' );
130 $c->stash->{'result'} = { 'error' => $e->message };
131 }
581aee24 132 }
581aee24 133 $c->forward('View::JSON');
134}
72874569 135
581aee24 136
2376359f 137=head2 end
138
139Attempt to render a view, if needed.
140
141=cut
142
143sub end : ActionClass('RenderView') {}
144
145=head1 AUTHOR
146
147Tara L Andrews
148
149=head1 LICENSE
150
151This library is free software. You can redistribute it and/or modify
152it under the same terms as Perl itself.
153
154=cut
155
156__PACKAGE__->meta->make_immutable;
157
1581;