Bug 22770: DBRev 19.06.00.004
[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 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.
11 #
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.
15 #
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.
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;