Bug 21637: Fixed upercase letter in EasyAnalyticalRecords syspref
[koha.git] / Koha / RDF.pm
blobdef6dfddcb926323b720fee1bdccdcb000755d44
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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
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;