Bug 19234: Add query parameters handling helpers
[koha.git] / Koha / REST / Plugin / Query.pm
blob1b7176c983ff31a5cf96e53299ead247f8e353fc
1 package Koha::REST::Plugin::Query;
3 # This file is part of Koha.
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.
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.
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.
18 use Modern::Perl;
20 use Mojo::Base 'Mojolicious::Plugin';
22 =head1 NAME
24 Koha::REST::Plugin::Query
26 =head1 API
28 =head2 Mojolicious::Plugin methods
30 =head3 register
32 =cut
34 sub register {
35 my ( $self, $app ) = @_;
37 =head2 Helper methods
39 =head3 extract_reserved_params
41 my ( $filtered_params, $reserved_params ) = $c->extract_reserved_params($params);
43 Generates the DBIC query from the query parameters.
45 =cut
47 $app->helper(
48 'extract_reserved_params' => sub {
49 my ( $c, $params ) = @_;
51 my $reserved_params;
52 my $filtered_params;
54 my $reserved_words = _reserved_words();
56 foreach my $param ( keys %{$params} ) {
57 if ( grep { $param eq $_ } @{$reserved_words} ) {
58 $reserved_params->{$param} = $params->{$param};
60 else {
61 $filtered_params->{$param} = $params->{$param};
65 return ( $filtered_params, $reserved_params );
70 =head2 Internal methods
72 =head3 _reserved_words
74 my $reserved_words = _reserved_words();
76 =cut
78 sub _reserved_words {
80 my @reserved_words = qw( _match _order_by _page _per_page );
81 return \@reserved_words;