pull new relationship mapper interface
[scpubgit/stemmaweb.git] / lib / stemmaweb / Controller / Relation.pm
CommitLineData
b8a92065 1package stemmaweb::Controller::Relation;
2use Moose;
3use namespace::autoclean;
b28e606e 4use TryCatch;
b8a92065 5
6BEGIN { extends 'Catalyst::Controller' }
7
8
9=head1 NAME
10
11stemmaweb::Controller::Relation - Controller for the relationship mapper
12
13=head1 DESCRIPTION
14
b28e606e 15The reading relationship mapper with draggable nodes.
b8a92065 16
17=head1 METHODS
18
b28e606e 19=head2 index
20
b8a92065 21 GET relation/$textid
22
23Renders the application for the text identified by $textid.
24
b8a92065 25=cut
26
9529f69c 27sub index :Path :Args(0) {
28 my( $self, $c ) = @_;
b28e606e 29 $c->stash->{'template'} = 'relate.tt';
30}
31
9529f69c 32=head2 definitions
b28e606e 33
9c2e7b80 34 GET relation/definitions
b28e606e 35
36Returns a data structure giving the valid types and scopes for a relationship.
37
38=cut
39
9c2e7b80 40sub definitions :Local :Args(0) {
b28e606e 41 my( $self, $c ) = @_;
9529f69c 42 my $valid_relationships = [ qw/ spelling orthographic grammatical meaning
43 lexical transposition / ];
b28e606e 44 my $valid_scopes = [ qw/ local global / ];
45 $c->stash->{'result'} = { 'types' => $valid_relationships, 'scopes' => $valid_scopes };
46 $c->forward('View::JSON');
b8a92065 47}
48
9529f69c 49=head2 text
b28e606e 50
9529f69c 51 GET relation/$textid/
52
53 Runs the relationship mapper for the specified text ID.
54
b28e606e 55=cut
56
9529f69c 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) {
b28e606e 63 my( $self, $c ) = @_;
9c2e7b80 64 my $tradition = delete $c->stash->{'tradition'};
65 my $collation = $tradition->collation;
9529f69c 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
b28e606e 72}
73
74=head2 relationships
75
9529f69c 76 GET $textid/relationships
77
78Returns the list of relationships defined for this text.
b28e606e 79
9529f69c 80 POST $textid/relationships { request }
81
82Attempts to define the requested relationship within the text. Returns 200 on
83success or 403 on error.
b28e606e 84
9529f69c 85 DELETE $textid/relationships { request }
86
b28e606e 87
88=cut
89
9529f69c 90sub relationships :Chained('text') :PathPart :Args(0) {
b28e606e 91 my( $self, $c ) = @_;
6d124a83 92 my $tradition = delete $c->stash->{'tradition'};
93 my $collation = $tradition->collation;
9529f69c 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 }
b28e606e 132 }
b28e606e 133 $c->forward('View::JSON');
134}
9529f69c 135
b28e606e 136
b8a92065 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;