JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added: enc_cap(), enc_htmlbrtab()
[wfpl.git] / encode.php
1 <?php
2
3 #  Copyright (C) 2005 Jason Woofenden
4 #
5 #  This program is free software: you can redistribute it and/or modify
6 #  it under the terms of the GNU General Public License as published by
7 #  the Free Software Foundation, either version 3 of the License, or
8 #  (at your option) any later version.
9 #  
10 #  This program is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #  GNU General Public License for more details.
14 #  
15 #  You should have received a copy of the GNU General Public License
16 #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 # This file contains basic encodings. These are used by the encoder. You can
20 # specify any template tag to be encoded with this syntax: ~variable.encoding~
21 #
22 # this example: <p>~foo.html~</p>
23 # will encode foo (using enc_html()) before displaying it, so that characters
24 # such as < will display properly.
25
26 function enc_cap($str) {
27         $str = ucfirst($str);
28         return $str;
29 }
30
31 function enc_jsdq($str) {
32         $str = enc_sql($str);
33         $str = str_replace("\n", "\\n", $str);
34         return str_replace("\r", "\\r", $str);
35 }
36
37 # encode for putting within double-quotes in SQL
38 function enc_sql($str) {
39         $str = str_replace("\\", "\\\\", $str);
40         $str = str_replace('"', "\\\"", $str);
41         return $str;
42 }
43
44 # Encode for output in html. does nothing with whitespace
45 #
46 # Example: <p>~foo.html~</p>
47 function enc_html($str) {
48         $str = str_replace('&', '&amp;', $str);
49         $str = str_replace('<', '&lt;', $str);
50         $str = str_replace('>', '&gt;', $str);
51         return $str;
52 }
53
54 # Encode for output in html. Convert newlines to <br />
55 #
56 # Example: <p>~foo.htmlbr~</p>
57 function enc_htmlbr($str) {
58         $str = enc_html($str);
59         $str = str_replace("\n", "<br />\n", $str);
60         return $str;
61 }
62
63 # Encode for output in html. Preserves newlines and indentation by converting
64 # newlines to <br /> and spaces at the begining of lines to &nbsp;&nbsp;
65 #
66 # Example: <p>~foo.htmlbrtab~</p>
67 function enc_htmlbrtab($str) {
68         $str = enc_htmlbr($str);
69         $space_to_nbsp = create_function('$matches', 'return str_repeat(\'&nbsp;\', strlen($matches[0]) * 2);');
70         $str = preg_replace_callback("|^ *|m", $space_to_nbsp, $str);
71         return $str;
72 }
73
74 # Encode for output in html. Spaces converted to &nbsp;
75 #
76 # Example: <option value="12">~foo.htmlnbsp~</option>
77 function enc_htmlnbsp($str) {
78         $str = enc_html($str);
79         $str = str_replace(' ', '&nbsp;', $str);
80         return $str;
81 }
82
83
84 # HTML attribute.
85 #
86 # Example: <input name="foo" value="~foo.attr~">
87 function enc_attr($str) {
88         $str = str_replace('&', '&amp;', $str);
89         $str = str_replace('"', '&quot;', $str);
90         return $str;
91 }
92
93 # URI agument value.
94 #
95 # Example:  <a href="http://example.com?foo=~foo.url_val.attr~">http://example.com?foo=~foo.url_val~</a>
96 function enc_url_val($str) {
97         return rawurlencode($str);
98 }
99
100 # FIXME
101 function enc_url_path($str) {
102         $str = rawurlencode($str);
103         $str = str_replace('%2F', '/', $str);
104         return $str;
105 }
106
107
108 # This is a hack to work around html's stupid syntax for checkboxes.
109 #
110 # Place the template marker just before a " somewhere.
111 #
112 # Example: <input type="checkbox" name="foo~foo.checked~">
113 function enc_checked($str) {
114         if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') {
115                 return '" checked="checked';
116         } else {
117                 return '';
118         }
119 }
120
121 # checkboxe values are stored in the db and handled in php as 0 or 1. When you
122 # want it displayed as "Yes" or "No" use this:
123 # Example: (displaying values from a form submission)  Over 60?: ~over_60.yesno~
124 function enc_yesno($str) {
125         if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') {
126                 return 'Yes';
127         } else {
128                 return 'No';
129         }
130 }
131
132
133 # add a tab at the begining of each non-empty line
134 function enc_tab($str) {
135         $lines = explode("\n", $str);
136         $out = '';
137         foreach($lines as $line) {
138                 if($line) {
139                         $out .= "\t$line";
140                 }
141                 $out .= "\n";
142         }
143
144         # remove the extra newline added above
145         return substr($out, 0, -1);
146 }
147
148 function enc_upper($str) {
149         return strtoupper($str);
150 }
151
152 # pass date in the form 2008-05-23
153 # ercodes date as 05/23/2008
154 function enc_mmddyyyy($yyyy_mm_dd) {
155         if(strlen($yyyy_mm_dd) != 10) {
156                 return date('m/d/Y');
157         }
158         return substr($yyyy_mm_dd, 5, 2) . '/' . substr($yyyy_mm_dd, 8, 2) . '/' . substr($yyyy_mm_dd, 0, 4);
159 }
160
161 function enc_mmddyyyyhhmm($seconds) {
162         return date('m/d/Y g:ia', (int)$seconds);
163 }
164
165
166
167
168 define('PULLDOWN_ARRAY', 0); define('PULLDOWN_HASH', 1); define('PULLDOWN_2D', 2);
169
170 function pulldown_options_to_2d($options, $keys_from) {
171         # convert other types of input to value=>display hash
172         switch($keys_from) {
173                 case PULLDOWN_HASH:
174                         $new_options = array();
175                         foreach($options as $value => $display) {
176                                 $new_options[] = array($value, $display);
177                         }
178                         return $new_options;
179                 case PULLDOWN_ARRAY:
180                         $new_options = array();
181                         foreach($options as $opt) {
182                                 $new_options[] = array($opt, $opt);
183                         }
184                         return $new_options;
185                 break;
186                 case PULLDOWN_2D:
187                         return $options;
188                 break;
189                 default:
190                         die('pulldown_options_to_2d(): unknown value: "' . print_r($keys_from) . '" passed in $keys_from parameter');
191         }
192 }
193
194
195 # call this function before you run() the template so enc_options() knows what
196 # to do
197 #
198 # Parameters:
199 #
200 #   name: the name of the html control
201 #
202 #   options: an array of options to display in the pulldown/selectbox
203 #
204 #   keys_from: Set to one of:
205 #        PULLDOWN_ARRAY: (default) values of $options are displayd and posted
206 #        PULLDOWN_HASH: values of $options are display, keys are posted
207 #        PULLDOWN_2D: $options is a 2 dimensional array.
208 #                     $options[0][1] is displayed, $options[0][0] is posted.
209 #                     $options[1][1] is displayed, $options[1][0] is posted.
210 #
211 #   multiple: UNTESTED set to true for multiple-select boxes. 
212
213 function pulldown($name, $options, $keys_from = PULLDOWN_ARRAY, $multiple = false) {
214         $options = pulldown_options_to_2d($options, $keys_from);
215         $GLOBALS[$name . '_options'] = array();
216         $GLOBALS[$name . '_options']['options'] = $options;
217         $GLOBALS[$name . '_options']['multiple'] = $multiple;
218 }
219
220 # output a bunch of <option> tags
221 function enc_options($values, $name) {
222         if(!isset($GLOBALS[$name . '_options'])) {
223                 die('pulldown() must be called before this template can be run. See code/wfpl/encode.php');
224         }
225         if($GLOBALS[$name . '_options']['multiple']) { # FIXME test this
226                 $values = explode(', ', $values);
227         }
228         return encode_options($values, $GLOBALS[$name . '_options']['options'], PULLDOWN_2D);
229 }
230
231 # use this function along with a special template to generate the html for pulldowns and multiple select boxes.
232 #
233 # Parameters:
234 #
235 #    selected: can be a string or (for multiple-selects) an array
236 #
237 #    options, keys_from: see documentation for pulldown() above
238 function encode_options($selected, $options, $keys_from) {
239         if(!is_array($selected)) {
240                 $selected = array($selected);
241         }
242
243         if($keys_from != PULLDOWN_2D) {
244                 $options = pulldown_options_to_2d($options, $keys_from);
245         }
246
247         $out = '';
248         foreach($options as $valdisp) {
249                 list($value, $display) = $valdisp;
250                 $out .= '<option';
251
252                 if(in_array($value, $selected)) {
253                         $out .= ' selected="selected"';
254                 }
255
256                 if($value !== $display) {
257                         $out .= ' value="';
258                         $out .= enc_attr($value);
259                         $out .= '"';
260                 }
261                         
262                 $out .= '>';
263
264                 $out .= enc_htmlnbsp($display);
265
266                 $out .= "</option>\n";
267         }
268
269         return $out;
270 }
271
272 $GLOBALS['wfpl_states_assoc'] = array("AL" => "Alabama", "AK" => "Alaska", "AZ" => "Arizona", "AR" => "Arkansas", "CA" => "California", "CO" => "Colorado", "CT" => "Connecticut", "DE" => "Delaware", "FL" => "Florida", "GA" => "Georgia", "HI" => "Hawaii", "ID" => "Idaho", "IL" => "Illinois", "IN" => "Indiana", "IA" => "Iowa", "KS" => "Kansas", "KY" => "Kentucky", "LA" => "Louisiana", "ME" => "Maine", "MD" => "Maryland", "MA" => "Massachusetts", "MI" => "Michigan", "MN" => "Minnesota", "MS" => "Mississippi", "MO" => "Missouri", "MT" => "Montana", "NE" => "Nebraska", "NV" => "Nevada", "NH" => "New Hampshire", "NJ" => "New Jersey", "NM" => "New Mexico", "NY" => "New York", "NC" => "North Carolina", "ND" => "North Dakota", "OH" => "Ohio", "OK" => "Oklahoma", "OR" => "Oregon", "PA" => "Pennsylvania", "RI" => "Rhode Island", "SC" => "South Carolina", "SD" => "South Dakota", "TN" => "Tennessee", "TX" => "Texas", "UT" => "Utah", "VT" => "Vermont", "VA" => "Virginia", "WA" => "Washington", "DC" => "Washington, DC", "WV" => "West Virginia", "WI" => "Wisconsin", "WY" => "Wyoming");
273
274 # display <option>s
275 function enc_states($str) {
276         $ret = '';
277
278         return encode_options($str, $GLOBALS['wfpl_states_assoc'], PULLDOWN_HASH);
279 }
280
281 $GLOBALS['wfpl_provinces_assoc'] = array("AB" => "Alberta", "BC" => "British Columbia", "MB" => "Manitoba", "NF" => "Newfoundland", "NB" => "New Brunswick", "NS" => "Nova Scotia", "NT" => "Northwest Territories", "NU" => "Nunavut", "ON" => "Ontario", "PE" => "Prince Edward Island", "QC" => "Quebec", "SK" => "Saskatchewan", "YT" => "Yukon Territory");
282
283 # display <option>s
284 function enc_provinces($str) {
285         $ret = '';
286
287         return encode_options($str, $GLOBALS['wfpl_provinces_assoc'], PULLDOWN_HASH);
288 }
289
290 # returns "odd", then "even", then "odd" etc.
291 function enc_evenodd($values, $name) {
292         if(!isset($GLOBALS['wfpl_even_odds'])) {
293                 $GLOBALS['wfpl_even_odds'] = array();
294         }
295
296         if($GLOBALS['wfpl_even_odds'][$name]) {
297                 $GLOBALS['wfpl_even_odds'][$name] = false;
298                 return 'even';
299         } else {
300                 $GLOBALS['wfpl_even_odds'][$name] = true;
301                 return 'odd';
302         }
303 }
304
305 ?>