This commit was generated by cvs2svn to compensate for changes in r4407,
[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 # Unless the database port is a positive integer, we really don't want to pass it.
64
65 $self->SUPER::Connect(
66                          User => $RT::DatabaseUser,
67                          Password => $RT::DatabasePassword,
68                         );
69    
70 }
71
72 =item BuildDSN
73
74 Build the DSN for the RT database. doesn't take any parameters, draws all that
75 from the config file.
76
77 =cut
78
79
80 sub BuildDSN {
81     my $self = shift;
82 $RT::DatabasePort = undef unless (defined $RT::DatabasePort && $RT::DatabasePort =~ /^(\d+)$/);
83 $RT::DatabaseHost = undef unless (defined $RT::DatabaseHost && $RT::DatabaseHost ne '');
84
85     $self->SUPER::BuildDSN(Host => $RT::DatabaseHost, 
86                          Database => $RT::DatabaseName, 
87                          Port => $RT::DatabasePort,
88                          Driver => $RT::DatabaseType,
89                          RequireSSL => $RT::DatabaseRequireSSL,
90              DisconnectHandleOnDestroy => 1
91                         );
92    
93
94 }
95
96 eval "require RT::Handle_Vendor";
97 die $@ if ($@ && $@ !~ qr{^Can't locate RT/Handle_Vendor.pm});
98 eval "require RT::Handle_Local";
99 die $@ if ($@ && $@ !~ qr{^Can't locate RT/Handle_Local.pm});
100
101 1;