Bug 18050: Add relation alias to schema
[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;
22 use HTTP::Request;
23
24 use C4::Auth;
25 use C4::Output;
26
27 use Koha::SharedContent;
28
29 my $query = new CGI;
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         debug           => 1,
37     }
38 );
39
40 my $op = $query->param('op') || q{};
41
42 if ( $op eq 'save' ) {
43     my $auto_share = $query->param('autosharewithmana') || q{};
44     my $mana = $query->param('mana');
45
46     C4::Context->set_preference('Mana', $mana);
47
48     if ( $auto_share ne '' ) {
49         C4::Context->set_preference('AutoShareWithMana', 'subscription');
50     } else {
51         C4::Context->set_preference('AutoShareWithMana', '');
52     }
53 }
54
55 if ( $op eq 'reset' ) {
56     C4::Context->set_preference('ManaToken', '');
57 }
58
59 if ( $op eq 'send' ) {
60     my $name = $query->param('name');
61     my $email = $query->param('email');
62
63     my $content = to_json({name => $name,
64                            email => $email});
65
66     my $mana_ip = C4::Context->config('mana_config');
67     my $url = "$mana_ip/getsecuritytoken";
68     my $request = HTTP::Request->new( POST => $url );
69     $request->content($content);
70     my $result = Koha::SharedContent::process_request($request);
71
72     $template->param( result => $result );
73
74     if ( $result->{code} eq '201' && $result->{token} ) {
75         C4::Context->set_preference('ManaToken', $result->{token});
76     }
77 }
78
79
80 my $mana_url = C4::Context->config('mana_config') || q{};
81
82 $template->param(
83     mana_url    => $mana_url,
84 );
85
86 output_html_with_http_headers $query, $cookie, $template->output;