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>.
27 use Koha
::SharedContent
;
30 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
32 template_name
=> "admin/share_content.tt",
35 flagsrequired
=> { parameters
=> 'manage_mana' },
40 my $op = $query->param('op') || q{};
41 my $mana_base = C4
::Context
->config('mana_config') || '';
42 # Check the mana server actually exists at the other end
45 my $request = HTTP
::Request
->new( GET
=> $mana_base );
46 my $result = Koha
::SharedContent
::process_request
($request);
47 $bad_url = 1 unless (exists($result->{version
}));
50 if ( $op eq 'save' ) {
51 my $auto_share = $query->param('autosharewithmana') || q{};
52 my $mana = $query->param('mana');
54 C4
::Context
->set_preference('Mana', $mana);
56 if ( $auto_share ne '' ) {
57 C4
::Context
->set_preference('AutoShareWithMana', 'subscription');
59 C4
::Context
->set_preference('AutoShareWithMana', '');
63 if ( $op eq 'reset' ) {
64 C4
::Context
->set_preference('ManaToken', '');
67 if ( $op eq 'send' && not $bad_url ) {
68 my $name = $query->param('name');
69 my $email = $query->param('email');
71 my $content = to_json
({name
=> $name,
74 my $url = "$mana_base/getsecuritytoken";
75 my $request = HTTP
::Request
->new( POST
=> $url );
76 $request->content($content);
77 my $result = Koha
::SharedContent
::process_request
($request);
79 $template->param( result
=> $result );
81 if ( $result->{code
} eq '201' && $result->{token
} ) {
82 C4
::Context
->set_preference('ManaToken', $result->{token
});
88 mana_url
=> $mana_base,
92 output_html_with_http_headers
$query, $cookie, $template->output;