
This commit is generated using: % perl misc/devel/tidy.pl *within* ktd, to get the same version of perltidy than what will be used by our CI (currently v20230309). Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
26 lines
702 B
Perl
Executable file
26 lines
702 B
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
use Modern::Perl;
|
|
|
|
use CGI qw ( -utf8 );
|
|
use CGI::Cookie; # need to check cookies before CGI parses the POST request
|
|
use JSON qw( encode_json );
|
|
|
|
use C4::Context;
|
|
use C4::Biblio qw( GetMarcStructure );
|
|
use C4::Auth qw( check_cookie_auth );
|
|
|
|
my %cookies = CGI::Cookie->fetch;
|
|
my ($auth_status) = check_cookie_auth(
|
|
$cookies{'CGISESSID'}->value, { editcatalogue => 'edit_catalogue' },
|
|
);
|
|
my $reply = CGI->new;
|
|
if ( $auth_status ne "ok" ) {
|
|
print $reply->header( -type => 'text/html' );
|
|
exit 0;
|
|
}
|
|
|
|
my $framework = $reply->param('frameworkcode');
|
|
my $tagslib = GetMarcStructure( 1, $framework );
|
|
print $reply->header( -type => 'text/html' );
|
|
print encode_json $tagslib;
|