Bug 26922: Regression tests
[koha.git] / plugins / plugins-home.pl
blobf9d72b885d6d567318eb39d36eff4adc4594c006
1 #!/usr/bin/perl
3 # Copyright 2010 Kyle M Hall <kyle.m.hall@gmail.com>
5 # This file is part of Koha.
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.
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.
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>.
20 use Modern::Perl;
22 use CGI qw ( -utf8 );
24 use JSON qw(from_json);
25 use LWP::Simple qw(get);
27 use Koha::Plugins;
28 use C4::Auth;
29 use C4::Output;
30 use C4::Debug;
31 use C4::Context;
33 my $plugins_enabled = C4::Context->config("enable_plugins");
35 my $input = CGI->new;
36 my $method = $input->param('method');
37 my $plugin_search = $input->param('plugin-search');
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 flagsrequired => { plugins => '*' },
44 debug => 1,
48 if ($plugins_enabled) {
50 $template->param(
51 koha_version => C4::Context->preference("Version"),
52 method => $method,
55 my @plugins = Koha::Plugins->new()->GetPlugins(
57 method => $method,
58 all => 1,
59 errors => 1
63 $template->param( plugins => \@plugins, );
65 $template->param( can_search => C4::Context->config('plugin_repos') ? 1 : 0 );
66 my @results;
67 if ($plugin_search) {
68 my $repos = C4::Context->config('plugin_repos');
70 # Fix data structure if only one repo defined
71 if ( ref($repos->{repo}) eq 'HASH' ) {
72 $repos = { repo => [ $repos->{repo} ] };
75 foreach my $r ( @{ $repos->{repo} } ) {
76 if ( $r->{service} eq 'github' ) {
77 my $url = "https://api.github.com/search/repositories?q=$plugin_search+user:$r->{org_name}+in:name,description";
78 my $response = from_json( get($url) );
79 foreach my $result ( @{ $response->{items} } ) {
80 next unless $result->{name} =~ /^koha-plugin-/;
81 my $releases = $result->{url} . "/releases/latest";
82 my $release = from_json( get($releases) );
83 for my $asset ( @{$release->{assets}} ) {
84 if ($asset->{browser_download_url} =~ m/\.kpz$/) {
85 $result->{install_name} = $asset->{name};
86 $result->{install_url} = $asset->{browser_download_url};
89 push( @results, { repo => $r, result => $result } );
92 elsif ( $r->{service} eq 'gitlab' ) {
93 my $org_name = $r->{org_name};
94 my $url = "https://gitlab.com/api/v4/groups/$org_name/projects?with_issues_enabled=no\&with_merge_requests_enabled=no\&with_shared=no\&include_subgroups=yes\&search=koha-plugin+$plugin_search";
95 my $response = from_json( get($url) );
96 foreach my $result ( @{ $response } ) {
97 next unless $result->{name} =~ /^koha-plugin-/;
98 my $project_id = $result->{id};
99 my $description = $result->{description} // '';
100 my $web_url = $result->{web_url};
101 my $releases_url = "https://gitlab.com/api/v4/projects/$project_id/releases";
102 my @releases = @{ from_json( get($releases_url) ) };
104 if ( scalar @releases > 0 ) {
105 # Pick the first one, the latest release
106 my $latest = $releases[0];
107 my $name = $latest->{name};
108 my @links = @{$latest->{assets}->{links}};
109 my $url = $links[0]->{direct_asset_url};
110 my @parts = split( '/', $url);
111 my $filename = $parts[-1];
112 next unless $url =~ m/\.kpz$/;
113 my $result = {
114 description => $description,
115 install_name => $filename,
116 install_url => $url,
117 html_url => $web_url,
118 name => $name,
120 push @results, { repo => $r, result => $result };
126 $template->param(
127 search_results => \@results,
128 search_term => $plugin_search,
133 output_html_with_http_headers( $input, $cookie, $template->output );