chiark / gitweb /
AJAX route validator for text strings
[ypp-sc-tools.db-test.git] / yarrg / CommodsWeb.pm
1 # This is part of ypp-sc-tools, a set of third-party tools for assisting
2 # players of Yohoho Puzzle Pirates.
3 #
4 # Copyright (C) 2009 Ian Jackson <ijackson@chiark.greenend.org.uk>
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 # Yohoho and Puzzle Pirates are probably trademarks of Three Rings and
20 # are used without permission.  This program is not endorsed or
21 # sponsored by Three Rings.
22
23 # This package is used by the Mason scripts in yarrg/web/.
24 # We look for a symlink DATA to the actual data to use, so that
25 # the data uploader and website displayer can use different code.
26
27 package CommodsWeb;
28
29 use strict;
30 use warnings;
31
32 use DBI;
33 use POSIX;
34
35 use Commods;
36 use CommodsDatabase;
37
38 our $self_url;
39 our $base_url;
40
41 BEGIN {
42     use Exporter ();
43     our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
44     $VERSION     = 1.00;
45     @ISA         = qw(Exporter);
46     @EXPORT      = qw($dbh &db_setocean &db_connect &db_doall
47                       $self_url $base_url);
48     %EXPORT_TAGS = ( );
49
50     @EXPORT_OK   = qw();
51 }
52
53 for my $dir (@INC) {
54     if ($dir =~ m/\.perl-lib$/) {
55         db_setdatadir("$dir/DATA");
56         last;
57     }
58 }
59
60 $self_url= 'http://'.$ENV{'SERVER_NAME'}.$ENV{'SCRIPT_NAME'}.$ENV{'PATH_INFO'};
61 $base_url= $self_url;  $base_url =~ s,/[^/]+,,;
62
63 1;