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