Bug 15496: (QA follow-up) Change success status on api
[koha.git] / admin / share_content.pl
blob475771aad879a2918ad60c32d975058bc9f23d21
1 #!/usr/bin/perl
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>.
18 use Modern::Perl;
20 use CGI qw ( -utf8 );
21 use JSON;
22 use HTTP::Request;
24 use C4::Auth;
25 use C4::Output;
27 use Koha::SharedContent;
29 my $query = new CGI;
30 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
32 template_name => "admin/share_content.tt",
33 query => $query,
34 type => "intranet",
35 authnotrequired => 0,
36 flagsrequired => { parameters => 'manage_mana' },
37 debug => 1,
41 my $op = $query->param('op') || q||;
43 if ( $op eq 'save' ) {
44 my $auto_share = $query->param('autosharewithmana');
45 my $mana = $query->param('mana');
47 C4::Context->set_preference('Mana', $mana);
49 if ( $auto_share ne '' ) {
50 C4::Context->set_preference('AutoShareWithMana', 'subscription');
51 } else {
52 C4::Context->set_preference('AutoShareWithMana', '');
56 if ( $op eq 'reset' ) {
57 C4::Context->set_preference('ManaToken', '');
60 if ( $op eq 'send' ) {
61 my $name = $query->param('lastname');
62 my $firstname = $query->param('firstname');
63 my $email = $query->param('email');
65 my $content = to_json({firstname => $firstname,
66 lastname => $name,
67 email => $email});
69 my $mana_ip = C4::Context->config('mana_config');
70 my $url = "$mana_ip/getsecuritytoken";
71 my $request = HTTP::Request->new( POST => $url );
72 $request->content($content);
73 my $result = Koha::SharedContent::process_request($request);
75 $template->param( result => $result );
77 if ( $result->{code} eq '201' && $result->{token} ) {
78 C4::Context->set_preference('ManaToken', $result->{token});
83 my $mana_url = C4::Context->config('mana_config') || '';
85 $template->param(
86 mana_url => $mana_url,
89 output_html_with_http_headers $query, $cookie, $template->output;