Bug 22071: (follow-up) Add POD for validate_query_parameters
[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 under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
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;