import of rt 3.0.9
[freeside.git] / rt / lib / RT / Handle.pm
1 # BEGIN LICENSE BLOCK
2
3 # Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
4
5 # (Except where explictly superceded by other copyright notices)
6
7 # This work is made available to you under the terms of Version 2 of
8 # the GNU General Public License. A copy of that license should have
9 # been provided with this software, but in any event can be snarfed
10 # from www.gnu.org.
11
12 # This work 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 GNU
15 # General Public License for more details.
16
17 # Unless otherwise specified, all modifications, corrections or
18 # extensions to this work which alter its source code become the
19 # property of Best Practical Solutions, LLC when submitted for
20 # inclusion in the work.
21
22
23 # END LICENSE BLOCK
24 =head1 NAME
25
26   RT::Handle - RT's database handle
27
28 =head1 SYNOPSIS
29
30   use RT::Handle;
31
32 =head1 DESCRIPTION
33
34 =begin testing
35
36 ok(require RT::Handle);
37
38 =end testing
39
40 =head1 METHODS
41
42 =cut
43
44 package RT::Handle;
45
46 use strict;
47 use vars qw/@ISA/;
48
49 eval "use DBIx::SearchBuilder::Handle::$RT::DatabaseType;
50 \@ISA= qw(DBIx::SearchBuilder::Handle::$RT::DatabaseType);";
51 #TODO check for errors here.
52
53 =head2 Connect
54
55 Connects to RT's database handle.
56 Takes nothing. Calls SUPER::Connect with the needed args
57
58 =cut
59
60 sub Connect {
61 my $self=shift;
62
63
64     if ($RT::DatabaseType eq 'Oracle') {
65         $ENV{'NLS_LANG'} = ".UTF8";
66     }
67
68     $self->SUPER::Connect(
69                          User => $RT::DatabaseUser,
70                          Password => $RT::DatabasePassword,
71                         );
72    
73 }
74
75 =item BuildDSN
76
77 Build the DSN for the RT database. doesn't take any parameters, draws all that
78 from the config file.
79
80 =cut
81
82
83 sub BuildDSN {
84     my $self = shift;
85 # Unless the database port is a positive integer, we really don't want to pass it.
86 $RT::DatabasePort = undef unless (defined $RT::DatabasePort && $RT::DatabasePort =~ /^(\d+)$/);
87 $RT::DatabaseHost = undef unless (defined $RT::DatabaseHost && $RT::DatabaseHost ne '');
88
89
90     $self->SUPER::BuildDSN(Host => $RT::DatabaseHost, 
91                          Database => $RT::DatabaseName, 
92                          Port => $RT::DatabasePort,
93                          Driver => $RT::DatabaseType,
94                          RequireSSL => $RT::DatabaseRequireSSL,
95              DisconnectHandleOnDestroy => 1
96                         );
97    
98
99 }
100
101 eval "require RT::Handle_Vendor";
102 die $@ if ($@ && $@ !~ qr{^Can't locate RT/Handle_Vendor.pm});
103 eval "require RT::Handle_Local";
104 die $@ if ($@ && $@ !~ qr{^Can't locate RT/Handle_Local.pm});
105
106 1;