Bug 27947: Add cancellation reason to article request
[koha.git] / Koha / REST / V1 / Stage.pm
1 package Koha::REST::V1::Stage;
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use Mojo::Base 'Mojolicious::Controller';
21
22 use Koha::StockRotationRotas;
23 use Koha::StockRotationStages;
24
25 =head1 NAME
26
27 Koha::REST::V1::Stage
28
29 =head2 Operations
30
31 =head3 move
32
33 Move a stage up or down the stockrotation rota.
34
35 =cut
36
37 sub move {
38     my $c = shift->openapi->valid_input or return;
39     my $input = $c->validation->output;
40
41     my $rota  = Koha::StockRotationRotas->find( $input->{rota_id} );
42     my $stage = Koha::StockRotationStages->find( $input->{stage_id} );
43
44     if ( $stage && $rota ) {
45         my $result = $stage->move_to( $input->{position} );
46         return $c->render( openapi => {}, status => 200 ) if $result;
47         return $c->render(
48             openapi => { error => "Bad request - new position invalid" },
49             status  => 400
50         );
51     }
52     else {
53         return $c->render(
54             openapi => { error => "Not found - Invalid rota or stage ID" },
55             status  => 404
56         );
57     }
58 }
59
60 1;