Bug 18308: Increase minPasswordLength default to 8
[koha.git] / Koha / REST / Plugin / Query.pm
blobea6695ff37c678888338e01834402f78aadd5aa0
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
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.
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.
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>.
18 use Modern::Perl;
20 use Mojo::Base 'Mojolicious::Plugin';
21 use List::MoreUtils qw(any);
22 use Scalar::Util qw(reftype);
23 use JSON qw(decode_json);
25 use Koha::Exceptions;
27 =head1 NAME
29 Koha::REST::Plugin::Query
31 =head1 API
33 =head2 Mojolicious::Plugin methods
35 =head3 register
37 =cut
39 sub register {
40 my ( $self, $app ) = @_;
42 =head2 Helper methods
44 =head3 extract_reserved_params
46 my ( $filtered_params, $reserved_params ) = $c->extract_reserved_params($params);
48 Generates the DBIC query from the query parameters.
50 =cut
52 $app->helper(
53 'extract_reserved_params' => sub {
54 my ( $c, $params ) = @_;
56 my $reserved_params;
57 my $filtered_params;
58 my $path_params;
60 my $reserved_words = _reserved_words();
61 my @query_param_names = keys %{$c->req->params->to_hash};
63 foreach my $param ( keys %{$params} ) {
64 if ( grep { $param eq $_ } @{$reserved_words} ) {
65 $reserved_params->{$param} = $params->{$param};
67 elsif ( grep { $param eq $_ } @query_param_names ) {
68 $filtered_params->{$param} = $params->{$param};
70 else {
71 $path_params->{$param} = $params->{$param};
75 return ( $filtered_params, $reserved_params, $path_params );
79 =head3 dbic_merge_sorting
81 $attributes = $c->dbic_merge_sorting({ attributes => $attributes, params => $params });
83 Generates the DBIC order_by attributes based on I<$params>, and merges into I<$attributes>.
85 =cut
87 $app->helper(
88 'dbic_merge_sorting' => sub {
89 my ( $c, $args ) = @_;
90 my $attributes = $args->{attributes};
91 my $result_set = $args->{result_set};
93 if ( defined $args->{params}->{_order_by} ) {
94 my $order_by = $args->{params}->{_order_by};
95 if ( reftype($order_by) and reftype($order_by) eq 'ARRAY' ) {
96 my @order_by = map { _build_order_atom({ string => $_, result_set => $result_set }) }
97 @{ $args->{params}->{_order_by} };
98 $attributes->{order_by} = \@order_by;
100 else {
101 $attributes->{order_by} = _build_order_atom({ string => $order_by, result_set => $result_set });
105 return $attributes;
109 =head3 dbic_merge_prefetch
111 $attributes = $c->dbic_merge_prefetch({ attributes => $attributes, result_set => $result_set });
113 Generates the DBIC prefetch attribute based on embedded relations, and merges into I<$attributes>.
115 =cut
117 $app->helper(
118 'dbic_merge_prefetch' => sub {
119 my ( $c, $args ) = @_;
120 my $attributes = $args->{attributes};
121 my $result_set = $args->{result_set};
122 my $embed = $c->stash('koha.embed');
124 return unless defined $embed;
126 my @prefetches;
127 foreach my $key (sort keys(%{$embed})) {
128 my $parsed = _parse_prefetch($key, $embed, $result_set);
129 push @prefetches, $parsed if defined $parsed;
132 if(scalar(@prefetches)) {
133 $attributes->{prefetch} = \@prefetches;
138 =head3 _build_query_params_from_api
140 my $params = _build_query_params_from_api( $filtered_params, $reserved_params );
142 Builds the params for searching on DBIC based on the selected matching algorithm.
143 Valid options are I<contains>, I<starts_with>, I<ends_with> and I<exact>. Default is
144 I<contains>. If other value is passed, a Koha::Exceptions::WrongParameter exception
145 is raised.
147 =cut
149 $app->helper(
150 'build_query_params' => sub {
152 my ( $c, $filtered_params, $reserved_params ) = @_;
154 my $params;
155 my $match = $reserved_params->{_match} // 'contains';
157 foreach my $param ( keys %{$filtered_params} ) {
158 if ( $match eq 'contains' ) {
159 $params->{$param} =
160 { like => '%' . $filtered_params->{$param} . '%' };
162 elsif ( $match eq 'starts_with' ) {
163 $params->{$param} = { like => $filtered_params->{$param} . '%' };
165 elsif ( $match eq 'ends_with' ) {
166 $params->{$param} = { like => '%' . $filtered_params->{$param} };
168 elsif ( $match eq 'exact' ) {
169 $params->{$param} = $filtered_params->{$param};
171 else {
172 # We should never reach here, because the OpenAPI plugin should
173 # prevent invalid params to be passed
174 Koha::Exceptions::WrongParameter->throw(
175 "Invalid value for _match param ($match)");
179 return $params;
183 =head3 merge_q_params
185 $c->merge_q_params( $filtered_params, $q_params, $result_set );
187 Merges parameters from $q_params into $filtered_params.
189 =cut
191 $app->helper(
192 'merge_q_params' => sub {
194 my ( $c, $filtered_params, $q_params, $result_set ) = @_;
196 $q_params = decode_json($q_params) unless reftype $q_params;
198 my $params = _parse_dbic_query($q_params, $result_set);
200 return $params unless scalar(keys %{$filtered_params});
201 return {'-and' => [$params, $filtered_params ]};
205 =head3 stash_embed
207 $c->stash_embed( $c->match->endpoint->pattern->defaults->{'openapi.op_spec'} );
209 =cut
211 $app->helper(
212 'stash_embed' => sub {
214 my ( $c, $args ) = @_;
216 my $spec = $args->{spec} // {};
218 my $embed_spec = $spec->{'x-koha-embed'};
219 my $embed_header = $c->req->headers->header('x-koha-embed');
221 Koha::Exceptions::BadParameter->throw("Embedding objects is not allowed on this endpoint.")
222 if $embed_header and !defined $embed_spec;
224 if ( $embed_header ) {
225 my $THE_embed = {};
226 foreach my $embed_req ( split /\s*,\s*/, $embed_header ) {
227 my $matches = grep {lc $_ eq lc $embed_req} @{ $embed_spec };
229 Koha::Exceptions::BadParameter->throw(
230 error => 'Embeding '.$embed_req. ' is not authorised. Check your x-koha-embed headers or remove it.'
231 ) unless $matches;
233 _merge_embed( _parse_embed($embed_req), $THE_embed);
236 $c->stash( 'koha.embed' => $THE_embed )
237 if $THE_embed;
240 return $c;
245 =head2 Internal methods
247 =head3 _reserved_words
249 my $reserved_words = _reserved_words();
251 =cut
253 sub _reserved_words {
255 my @reserved_words = qw( _match _order_by _page _per_page q query x-koha-query);
256 return \@reserved_words;
259 =head3 _build_order_atom
261 my $order_atom = _build_order_atom( $string );
263 Parses I<$string> and outputs data valid for using in SQL::Abstract order_by attribute
264 according to the following rules:
266 string -> I<string>
267 +string -> I<{ -asc => string }>
268 -string -> I<{ -desc => string }>
270 =cut
272 sub _build_order_atom {
273 my ( $args ) = @_;
274 my $string = $args->{string};
275 my $result_set = $args->{result_set};
277 my $param = $string;
278 $param =~ s/^(\+|\-|\s)//;
279 if ( $result_set ) {
280 my $model_param = _from_api_param($param, $result_set);
281 $param = $model_param if defined $model_param;
284 if ( $string =~ m/^\+/ or
285 $string =~ m/^\s/ ) {
286 # asc order operator present
287 return { -asc => $param };
289 elsif ( $string =~ m/^\-/ ) {
290 # desc order operator present
291 return { -desc => $param };
293 else {
294 # no order operator present
295 return $param;
299 =head3 _parse_embed
301 my $embed = _parse_embed( $string );
303 Parses I<$string> and outputs data valid for passing to the Kohaa::Object(s)->to_api
304 method.
306 =cut
308 sub _parse_embed {
309 my $string = shift;
311 my $result;
312 my ( $curr, $next ) = split /\s*\.\s*/, $string, 2;
314 if ( $next ) {
315 $result->{$curr} = { children => _parse_embed( $next ) };
317 else {
318 if ( $curr =~ m/^(?<relation>.*)\+count/ ) {
319 my $key = $+{relation} . "_count";
320 $result->{$key} = { is_count => 1 };
322 else {
323 $result->{$curr} = {};
327 return $result;
330 =head3 _merge_embed
332 _merge_embed( $parsed_embed, $global_embed );
334 Merges the hash referenced by I<$parsed_embed> into I<$global_embed>.
336 =cut
338 sub _merge_embed {
339 my ( $structure, $embed ) = @_;
341 my ($root) = keys %{ $structure };
343 if ( any { $root eq $_ } keys %{ $embed } ) {
344 # Recurse
345 _merge_embed( $structure->{$root}, $embed->{$root} );
347 else {
348 # Embed
349 $embed->{$root} = $structure->{$root};
353 sub _parse_prefetch {
354 my ( $key, $embed, $result_set) = @_;
356 my $pref_key = $key;
357 $pref_key =~ s/_count$// if $embed->{$key}->{is_count};
358 return unless exists $result_set->prefetch_whitelist->{$pref_key};
360 my $ko_class = $result_set->prefetch_whitelist->{$pref_key};
361 return $pref_key unless defined $embed->{$key}->{children} && defined $ko_class;
363 my @prefetches;
364 foreach my $child (sort keys(%{$embed->{$key}->{children}})) {
365 my $parsed = _parse_prefetch($child, $embed->{$key}->{children}, $ko_class->new);
366 push @prefetches, $parsed if defined $parsed;
369 return $pref_key unless scalar(@prefetches);
371 return {$pref_key => $prefetches[0]} if scalar(@prefetches) eq 1;
373 return {$pref_key => \@prefetches};
376 sub _from_api_param {
377 my ($key, $result_set) = @_;
379 if($key =~ /\./) {
381 my ($curr, $next) = split /\s*\.\s*/, $key, 2;
383 return $curr.'.'._from_api_param($next, $result_set) if $curr eq 'me';
385 my $ko_class = $result_set->prefetch_whitelist->{$curr};
387 Koha::Exceptions::BadParameter->throw("Cannot find Koha::Object class for $curr")
388 unless defined $ko_class;
390 $result_set = $ko_class->new;
392 if ($next =~ /\./) {
393 return _from_api_param($next, $result_set);
394 } else {
395 return $curr.'.'.($result_set->from_api_mapping && defined $result_set->from_api_mapping->{$next} ? $result_set->from_api_mapping->{$next}:$next);
397 } else {
398 return defined $result_set->from_api_mapping->{$key} ? $result_set->from_api_mapping->{$key} : $key;
402 sub _parse_dbic_query {
403 my ($q_params, $result_set) = @_;
405 if(reftype($q_params) && reftype($q_params) eq 'HASH') {
406 my $parsed_hash;
407 foreach my $key (keys %{$q_params}) {
408 if($key =~ /-?(not_?)?bool/i ) {
409 $parsed_hash->{$key} = _from_api_param($q_params->{$key}, $result_set);
410 next;
412 my $k = _from_api_param($key, $result_set);
413 $parsed_hash->{$k} = _parse_dbic_query($q_params->{$key}, $result_set);
415 return $parsed_hash;
416 } elsif (reftype($q_params) && reftype($q_params) eq 'ARRAY') {
417 my @mapped = map{ _parse_dbic_query($_, $result_set) } @$q_params;
418 return \@mapped;
419 } else {
420 return $q_params;