e3335ab4bd3c74191bfaf41904b0e841125aa407
[koha.git] / plugins / plugins-home.pl
1 #!/usr/bin/perl
2
3 # Copyright 2010 Kyle M Hall <kyle.m.hall@gmail.com>
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 use CGI qw ( -utf8 );
23
24 use JSON qw(from_json);
25 use LWP::Simple qw(get);
26
27 use Koha::Plugins;
28 use C4::Auth;
29 use C4::Output;
30 use C4::Debug;
31 use C4::Context;
32
33 my $plugins_enabled = C4::Context->config("enable_plugins");
34
35 my $input  = new CGI;
36 my $method = $input->param('method');
37 my $plugin_search = $input->param('plugin-search');
38
39 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
40     {   template_name => ($plugins_enabled) ? "plugins/plugins-home.tt" : "plugins/plugins-disabled.tt",
41         query         => $input,
42         type          => "intranet",
43         authnotrequired => 0,
44         flagsrequired   => { plugins => '*' },
45         debug           => 1,
46     }
47 );
48
49 if ($plugins_enabled) {
50
51     $template->param(
52         koha_version => C4::Context->preference("Version"),
53         method       => $method,
54     );
55
56     my @plugins = Koha::Plugins->new()->GetPlugins({
57         method => $method,
58         all    => 1,
59     });
60
61     $template->param( plugins => \@plugins, );
62
63     $template->param( can_search => C4::Context->config('plugin_repos') ? 1 : 0 );
64     my @results;
65     if ($plugin_search) {
66         my $repos = C4::Context->config('plugin_repos');
67         foreach my $r ( @{ $repos->{repo} } ) {
68             if ( $r->{service} eq 'github' ) {
69                 my $url = "https://api.github.com/search/repositories?q=$plugin_search+user:$r->{org_name}+in:name,description";
70                 my $response = from_json( get($url) );
71                 foreach my $result ( @{ $response->{items} } ) {
72                     next unless $result->{name} =~ /^koha-plugin-/;
73                     my $releases = $result->{url} . "/releases/latest";
74                     my $release = from_json( get($releases) );
75                     for my $asset ( @{$release->{assets}} ) {
76                         if ($asset->{browser_download_url} =~ m/\.kpz$/) {
77                             $result->{install_name} = $asset->{name};
78                             $result->{install_url} = $asset->{browser_download_url};
79                         }
80                     }
81                     push( @results, { repo => $r, result => $result } );
82                 }
83             }
84         }
85
86         $template->param(
87             search_results => \@results,
88             search_term    => $plugin_search,
89         );
90     }
91 }
92
93 output_html_with_http_headers( $input, $cookie, $template->output );