]> git.decadent.org.uk Git - maypole.git/blob - ex/BeerDB.pm
Change author acknowledge to explicit copyright statement.
[maypole.git] / ex / BeerDB.pm
1 package BeerDB;
2 use Maypole::Application;
3 use Class::DBI::Loader::Relationship;
4
5 sub debug { $ENV{BEERDB_DEBUG} }
6 # This is the sample application.  Change this to the path to your
7 # database. (or use mysql or something)
8 use constant DBI_DRIVER => 'SQLite';
9 use constant DATASOURCE => $ENV{BEERDB_DATASOURCE} || 't/beerdb.db';
10
11 BEGIN {
12     my $dbi_driver = DBI_DRIVER;
13     if ($dbi_driver =~ /^SQLite/) {
14         die sprintf "SQLite datasource '%s' not found, correct the path or "
15             . "recreate the database by running Makefile.PL", DATASOURCE
16             unless -e DATASOURCE;
17         eval "require DBD::SQLite";
18         if ($@) {
19             eval "require DBD::SQLite2" and $dbi_driver = 'SQLite2';
20         }
21     }
22     BeerDB->setup(join ':', "dbi", $dbi_driver, DATASOURCE);
23 }
24
25 # Give it a name.
26 BeerDB->config->application_name('The Beer Database');
27
28 # Change this to the root of the web site for your maypole application.
29 BeerDB->config->uri_base( $ENV{BEERDB_BASE} || "http://localhost/beerdb/" );
30
31 # Change this to the htdoc root for your maypole application.
32 BeerDB->config->template_root( $ENV{BEERDB_TEMPLATE_ROOT} ) if $ENV{BEERDB_TEMPLATE_ROOT};
33
34 # Specify the rows per page in search results, lists, etc : 10 is a nice round number
35 BeerDB->config->rows_per_page(10);
36
37 # Handpumps should not show up.
38 BeerDB->config->display_tables([qw[beer brewery pub style]]);
39 BeerDB::Brewery->untaint_columns( printable => [qw/name notes url/] );
40 BeerDB::Style->untaint_columns( printable => [qw/name notes/] );
41 BeerDB::Beer->untaint_columns(
42     printable => [qw/abv name price notes url/],
43     integer => [qw/style brewery score/],
44     date =>[ qw/date/],
45 );
46 BeerDB::Pub->untaint_columns(printable => [qw/name notes url/]);
47
48 BeerDB->config->{loader}->relationship($_) for (
49     "a brewery produces beers",
50     "a style defines beers",
51     "a pub has beers on handpumps");
52
53 # For testing classmetadata
54 sub BeerDB::Beer::classdata :Exported {};
55 sub BeerDB::Beer::list_columns  { return qw/score name price style brewery url/};
56
57 1;