Bug 29648: Log viewer - no sort
[koha.git] / admin / share_content.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
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.
9 #
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.
14 #
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>.
17
18 use Modern::Perl;
19
20 use CGI qw ( -utf8 );
21 use JSON qw( to_json );
22 use HTTP::Request;
23
24 use C4::Auth qw( get_template_and_user );
25 use C4::Output qw( output_html_with_http_headers );
26
27 use Koha::SharedContent;
28
29 my $query = CGI->new;
30 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
31     {
32         template_name   => "admin/share_content.tt",
33         query           => $query,
34         type            => "intranet",
35         flagsrequired   => { parameters => 'manage_mana' },
36     }
37 );
38
39 my $op = $query->param('op') || q{};
40 my $mana_base = C4::Context->config('mana_config') || '';
41 # Check the mana server actually exists at the other end
42 my $bad_url;
43 if ($mana_base) {
44     my $request = HTTP::Request->new( GET => $mana_base );
45     my $result = Koha::SharedContent::process_request($request);
46     $bad_url = 1 unless (exists($result->{version}));
47 }
48
49 if ( $op eq 'save' ) {
50     my $auto_share = $query->param('autosharewithmana') || q{};
51     my $mana = $query->param('mana');
52
53     C4::Context->set_preference('Mana', $mana);
54
55     if ( $auto_share ne '' ) {
56         C4::Context->set_preference('AutoShareWithMana', 'subscription');
57     } else {
58         C4::Context->set_preference('AutoShareWithMana', '');
59     }
60 }
61
62 if ( $op eq 'reset' ) {
63     C4::Context->set_preference('ManaToken', '');
64 }
65
66 if ( $op eq 'send' && not $bad_url ) {
67     my $name = $query->param('name');
68     my $email = $query->param('email');
69
70     my $content = to_json({name => $name,
71                            email => $email});
72
73     my $url = "$mana_base/getsecuritytoken";
74     my $request = HTTP::Request->new( POST => $url );
75     $request->content($content);
76     my $result = Koha::SharedContent::process_request($request);
77
78     $template->param( result => $result );
79
80     if ( $result->{code} eq '201' && $result->{token} ) {
81         C4::Context->set_preference('ManaToken', $result->{token});
82     }
83 }
84
85
86 $template->param(
87     mana_url    => $mana_base,
88     bad_url     => $bad_url,
89 );
90
91 output_html_with_http_headers $query, $cookie, $template->output;