Bug 25548: Remove Apache rewrite directives that trigger redirects
[koha.git] / Koha / RDF.pm
blob44a91332c5095d67ab4e6606bba899229d0008db
1 package Koha::RDF;
3 # Copyright 2017 Prosentient Systems
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
21 use URI;
23 use C4::Context;
25 sub new {
26 my ($class, $args) = @_;
27 $args = {} unless defined $args;
28 return bless ($args, $class);
31 sub mint_uri {
32 my ($self,$type,$number) = @_;
33 my $new_uri;
34 my $preference = C4::Context->preference('OPACBaseURL');
35 if ($preference){
36 my $uri = URI->new($preference);
37 if ( $uri && $uri->can('scheme') && $uri->scheme && ($uri->scheme eq 'http' || $uri->scheme eq 'https') ){
38 if ($type && $number){
39 if ($type eq 'biblio'){
40 #NOTE: This is arbitrary and based on default Apache configuration at the time of writing this module
41 $uri->path("bib/$number");
42 $new_uri = $uri;
47 return $new_uri;