JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fixed pulldowns, metaform suppors zip and decimal, run.php supports straight html...
[wfpl.git] / run.php
1 <?php
2
3 #  Copyright (C) 2006 Jason Woofenden
4 #
5 #  This file is part of wfpl.
6 #
7 #  wfpl is free software; you can redistribute it and/or modify it under the
8 #  terms of the GNU Lesser General Public License as published by the Free
9 #  Software Foundation; either version 2.1 of the License, or (at your option)
10 #  any later version.
11 #
12 #  wfpl is distributed in the hope that it will be useful, but WITHOUT ANY
13 #  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 #  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for
15 #  more details.
16 #
17 #  You should have received a copy of the GNU Lesser General Public License
18 #  along with wfpl; if not, write to the Free Software Foundation, Inc., 51
19 #  Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20
21
22 # This file facilitates making a site with mixed PHP and html files. All URLs
23 # have the .html extension. One benefit of this is that you can change static
24 # html files to php scripts without having to update links.
25
26 # This script will pull the filename from the URL. It looks for a file with
27 # that name, and for one with the same basename, but with the .php extension
28 # and acts accordingly:
29
30 #--------------------------------------------#
31 #        | .php file exists   | no .php file #
32 #--------+--------------------+--------------#
33 # .html  | load html file as  | pass html    #
34 # file   | a template and run | file through #
35 # exists | run the php file   | as is        #
36 #--------+--------------------+--------------#
37 # no     |                    |              #
38 # .html  | run php file       | display 404  #
39 # file   |                    |              #
40 #--------------------------------------------#
41
42
43
44 # To activate this script in a directory, you'll need to:
45 #
46 # 1) make a symbolic link to (or copy of) this file in your directory. and
47 #
48 # 3) Set your webserver to run this script instead of html files. Here's how to
49 # do that with apache: put something like the following in you your .htaccess
50 # file (where /foo/ is the part of the url between the hostname and the
51 # filename.) The example below would work for this url:
52 # http://example.com/foo/bar.html
53
54 # RewriteEngine  on
55 # RewriteRule    ^$  /foo/run.php
56 # RewriteRule    ^foo/[^/]*\.html$  /foo/run.php
57
58 require_once('code/wfpl/file_run.php');
59 require_once('code/wfpl/http.php');
60 require_once('code/wfpl/template.php');
61
62 if(file_exists('code/config.php')) {
63         file_run('code/config.php');
64 }
65
66 function run_php($basename = false) {
67         if(!$basename) {
68                 $basename = $_SERVER['REDIRECT_URL'];
69                 $basename = ereg_replace('.*/', '', $basename);
70                 $basename = ereg_replace('\.html$', '', $basename);
71                 if($basename == '') {
72                         $basename = 'index';
73                 }
74         }
75
76         $html_file = "$basename.html";
77         $php_file = "$basename.php";
78
79         $html_exists = file_exists($html_file);
80         $php_exists = file_exists($php_file);
81
82         if(!$php_exists && !$html_exists) {
83                 header('HTTP/1.0 404 File Not Found');
84                 if(file_exists('404.php') || file_exists('404.html')) {
85                         run_php('404');
86                 } else {
87                         echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><title>404</title></head><body><h1>404 File Not Found</h1></body></html>';
88                 }
89         }
90
91         # If there's no template.html we don't want to parse $html_file.
92         if($html_exists && !$php_exists && !file_exists('template.html')) {
93                 readfile($html_file);
94                 exit();
95         }
96
97         if($html_exists) {
98                 tem_load_new($html_file);
99         }
100
101         if($php_exists) {
102                 # files can return a basename or URL of a page to be run/displayed
103                 $other = file_run($php_file);
104                 if($other) {
105                         if(strpos($other, ':')) {
106                                 redirect($other);
107                                 exit();
108                         }
109                         if(substr($other, 0, 2) == './') {
110                                 redirect(ereg_replace('/[^/]*$', substr($other, 1), this_url()));
111                                 exit();
112                         }
113                         run_php($other);
114                         return;
115                 }
116         } else {
117                 $sub_names = tem_top_sub_names();
118                 foreach($sub_names as $sub_name) {
119                         tem_sub($sub_name);
120                 }
121         }
122
123         # Check for $GLOBALS['wfpl_template'] because it might have been set (or unset) by the php script.
124         if($GLOBALS['wfpl_template']) {
125                 if(file_exists('template.html')) {
126                         $tem = new tem();
127                         $tem->load("template.html");
128                         $sections = tem_top_subs();
129                         if($sections) foreach($sections as $name => $val) {
130                                 $tem->set($name, $val);
131                         }
132
133                         if(file_exists("$basename.css")) {
134                                 $tem->set('css_link', "$basename.css");
135                                 $tem->sub('css_links');
136                         }
137
138                         $GLOBALS['wfpl_template'] = $tem;
139                 }
140
141                 if(function_exists('display_messages')) {
142                         display_messages();
143                 }
144                 tem_output();
145         }
146 }
147
148 run_php();
149
150 ?>