Bug 26265: (QA follow-up) Remove g option from regex, add few dirs
[koha.git] / admin / didyoumean.pl
1 #!/usr/bin/perl
2
3 use Modern::Perl;
4 use CGI qw ( -utf8 );
5 use C4::Context;
6 use C4::Auth;
7 use C4::Output;
8 use Koha::SuggestionEngine;
9 use Module::Load::Conditional qw(can_load);
10 use JSON;
11
12 my $input = new CGI;
13
14 my ($template, $loggedinuser, $cookie)
15     = get_template_and_user({template_name => "admin/didyoumean.tt",
16             query => $input,
17             type => "intranet",
18             authnotrequired => 0,
19             flagsrequired => {parameters => 'manage_didyoumean'},
20             debug => 1,
21             });
22
23 my $opacplugins = from_json(C4::Context->preference('OPACdidyoumean') || '[]');
24
25 my $intraplugins = from_json(C4::Context->preference('INTRAdidyoumean') || '[]');
26
27 my @pluginlist = Koha::SuggestionEngine::AvailablePlugins();
28 foreach my $plugin (@pluginlist) {
29     next if $plugin eq 'Koha::SuggestionEngine::Plugin::Null';
30     next unless (can_load( modules => { "$plugin" => undef } ));
31     push @$opacplugins, { name => $plugin->NAME } unless grep { $_->{name} eq $plugin->NAME } @$opacplugins;
32     push @$intraplugins, { name => $plugin->NAME } unless grep { $_->{name} eq $plugin->NAME } @$intraplugins;
33 }
34 $template->{VARS}->{OPACpluginlist} = $opacplugins;
35 $template->{VARS}->{INTRApluginlist} = $intraplugins;
36 output_html_with_http_headers $input, $cookie, $template->output;