Bug 28959: Add virtualshelves.public as a boolean
[koha.git] / Koha / RDF.pm
1 package Koha::RDF;
2
3 # Copyright 2017 Prosentient Systems
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
20 use Modern::Perl;
21 use URI;
22
23 use C4::Context;
24
25 sub new {
26     my ($class, $args) = @_;
27     $args = {} unless defined $args;
28     return bless ($args, $class);
29 }
30
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;
43                 }
44             }
45         }
46     }
47     return $new_uri;
48 }
49
50 1;