/usr/share/perl5/Dancer/Plugin/DBIC.pm is in libdancer-plugin-dbic-perl 0.1802-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | package Dancer::Plugin::DBIC;
our $VERSION = '0.1802'; # VERSION
use strict;
use warnings;
use utf8;
use Dancer::Plugin;
use Module::Load;
my $schemas = {};
sub schema {
my ($self, $name) = plugin_args(@_);
my $cfg = plugin_setting;
if (not defined $name) {
if (keys %$cfg == 1) {
($name) = keys %$cfg;
} elsif (keys %$cfg) {
$name = "default";
} else {
die "No schemas are configured";
}
}
return $schemas->{$name} if $schemas->{$name};
my $options = $cfg->{$name} or die "The schema $name is not configured";
my @conn_info = $options->{connect_info}
? @{$options->{connect_info}}
: @$options{qw(dsn user pass options)};
warn "The pckg option is deprecated. Please use schema_class instead."
if $options->{pckg};
my $schema_class = $options->{schema_class} || $options->{pckg};
if ($schema_class) {
$schema_class =~ s/-/::/g;
eval { load $schema_class };
die "Could not load schema_class $schema_class" if $@;
$schemas->{$name} = $schema_class->connect(@conn_info)
} else {
my $dbic_loader = 'DBIx::Class::Schema::Loader';
eval { load $dbic_loader };
die "You must provide a schema_class option or install $dbic_loader."
if $@;
$dbic_loader->naming('v7');
$schemas->{$name} = DBIx::Class::Schema::Loader->connect(@conn_info);
}
return $schemas->{$name};
};
sub resultset {
my ($self, $rset_name) = plugin_args(@_);
return schema->resultset($rset_name);
}
register schema => \&schema;
register resultset => \&resultset;
register rset => \&resultset;
register_plugin for_versions => [ 1, 2 ];
# ABSTRACT: DBIx::Class interface for Dancer applications
1;
__END__
=pod
=head1 NAME
Dancer::Plugin::DBIC - DBIx::Class interface for Dancer applications
=head1 VERSION
version 0.1802
=head1 SYNOPSIS
use Dancer;
use Dancer::Plugin::DBIC qw(schema resultset rset);
get '/users/:user_id' => sub {
my $user = schema('default')->resultset('User')->find(param 'user_id');
# If you are accessing the 'default' schema, then all the following
# are equivalent to the above:
$user = schema->resultset('User')->find(param 'user_id');
$user = resultset('User')->find(param 'user_id');
$user = rset('User')->find(param 'user_id');
template user_profile => {
user => $user
};
};
dance;
=head1 DESCRIPTION
This plugin makes it very easy to create L<Dancer> applications that interface
with databases.
It automatically exports the keyword C<schema> which returns a
L<DBIx::Class::Schema> object.
You just need to configure your database connection information.
For performance, schema objects are cached in memory
and are lazy loaded the first time they are accessed.
=encoding utf8
=head1 CONFIGURATION
Configuration can be done in your L<Dancer> config file.
This is a minimal example. It defines one database named C<default>:
plugins:
DBIC:
default:
dsn: dbi:SQLite:dbname=some.db
In this example, there are 2 databases configured named C<default> and C<foo>:
plugins:
DBIC:
default:
dsn: dbi:SQLite:dbname=some.db
schema_class: MyApp::Schema
foo:
dsn: dbi:mysql:foo
schema_class: Foo::Schema
user: bob
pass: secret
options:
RaiseError: 1
PrintError: 1
Each database configured must at least have a dsn option.
The dsn option should be the L<DBI> driver connection string.
All other options are optional.
If you only have one schema configured, or one of them is named
C<default>, you can call C<schema> without an argument to get the only
or C<default> schema, respectively.
If a schema_class option is not provided, then L<DBIx::Class::Schema::Loader>
will be used to dynamically load the schema by introspecting the database
corresponding to the dsn value.
Remember that you need L<DBIx::Class::Schema::Loader> installed to take
advantage of that.
The schema_class option, should be a proper Perl package name that
Dancer::Plugin::DBIC will use as a L<DBIx::Class::Schema> class.
Optionally, a database configuation may have user, pass, and options parameters
as described in the documentation for C<connect()> in L<DBI>.
You may also declare your connection information in the following format
(which may look more familiar to DBIC users):
plugins:
DBIC:
default:
connect_info:
- dbi:mysql:foo
- bob
- secret
-
RaiseError: 1
PrintError: 1
=head1 FUNCTIONS
=head2 schema
my $user = schema->resultset('User')->find('bob');
The C<schema> keyword returns a L<DBIx::Class::Schema> object ready for you to
use.
If you have configured only one database, then you can simply call C<schema>
with no arguments.
If you have configured multiple databases,
you can still call C<schema> with no arguments if there is a database
named C<default> in the configuration.
With no argument, the C<default> schema is returned.
Otherwise, you B<must> provide C<schema()> with the name of the database:
my $user = schema('foo')->resultset('User')->find('bob');
=head2 resultset
This is a convenience method that will save you some typing.
Use this B<only> when accessing the C<default> schema.
my $user = resultset('User')->find('bob');
is equivalent to:
my $user = schema->resultset('User')->find('bob');
=head2 rset
my $user = rset('User')->find('bob');
This is simply an alias for C<resultset>.
=head1 SCHEMA GENERATION
There are two approaches for generating schema classes.
You may generate your own L<DBIx::Class> classes and set
the corresponding C<schema_class> setting in your configuration as shown above.
This is the recommended approach for performance and stability.
It is also possible to have schema classes dynamically generated
if you omit the C<schema_class> configuration setting.
This requires you to have L<DBIx::Class::Schema::Loader> installed.
The C<v7> naming scheme will be used for naming the auto generated classes.
See L<DBIx::Class::Schema::Loader::Base/naming> for more information about
naming.
For generating your own schema classes,
you can use the L<dbicdump> command line tool provided by
L<DBIx::Class::Schema::Loader> to help you.
For example, if your app were named Foo, then you could run the following
from the root of your project directory:
dbicdump -o dump_directory=./lib Foo::Schema dbi:SQLite:/path/to/foo.db
For that example, your C<schema_class> setting would be C<Foo::Schema>.
=head1 CONTRIBUTORS
=over 4
=item *
Alexis Sukrieh <sukria@sukria.net>
=item *
Dagfinn Ilmari Mannsåker <L<https://github.com/ilmari>>
=item *
David Precious <davidp@preshweb.co.uk>
=item *
Fabrice Gabolde <L<https://github.com/fgabolde>>
=item *
Franck Cuny <franck@lumberjaph.net>
=item *
Steven Humphrey <L<https://github.com/shumphrey>>
=item *
Yanick Champoux <L<https://github.com/yanick>>
=back
=head1 AUTHORS
=over 4
=item *
Al Newkirk <awncorp@cpan.org>
=item *
Naveed Massjouni <naveedm9@gmail.com>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by awncorp.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|