bugfix from dispatcher
[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
27sub index :Path :Args(1) {
28 my( $self, $c, $textid ) = @_;
29 my $m = $c->model('Directory');
30 my $tradition = $m->tradition( $textid );
581aee24 31 my $collation = $tradition->collation;
32 my $svg_str = $collation->as_svg;
33 $svg_str =~ s/\n//gs;
34 $c->stash->{'svg_string'} = $svg_str;
35 $c->stash->{'template'} = 'relate.tt';
36}
37
38sub dispatcher :Path :Args(2) {
39 my( $self, $c, $textid, $forward ) = @_;
1c0900ef 40 $c->stash->{'tradition'} = $c->model('Directory')->tradition( $textid );
581aee24 41 $c->forward( $forward );
42}
43
44=head2 relationship_definition
45
1c0900ef 46 GET relation/definitions
581aee24 47
48Returns a data structure giving the valid types and scopes for a relationship.
49
50=cut
51
1c0900ef 52sub definitions :Local :Args(0) {
581aee24 53 my( $self, $c ) = @_;
54 my $valid_relationships = [ qw/ spelling orthographic grammatical meaning / ];
55 my $valid_scopes = [ qw/ local global / ];
56 $c->stash->{'result'} = { 'types' => $valid_relationships, 'scopes' => $valid_scopes };
57 $c->forward('View::JSON');
2376359f 58}
59
1c0900ef 60=head2 relationship
581aee24 61
62 POST relation/$textid/relationship
63 source_id: $source, target_id: $target, rel_type: $type, scope: $scope
64
65Sets the specified relationship between the readings in $source and $target.
66Returns 200 and a list of node pairs where the relationship was added on success;
67returns 403 and an { error: message } struct on failure.
68
69=cut
70
71sub relationship :Private {
72 my( $self, $c ) = @_;
1c0900ef 73 my $tradition = delete $c->stash->{'tradition'};
74 my $collation = $tradition->collation;
581aee24 75 my $node = $c->request->param('source_id');
76 my $target = $c->request->param('target_id');
77 my $relation = $c->request->param('rel_type');
78 my $note = $c->request->param('note');
79 my $scope = $c->request->param('scope');
80
81 my $opts = { 'type' => $relation,
82 'scope' => $scope };
83
84 try {
85 my @vectors = $collation->add_relationship( $node, $target, $opts );
1c0900ef 86 my $m = $c->model('Directory');
87 $m->save( $tradition );
581aee24 88 $c->stash->{'result'} = \@vectors;
89 } catch( Text::Tradition::Error $e ) {
90 $c->response->status( '403' );
91 $c->stash->{'result'} = { 'error' => $e->message };
92 }
93 $c->forward('View::JSON');
94}
95
96=head2 relationships
97
98 GET relation/$textid/relationships
99
100Returns a list of relationships that exist in the specified text. Each
101relationship is returned in a struct that looks like:
102
103{ source: $sid, target: $tid, type: $rel_type, scope: $rel_scope }
104
105=cut
106
1c0900ef 107sub relationships :Private {
581aee24 108 my( $self, $c ) = @_;
bff7bb42 109 my $tradition = delete $c->stash->{'tradition'};
110 my $collation = $tradition->collation;
581aee24 111 # TODO make this API
112 my @pairs = $collation->relationships; # returns the edges
113 my @all_relations;
114 foreach my $p ( @pairs ) {
115 my $relobj = $collation->relations->get_relationship( @$p );
116 push( @all_relations,
117 { source => $p->[0], target => $p->[1],
118 type => $relobj->type, scope => $relobj->scope } );
119 }
120 $c->stash->{'result'} = \@all_relations;
121 $c->forward('View::JSON');
122}
123
124
2376359f 125=head2 end
126
127Attempt to render a view, if needed.
128
129=cut
130
131sub end : ActionClass('RenderView') {}
132
133=head1 AUTHOR
134
135Tara L Andrews
136
137=head1 LICENSE
138
139This library is free software. You can redistribute it and/or modify
140it under the same terms as Perl itself.
141
142=cut
143
144__PACKAGE__->meta->make_immutable;
145
1461;