Project

General

Profile

1
<?php
2

    
3
// $Id: view.php 255 2005-11-28 06:52:32Z ryan $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2005, Ryan Djurovich
9

    
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14

    
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19

    
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23

    
24
*/
25

    
26
/*
27
The Website Baker Project would like to thank Rudolph Lartey <www.carbonect.com>
28
for his contributions to this module - adding extra field types
29
*/
30

    
31
// Must include code to stop this file being access directly
32
if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
33

    
34
// Function for generating an optionsfor a select field
35
function make_option(&$n) {
36
	// start option group if it exists
37
	if (substr($n,0,2) == '[=') {
38
	 	$n = '<optgroup label="'.substr($n,2,strlen($n)).'">';
39
	} elseif ($n == ']') {
40
		$n = '</optgroup>';
41
	} else {
42
		$n = '<option value="'.$n.'">'.$n.'</option>';
43
	}
44
}
45

    
46
// Function for generating a checkbox
47
function make_checkbox(&$n, $idx, $params) {
48
	$field_id = $params[0];
49
	$seperator = $params[1];
50
	//$n = '<input class="field_checkbox" type="checkbox" id="'.$n.'" name="field'.$field_id.'" value="'.$n.'">'.'<font class="checkbox_label" onclick="javascript: document.getElementById(\''.$n.'\').checked = !document.getElementById(\''.$n.'\').checked;">'.$n.'</font>'.$seperator;
51
	$n = '<input class="field_checkbox" type="checkbox" id="'.$n.'" name="field'.$field_id.'['.$idx.']" value="'.$n.'">'.'<font class="checkbox_label" onclick="javascript: document.getElementById(\''.$n.'\').checked = !document.getElementById(\''.$n.'\').checked;">'.$n.'</font>'.$seperator;
52
}
53

    
54
// Function for generating a radio button
55
function make_radio(&$n, $idx, $params) {
56
	$field_id = $params[0];
57
	$group = $params[1];
58
	$seperator = $params[2];
59
	$n = '<input class="field_radio" type="radio" id="'.$n.'" name="field'.$field_id.'" value="'.$n.'">'.'<font class="radio_label" onclick="javascript: document.getElementById(\''.$n.'\').checked = true;">'.$n.'</font>'.$seperator;
60
}
61

    
62
// Work-out if the form has been submitted or not
63
if($_POST == array()) {
64

    
65
?>
66
<style type="text/css">
67
.required {
68
	color: #FF0000;
69
}
70
.field_title {
71
	font-size: 12px;
72
	width: 100px;
73
	vertical-align: top;
74
	text-align:right;
75
}
76
.textfield {
77
	font-size: 12px;
78
	width: 200px;
79
}
80
.textarea {
81
	font-size: 12px;
82
	width: 90%;
83
	height: 100px;
84
}
85
.field_heading {
86
	font-size: 12px;
87
	font-weight: bold;
88
	border-bottom-width: 2px;
89
	border-bottom-style: solid;
90
	border-bottom-color: #666666;
91
	padding-top: 10px;
92
	color: #666666;
93
}
94
.select {
95
	font-size: 12px;
96
}
97
.checkbox_label {
98
	font-size: 11px;
99
	cursor: pointer;
100
}
101
.radio_label {
102
	font-size: 11px;
103
	cursor: pointer;
104
}
105
.email {
106
	font-size: 12px;
107
	width: 200px;
108
}
109
</style>
110
<?php
111

    
112
// Get settings
113
$query_settings = $database->query("SELECT header,field_loop,footer,use_captcha FROM ".TABLE_PREFIX."mod_form_settings WHERE section_id = '$section_id'");
114
if($query_settings->numRows() > 0) {
115
	$fetch_settings = $query_settings->fetchRow();
116
	$header = str_replace('{WB_URL}',WB_URL,$fetch_settings['header']);
117
	$field_loop = $fetch_settings['field_loop'];
118
	$footer = str_replace('{WB_URL}',WB_URL,$fetch_settings['footer']);
119
	$use_captcha = $fetch_settings['use_captcha'];
120
} else {
121
	$header = '';
122
	$field_loop = '';
123
	$footer = '';
124
}
125

    
126
// Add form starter code
127
?>
128
<form name="form" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
129
<?php
130

    
131
// Print header
132
echo $header;
133

    
134
// Get list of fields
135
$query_fields = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_form_fields WHERE section_id = '$section_id' ORDER BY position ASC");
136
if($query_fields->numRows() > 0) {
137
	while($field = $query_fields->fetchRow()) {
138
		// Set field values
139
		$field_id = $field['field_id'];
140
		$value = $field['value'];
141
		// Print field_loop after replacing vars with values
142
		$vars = array('{TITLE}', '{REQUIRED}');
143
		$values = array($field['title']);
144
		if($field['required'] == 1) {
145
			$values[] = '<font class="required">*</font>';
146
		} else {
147
			$values[] = '';
148
		}
149
		if($field['type'] == 'textfield') {
150
			$vars[] = '{FIELD}';
151
			$values[] = '<input type="text" name="field'.$field_id.'" id="field'.$field_id.'" maxlength="'.$field['extra'].'" value="'.$value.'" class="textfield" />';
152
		} elseif($field['type'] == 'textarea') {
153
			$vars[] = '{FIELD}';
154
			$values[] = '<textarea name="field'.$field_id.'" id="field'.$field_id.'" class="textarea">'.$value.'</textarea>';
155
		} elseif($field['type'] == 'select') {
156
			$vars[] = '{FIELD}';
157
			$options = explode(',', $value);
158
			array_walk($options, 'make_option');
159
			$field['extra'] = explode(',',$field['extra']); 
160
			$values[] = '<select name="field'.$field_id.'[]" id="field'.$field_id.'" size="'.$field['extra'][0].'" '.$field['extra'][1].' class="select">'.implode($options).'</select>';
161
		} elseif($field['type'] == 'heading') {
162
			$vars[] = '{FIELD}';
163
			$values[] = '<input type="hidden" name="field'.$field_id.'" id="field'.$field_id.'" value="===['.$field['title'].']===" />';
164
			$tmp_field_loop = $field_loop;		// temporarily modify the field loop template
165
			$field_loop = $field['extra'];
166
		} elseif($field['type'] == 'checkbox') {
167
			$vars[] = '{FIELD}';
168
			$options = explode(',', $value);
169
			array_walk($options, 'make_checkbox',array($field_id,$field['extra']));
170
			$values[] = implode($options);
171
		} elseif($field['type'] == 'radio') {
172
			$vars[] = '{FIELD}';
173
			$options = explode(',', $value);
174
			array_walk($options, 'make_radio',array($field_id,$field['title'],$field['extra']));
175
			$values[] = implode($options);
176
		} elseif($field['type'] == 'email') {
177
			$vars[] = '{FIELD}';
178
			$values[] = '<input type="text" name="field'.$field_id.'" id="field'.$field_id.'" maxlength="'.$field['extra'].'" class="email" />';
179
		}
180
		if($field['type'] != '') {
181
			echo str_replace($vars, $values, $field_loop);
182
		}
183
		if (isset($tmp_field_loop)) $field_loop = $tmp_field_loop;
184
	}
185
}
186

    
187
// Captcha
188
if($use_captcha) {
189
	$_SESSION['captcha'] = '';
190
	for($i = 0; $i < 5; $i++) {
191
		$_SESSION['captcha'] .= rand(0,9);
192
	}
193
	?><tr><td class="field_title"><?php echo $TEXT['VERIFICATION']; ?>:</td><td>
194
	<table cellpadding="2" cellspacing="0" border="0">
195
	<tr><td><img src="<?php echo WB_URL; ?>/include/captcha.php" alt="Captcha" /></td>
196
	<td><input type="text" name="captcha" maxlength="5" /></td>
197
	</tr></table>
198
	</td></tr>
199
	<?php
200
}
201

    
202
// Print footer
203
echo $footer;
204

    
205
// Add form end code
206
?>
207
</form>
208
<?php
209

    
210
} else {
211
	
212
	// Submit form data
213
	// First start message settings
214
	$query_settings = $database->query("SELECT email_to,email_from,email_subject,success_message,max_submissions,stored_submissions FROM ".TABLE_PREFIX."mod_form_settings WHERE section_id = '$section_id'");
215
	if($query_settings->numRows() > 0) {
216
		$fetch_settings = $query_settings->fetchRow();
217
		$email_to = $fetch_settings['email_to'];
218
		$email_from = $fetch_settings['email_from'];
219
		if(substr($email_from, 0, 5) == 'field') {
220
			// Set the email from field to what the user entered in the specified field
221
			$email_from = $wb->add_slashes($_POST[$email_from]);
222
		}
223
		$email_subject = $fetch_settings['email_subject'];
224
		$success_message = $fetch_settings['success_message'];
225
		$max_submissions = $fetch_settings['max_submissions'];
226
		$stored_submissions = $fetch_settings['stored_submissions'];
227
	} else {
228
		exit($TEXT['UNDER_CONSTRUCTION']);
229
	}
230
	$email_body = '';
231
	
232
	// Create blank "required" array
233
	$required = array();
234
	
235
	// Loop through fields and add to message body
236
	// Get list of fields
237
	$query_fields = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_form_fields WHERE section_id = '$section_id' ORDER BY position ASC");
238
	if($query_fields->numRows() > 0) {
239
		while($field = $query_fields->fetchRow()) {
240
			// Add to message body
241
			if($field['type'] != '') {
242
				if(!empty($_POST['field'.$field['field_id']])) {
243
					if($field['type'] == 'email' AND $admin->validate_email($_POST['field'.$field['field_id']]) == false) {
244
						$email_error = $MESSAGE['USERS']['INVALID_EMAIL'];
245
					}
246
					if($field['type'] == 'heading') {
247
						$email_body .= $_POST['field'.$field['field_id']]."\n\n";
248
					} elseif (!is_array($_POST['field'.$field['field_id']])) {
249
						$email_body .= $field['title'].': '.$_POST['field'.$field['field_id']]."\n\n";
250
					} else {
251
						$email_body .= $field['title'].": \n";
252
						foreach ($_POST['field'.$field['field_id']] as $k=>$v) {
253
							$email_body .= $v."\n";
254
						}
255
						$email_body .= "\n";
256
					}
257
				} elseif($field['required'] == 1) {
258
					$required[] = $field['title'];
259
				}
260
			}
261
		}
262
	}
263
	
264
	// Captcha
265
	if(extension_loaded('gd') AND function_exists('imageCreateFromJpeg')) { /* Make's sure GD library is installed */
266
		if(isset($_POST['captcha']) AND $_POST['captcha'] != ''){
267
			// Check for a mismatch
268
			if(!isset($_POST['captcha']) OR !isset($_SESSION['captcha']) OR $_POST['captcha'] != $_SESSION['captcha']) {
269
				$captcha_error = $MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'];
270
			}
271
		} else {
272
			$captcha_error = $MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'];
273
		}
274
	}
275
	if(isset($_SESSION['catpcha'])) { unset($_SESSION['captcha']); }
276
	
277
	// Addslashes to email body - proposed by Icheb in topic=1170.0
278
	// $email_body = $wb->add_slashes($email_body);
279
	
280
	// Check if the user forgot to enter values into all the required fields
281
	if($required != array()) {
282
		if(!isset($MESSAGE['MOD_FORM']['REQUIRED_FIELDS'])) {
283
			echo 'You must enter details for the following fields';
284
		} else {
285
			echo $MESSAGE['MOD_FORM']['REQUIRED_FIELDS'];
286
		}
287
		echo ':<br /><ul>';
288
		foreach($required AS $field_title) {
289
			echo '<li>'.$field_title;
290
		}
291
		if(isset($email_error)) { echo '<li>'.$email_error.'</li>'; }
292
		if(isset($captcha_error)) { echo '<li>'.$captcha_error.'</li>'; }
293
		echo '</ul><a href="javascript: history.go(-1);">'.$TEXT['BACK'].'</a>';
294
		
295
	} else {
296
		
297
		if(isset($email_error)) {
298
			echo '<br /><ul>';
299
			echo '<li>'.$email_error.'</li>';
300
			echo '</ul><a href="javascript: history.go(-1);">'.$TEXT['BACK'].'</a>';
301
		} elseif(isset($captcha_error)) {
302
			echo '<br /><ul>';
303
			echo '<li>'.$captcha_error.'</li>';
304
			echo '</ul><a href="javascript: history.go(-1);">'.$TEXT['BACK'].'</a>';
305
		} else {
306
		
307
		// Check how many times form has been submitted in last hour
308
		$query_submissions = $database->query("SELECT submission_id FROM ".TABLE_PREFIX."mod_form_submissions WHERE submitted_when >= '3600'");
309
		if($query_submissions->numRows() > $max_submissions) {
310
			// Too many submissions so far this hour
311
			echo $MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'];
312
			$success = false;
313
		} else {
314
			// Now send the email
315
			if($email_to != '') {
316
				if($email_from != '') {
317
					if(mail($email_to,$email_subject,str_replace("\n", '', $email_body),"From: ".$email_from)) { $success = true; }
318
				} else {
319
					if(mail($email_to,$email_subject,str_replace("\n", '', $email_body))) { $success = true; }
320
				}
321
			}				
322
			// Write submission to database
323
			if(isset($admin) AND $admin->get_user_id() > 0) {
324
				$admin->get_user_id();
325
			} else {
326
				$submitted_by = 0;
327
			}
328
			$email_body = $wb->add_slashes($email_body);
329
			$database->query("INSERT INTO ".TABLE_PREFIX."mod_form_submissions (page_id,section_id,submitted_when,submitted_by,body) VALUES ('".PAGE_ID."','$section_id','".mktime()."','$submitted_by','$email_body')");
330
			// Make sure submissions table isn't too full
331
			$query_submissions = $database->query("SELECT submission_id FROM ".TABLE_PREFIX."mod_form_submissions ORDER BY submitted_when");
332
			$num_submissions = $query_submissions->numRows();
333
			if($num_submissions > $stored_submissions) {
334
				// Remove excess submission
335
				$num_to_remove = $num_submissions-$stored_submissions;
336
				while($submission = $query_submissions->fetchRow()) {
337
					if($num_to_remove > 0) {
338
						$submission_id = $submission['submission_id'];
339
						$database->query("DELETE FROM ".TABLE_PREFIX."mod_form_submissions WHERE submission_id = '$submission_id'");
340
						$num_to_remove = $num_to_remove-1;
341
					}
342
				}
343
			}
344
			if(!$database->is_error()) {
345
				$success = true;
346
			}
347
		}
348
		
349
		// Now check if the email was sent successfully
350
		if(isset($success) AND $success == true) {
351
			echo $success_message;
352
		} else {
353
			echo $TEXT['ERROR'];
354
		}
355
		
356
		}
357
	}
358
	
359
}
360

    
361
?>
(16-16/17)