Bug 17600: Standardize our EXPORT_OK
[srvgit] / Koha / Database.pm
1 package Koha::Database;
2
3 # Copyright 2013 Catalyst IT
4 # chrisc@catalyst.net.nz
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 =head1 NAME
22
23 Koha::Database
24
25 =head1 SYNOPSIS
26
27   use Koha::Database;
28   my $database = Koha::Database->new();
29   my $schema = $database->schema();
30
31 =head1 FUNCTIONS
32
33 =cut
34
35 use Modern::Perl;
36 use C4::Context;
37 use base qw(Class::Accessor);
38
39 use vars qw($database);
40
41 __PACKAGE__->mk_accessors(qw( ));
42
43 # _new_schema
44 # Internal helper function (not a method!). This creates a new
45 # database connection from the data given in the current context, and
46 # returns it.
47 sub _new_schema {
48
49     require Koha::Schema;
50
51     my $db_driver = C4::Context::db_scheme2dbi(C4::Context->config('db_scheme'));;
52
53     my $db_name   = C4::Context->config("database");
54     my $db_host   = C4::Context->config("hostname");
55     my $db_port   = C4::Context->config("port") || '';
56     my $db_user   = C4::Context->config("user");
57     my $db_passwd = C4::Context->config("pass");
58     my $tls = C4::Context->config("tls");
59     my $tls_options;
60     if( $tls && $tls eq 'yes' ) {
61         my $ca = C4::Context->config('ca');
62         my $cert = C4::Context->config('cert');
63         my $key = C4::Context->config('key');
64         $tls_options = ";mysql_ssl=1;mysql_ssl_client_key=".$key.";mysql_ssl_client_cert=".$cert.";mysql_ssl_ca_file=".$ca;
65     }
66
67
68
69     my ( %encoding_attr, $encoding_query, $tz_query, $sql_mode_query );
70     my $tz = C4::Context->timezone;
71     $tz = q{} if ( $tz eq 'local' );
72     if ( $db_driver eq 'mysql' ) {
73         %encoding_attr = ( mysql_enable_utf8 => 1 );
74         $encoding_query = "set NAMES 'utf8mb4'";
75         $tz_query = qq(SET time_zone = "$tz") if $tz;
76         if (   C4::Context->config('strict_sql_modes')
77             || ( exists $ENV{_} && $ENV{_} =~ m|prove| )
78             || $ENV{KOHA_TESTING}
79         ) {
80             $sql_mode_query = q{SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'};
81         } else {
82             $sql_mode_query = q{SET sql_mode = 'IGNORE_SPACE,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'};
83         }
84     }
85     elsif ( $db_driver eq 'Pg' ) {
86         $encoding_query = "set client_encoding = 'UTF8';";
87         $tz_query = qq(SET TIME ZONE = "$tz") if $tz;
88     }
89
90     my $schema = Koha::Schema->connect(
91         {
92             dsn => "dbi:$db_driver:database=$db_name;host=$db_host;port=$db_port".($tls_options? $tls_options : ""),
93             user => $db_user,
94             password => $db_passwd,
95             %encoding_attr,
96             RaiseError => 1,
97             PrintError => 1,
98             quote_names => 1,
99             auto_savepoint => 1,
100             on_connect_do => [
101                 $encoding_query || (),
102                 $tz_query || (),
103                 $sql_mode_query || (),
104             ]
105         }
106     );
107
108     my $dbh = $schema->storage->dbh;
109     eval {
110         my $HandleError = $dbh->{HandleError};
111         if ( $ENV{KOHA_DB_DO_NOT_RAISE_OR_PRINT_ERROR} ) {
112             $dbh->{HandleError} = sub { return 1 };
113         }
114         $dbh->do(q|
115             SELECT * FROM systempreferences WHERE 1 = 0 |
116         );
117         $dbh->{HandleError} = $HandleError;
118     };
119
120     if ( $@ ) {
121         $dbh->{HandleError} = sub { warn $_[0]; return 1 };
122     }
123
124     return $schema;
125 }
126
127 =head2 schema
128
129     $schema = $database->schema;
130
131 Returns a database handle connected to the Koha database for the
132 current context. If no connection has yet been made, this method
133 creates one, and connects to the database.
134
135 This database handle is cached for future use: if you call
136 C<$database-E<gt>schema> twice, you will get the same handle both
137 times. If you need a second database handle, use C<&new_schema> and
138 possibly C<&set_schema>.
139
140 =cut
141
142 sub schema {
143     my $self = shift;
144     my $params = shift;
145
146     unless ( $params->{new} ) {
147         return $database->{schema} if defined $database->{schema};
148     }
149
150     $database->{schema} = &_new_schema();
151     return $database->{schema};
152 }
153
154 =head2 new_schema
155
156   $schema = $database->new_schema;
157
158 Creates a new connection to the Koha database for the current context,
159 and returns the database handle (a C<DBI::db> object).
160
161 The handle is not saved anywhere: this method is strictly a
162 convenience function; the point is that it knows which database to
163 connect to so that the caller doesn't have to know.
164
165 =cut
166
167 #'
168 sub new_schema {
169     my $self = shift;
170
171     return &_new_schema();
172 }
173
174 =head2 set_schema
175
176   $my_schema = $database->new_schema;
177   $database->set_schema($my_schema);
178   ...
179   $database->restore_schema;
180
181 C<&set_schema> and C<&restore_schema> work in a manner analogous to
182 C<&set_context> and C<&restore_context>.
183
184 C<&set_schema> saves the current database handle on a stack, then sets
185 the current database handle to C<$my_schema>.
186
187 C<$my_schema> is assumed to be a good database handle.
188
189 =cut
190
191 sub set_schema {
192     my $self       = shift;
193     my $new_schema = shift;
194
195     # Save the current database handle on the handle stack.
196     # We assume that $new_schema is all good: if the caller wants to
197     # screw himself by passing an invalid handle, that's fine by
198     # us.
199     push @{ $database->{schema_stack} }, $database->{schema};
200     $database->{schema} = $new_schema;
201 }
202
203 =head2 restore_schema
204
205   $database->restore_schema;
206
207 Restores the database handle saved by an earlier call to
208 C<$database-E<gt>set_schema>.
209
210 =cut
211
212 sub restore_schema {
213     my $self = shift;
214
215     if ( $#{ $database->{schema_stack} } < 0 ) {
216
217         # Stack underflow
218         die "SCHEMA stack underflow";
219     }
220
221     # Pop the old database handle and set it.
222     $database->{schema} = pop @{ $database->{schema_stack} };
223
224     # FIXME - If it is determined that restore_context should
225     # return something, then this function should, too.
226 }
227
228 =head2 get_schema_cached
229
230 =cut
231
232 sub get_schema_cached {
233     return $database->{schema};
234 }
235
236 =head2 flush_schema_cache
237
238 =cut
239
240 sub flush_schema_cache {
241     delete $database->{schema};
242     return 1;
243 }
244
245 =head2 EXPORT
246
247 None by default.
248
249
250 =head1 AUTHOR
251
252 Chris Cormack, E<lt>chrisc@catalyst.net.nzE<gt>
253
254 =cut
255
256 1;
257
258 __END__