/web/htdocs/www.euroroma.net/home/zenphoto/zp-core/zp-extensions/contact_form.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
<?php
/**
 * Prints an e-mail contact form that uses Zenphoto's internal validation functions for <i>e-mail</i> and <i>URL</i>.
 * <i>Name</i>, <i>e-mail address</i>, <i>subject</i> and <i>message</i> are required fields by default.
 * You need to set a custom mail address to be used for the messages destination.
 *
 * Support is included <i>CAPTCHA</i> and for confirmation before the message is sent. No other spam filter support is provided.
 * Your mail client will provide filtering on receipt of the message.
 *
 * The contact form itself is a separate file and located within <var>%ZENFOLDER%/%PLUGIN_FOLDER%/contact_form/form.php</var>. Place a customized
 * version of the form in a similar folder in your theme if you wish something different from the standard form.
 *
 * @author Malte Müller (acrylian), Stephen Billard (sbillard)
 * @package plugins
 */
$plugin_is_filter FEATURE_PLUGIN;
$plugin_description gettext("Prints an e-mail contact so that visitors may e-mail the site administrator.");
$plugin_author "Malte Müller (acrylian), Stephen Billard (sbillard)";

$option_interface 'contactformOptions';

if (!
OFFSET_PATH) {
    
$_zp_conf_vars['special_pages']['contact'] = array('define'     => false'rewrite'     => getOption('contactform_rewrite'), 'rule'         => '^%REWRITE%/*$        index.php?p=contact [L,QSA]');
}

/**
 * Plugin option handling class
 *
 */
class contactformOptions {

    function 
contactformOptions() {
        global 
$_zp_authority;

        if (
OFFSET_PATH == && !getOption('contactform_mailaddress')) {
            
purgeOption('contactform_mailaddress');
        }
        
setOptionDefault('contactform_rewrite''_PAGE_/contact');
        
gettext($str '<p>Fields with <strong>*</strong> are required. HTML or any other code is not allowed.</p>');
        
setOptionDefault('contactform_introtext'getAllTranslations($str));
        
gettext($str '<p>Please confirm that you really want to send this email. Thanks.</p>');
        
setOptionDefault('contactform_confirmtext'getAllTranslations($str));
        
gettext($str '<p>Thanks for your message.</p>');
        
setOptionDefault('contactform_thankstext'getAllTranslations($str));
        
gettext($str 'Send another message.');
        
setOptionDefault('contactform_newmessagelink'getAllTranslations($str));
        
setOptionDefault('contactform_title'"show");
        
setOptionDefault('contactform_name'"required");
        
setOptionDefault('contactform_company'"show");
        
setOptionDefault('contactform_street'"show");
        
setOptionDefault('contactform_city'"show");
        
setOptionDefault('contactform_state'"show");
        
setOptionDefault('contactform_postal'"show");
        
setOptionDefault('contactform_country'"show");
        
setOptionDefault('contactform_email'"required");
        
setOptionDefault('contactform_website'"show");
        
setOptionDefault('contactform_phone'"show");
        
setOptionDefault('contactform_captcha'0);
        
setOptionDefault('contactform_confirm'1);
        
setOptionDefault('contactform_sendcopy'0);
        
gettext($str '<p>A copy of your e-mail will automatically be sent to the address you provided for your own records.</p>');
        
setOptionDefault('contactform_sendcopy_text'getAllTranslations($str));
        
$mailings $_zp_authority->getAdminEmail();
        
$email_list '';
        foreach (
$mailings as $email) {
            
$email_list .= ';' $email;
        }
        if (
$email_list) {
            
setOptionDefault('contactform_mailaddress'substr($email_list1));
        }
    }

    function 
getOptionsSupported() {
        global 
$_zp_captcha;
        
$mailinglist explode(';'getOption("contactform_mailaddress"));
        
array_walk($mailinglist'contactformOptions::trim_value');
        
setOption('contactform_mailaddress'implode(';'$mailinglist));
        
$list = array(gettext("required")     => "required"gettext("show")             => "show"gettext("omitted")     => "omitted");
        
$mailfieldinstruction gettext("Set if the <code>%s</code> field should be required, just shown or omitted");
        
$options = array(
                        
gettext('Contact page link')         => array('key'         => 'contactform_rewrite''type'     => OPTION_TYPE_TEXTBOX,
                                        
'order'     => 0,
                                        
'desc'     => gettext('The link to use for the contact page. Note: the token <code>_PAGE_</code> stands in for the current <em>page</em> definition.')),
                        
gettext('Intro text')                         => array('key'         => 'contactform_introtext''type'     => OPTION_TYPE_TEXTAREA,
                                        
'order'     => 13,
                                        
'desc'     => gettext("The intro text for your contact form")),
                        
gettext('Confirm text')                     => array('key'         => 'contactform_confirmtext''type'     => OPTION_TYPE_TEXTAREA,
                                        
'order'     => 14,
                                        
'desc'     => gettext("The text that asks the visitor to confirm that he really wants to send the message.")),
                        
gettext('Thanks text')                     => array('key'         => 'contactform_thankstext''type'     => OPTION_TYPE_TEXTAREA,
                                        
'order'     => 15,
                                        
'desc'     => gettext("The text that is shown after a message has been confirmed and sent.")),
                        
gettext('New message link text') => array('key'         => 'contactform_newmessagelink''type'     => OPTION_TYPE_TEXTAREA,
                                        
'order'     => 16,
                                        
'desc'     => gettext("The text for the link after the thanks text to return to the contact page to send another message.")),
                        
gettext('Require confirmation')     => array('key'         => 'contactform_confirm''type'     => OPTION_TYPE_CHECKBOX,
                                        
'order'     => 0.1,
                                        
'desc'     => gettext("If checked, a confirmation form will be presented before sending the contact message.")),
                        
gettext('Send copy')                         => array('key'         => 'contactform_sendcopy''type'     => OPTION_TYPE_CHECKBOX,
                                        
'order'     => 0.3,
                                        
'desc'     => gettext("If checked, a copy of the message will be sent to the address provided. <p class='notebox'><strong>Caution: </strong> If you check this option it is strongly recommend to use Captcha and the confirmation option. Be aware that someone could misuse the e-mail address entered for spamming with this form and that in some countries' jurisdictions (e.g. most European countries) you may be made responsible for this then!</p>")),
                        
gettext('Send copy note text')     => array('key'         => 'contactform_sendcopy_text''type'     => OPTION_TYPE_TEXTAREA,
                                        
'order'     => 0.2,
                                        
'desc'     => gettext("The text for the note about sending a copy to the address provided in case that option is set.")),
                        
gettext('Contact recipients')         => array('key'         => 'contactform_mailaddress''type'     => OPTION_TYPE_TEXTBOX,
                                        
'order'     => 17,
                                        
'desc'     => gettext("The e-mail address the messages should be sent to. Enter one or more address separated by semicolons.")),
                        
gettext('Title')                                 => array('key'             => 'contactform_title''type'         => OPTION_TYPE_RADIO'buttons'     => $list,
                                        
'order'         => 1,
                                        
'desc'         => sprintf($mailfieldinstructiongettext("Title"))),
                        
gettext('Name')                                     => array('key'             => 'contactform_name''type'         => OPTION_TYPE_RADIO'buttons'     => $list,
                                        
'order'         => 2,
                                        
'desc'         => sprintf($mailfieldinstructiongettext("Name"))),
                        
gettext('Company')                             => array('key'             => 'contactform_company''type'         => OPTION_TYPE_RADIO'buttons'     => $list,
                                        
'order'         => 3,
                                        
'desc'         => sprintf($mailfieldinstructiongettext("Company"))),
                        
gettext('Street')                                 => array('key'             => 'contactform_street''type'         => OPTION_TYPE_RADIO'buttons'     => $list,
                                        
'order'         => 4,
                                        
'desc'         => sprintf($mailfieldinstructiongettext("Street"))),
                        
gettext('City')                                     => array('key'             => 'contactform_city''type'         => OPTION_TYPE_RADIO'buttons'     => $list,
                                        
'order'         => 5,
                                        
'desc'         => sprintf($mailfieldinstructiongettext("City"))),
                        
gettext('State')                                 => array('key'             => 'contactform_state''type'         => OPTION_TYPE_RADIO'buttons'     => $list,
                                        
'order'         => 5.1,
                                        
'desc'         => sprintf($mailfieldinstructiongettext("State"))),
                        
gettext('Postal code')                     => array('key'             => 'contactform_postal''type'         => OPTION_TYPE_RADIO'buttons'     => $list,
                                        
'order'         => 5.2,
                                        
'desc'         => sprintf($mailfieldinstructiongettext("Postal code"))),
                        
gettext('Country')                             => array('key'             => 'contactform_country''type'         => OPTION_TYPE_RADIO'buttons'     => $list,
                                        
'order'         => 6,
                                        
'desc'         => sprintf($mailfieldinstructiongettext("Country"))),
                        
gettext('E-mail')                                 => array('key'             => 'contactform_email''type'         => OPTION_TYPE_RADIO'buttons'     => $list,
                                        
'order'         => 7,
                                        
'desc'         => sprintf($mailfieldinstructiongettext("E-mail"))),
                        
gettext('Website')                             => array('key'             => 'contactform_website''type'         => OPTION_TYPE_RADIO'buttons'     => $list,
                                        
'order'         => 8,
                                        
'desc'         => sprintf($mailfieldinstructiongettext("Website"))),
                        
gettext('CAPTCHA')                             => array('key'         => 'contactform_captcha''type'     => OPTION_TYPE_CHECKBOX,
                                        
'order'     => 9,
                                        
'desc'     => ($_zp_captcha->name) ? gettext('If checked, the form will include a Captcha verification.') : '<span class="notebox">' gettext('No captcha handler is enabled.') . '</span>'),
                        
gettext('Phone')                                 => array('key'             => 'contactform_phone''type'         => OPTION_TYPE_RADIO'buttons'     => $list,
                                        
'order'         => 10,
                                        
'desc'         => sprintf($mailfieldinstructiongettext("Phone number")))
        );
        return 
$options;
    }

    
/**
     *
     * Used in array_walk to trim the e-mail addresses
     * @param string $value
     */
    
static function trim_value(&$value) {
        
$value trim($value);
    }

}

/**
 * Retrieves the post field if it exists
 *
 * @param string $field
 * @param int $level
 * @return string
 */
function getField($field$level 3) {
    if (isset(
$_POST[$field])) {
        return 
sanitize($_POST[$field], $level);
    } else {
        return 
'';
    }
}

/**
 * Prints the mail contact form, handles checks and the mail sending. It uses Zenphoto's check for valid e-mail address and website URL and also supports CAPTCHA.
 * The contact form itself is a separate file and is located within the /contact_form/form.php so that it can be style as needed.
 *
 * @param string $subject_override set to override the subject.
 */
function printContactForm($subject_override '') {
    global 
$_zp_UTF8$_zp_captcha$_processing_post$_zp_current_admin_obj;
    
$error = array();
    if (isset(
$_POST['sendmail'])) {
        
$mailcontent = array();
        
$mailcontent['title'] = getField('title');
        
$mailcontent['name'] = getField('name');
        
$mailcontent['honeypot'] = getField('username');
        
$mailcontent['company'] = getField('company');
        
$mailcontent['street'] = getField('street');
        
$mailcontent['city'] = getField('city');
        
$mailcontent['state'] = getField('state');
        
$mailcontent['postal'] = getField('postal');
        
$mailcontent['country'] = getField('country');
        
$mailcontent['email'] = getField('email');
        
$mailcontent['website'] = getField('website');
        
$mailcontent['phone'] = getField('phone');
        
$mailcontent['subject'] = getField('subject');
        
$mailcontent['message'] = getField('message'1);

        
// if you want other required fields or less add/modify their checks here
        
if (getOption('contactform_title') == "required" && empty($mailcontent['title'])) {
            
$error[1] = gettext("a title");
        }
        if (
getOption('contactform_name') == "required" && empty($mailcontent['name'])) {
            
$error[2] = gettext("a name");
        }
        if (
getOption('contactform_company') == "required" && empty($mailcontent['company'])) {
            
$error[3] = gettext("a company");
        }
        if (
getOption('contactform_street') == "required" && empty($mailcontent['street'])) {
            
$error[4] = gettext("a street");
        }
        if (
getOption('contactform_city') == "required" && empty($mailcontent['city'])) {
            
$error[5] = gettext("a city");
        }
        if (
getOption('contactform_state') == "required" && empty($mailcontent['state'])) {
            
$error[5] = gettext("a state");
        }
        if (
getOption('contactform_postal') == "required" && empty($mailcontent['postal'])) {
            
$error[5] = gettext("a postal code");
        }
        if (
getOption('contactform_country') == "required" && empty($mailcontent['country'])) {
            
$error[6] = gettext("a country");
        }
        if (
getOption('contactform_email') == "required" && (empty($mailcontent['email']) || !is_valid_email_zp($mailcontent['email']))) {
            
$error[7] = gettext("a valid email address");
        }
        if (
getOption('contactform_website') == "required" && empty($mailcontent['website'])) {
            
$error[8] = gettext('a website');
        } else {
            if (!empty(
$mailcontent['website'])) {
                if (
substr($mailcontent['website'], 07) != "http://") {
                    
$mailcontent['website'] = "http://" $mailcontent['website'];
                }
            }
        }
        if (
getOption("contactform_phone") == "required" && empty($mailcontent['phone'])) {
            
$error[9] = gettext("a phone number");
        }
        if (empty(
$mailcontent['subject'])) {
            
$error[10] = gettext("a subject");
        }
        if (empty(
$mailcontent['message'])) {
            
$error[11] = gettext("a message");
        }

        
// CAPTCHA start
        
if (getOption("contactform_captcha")) {
            
$code_ok trim(sanitize(isset($_POST['code_h']) ? $_POST['code_h'] : NULL));
            
$code trim(sanitize(isset($_POST['code']) ? $_POST['code'] : NULL));
            if (!
$_zp_captcha->checkCaptcha($code$code_ok)) {
                
$error[5] = gettext("the correct CAPTCHA verification code");
            } 
// no ticket
        
}
        
// CAPTCHA end
        // If required fields are empty or not valide print note
        
if (count($error) != 0) {
            
?>
            <div class="errorbox">
                <h2>
                    <?php
                    $err 
$error;
                    switch (
count($err)) {
                        case 
1:
                            
printf(gettext('Please enter %s. Thanks.'), array_shift($err));
                            break;
                        case 
2:
                            
printf(gettext('Please enter %1$s and %2$s. Thanks.'), array_shift($err), array_shift($err));
                            break;
                        default:
                            
$list '<ul class="errorlist">';
                            foreach (
$err as $item) {
                                
$list .= '<li>' $item '</li>';
                            }
                            
$list .= '</ul>';
                            
printf(gettext('Please enter: %sThanks.'), $list);
                            break;
                    }
                    
?>
                </h2>
            </div>
            <?php
        
} else {
            
$mailaddress $mailcontent['email'];
            
$name $mailcontent['name'];
            
$subject $mailcontent['subject'] . " (" getBareGalleryTitle() . ")";
            
$message '';
            if (!empty(
$mailcontent['title'])) {
                
$message .= $mailcontent['title'] . "\n";
            }
            if (!empty(
$mailcontent['name'])) {
                
$message .= $mailcontent['name'] . "\n";
            }
            if (!empty(
$mailcontent['email'])) {
                
$message .= $mailcontent['email'] . "\n";
            }
            if (!empty(
$mailcontent['company'])) {
                
$message .= $mailcontent['company'] . "\n";
            }
            if (!empty(
$mailcontent['street'])) {
                
$message .= $mailcontent['street'] . "\n";
            }
            if (!empty(
$mailcontent['city'])) {
                
$message .= $mailcontent['city'] . "\n";
            }
            if (!empty(
$mailcontent['state'])) {
                
$message .= $mailcontent['state'] . "\n";
            }
            if (!empty(
$mailcontent['postal'])) {
                
$message .= $mailcontent['postal'] . "\n";
            }
            if (!empty(
$mailcontent['country'])) {
                
$message .= $mailcontent['country'] . "\n";
            }
            if (!empty(
$mailcontent['phone'])) {
                
$message .= $mailcontent['phone'] . "\n";
            }
            if (!empty(
$mailcontent['website'])) {
                
$message .= $mailcontent['website'] . "\n";
            }
            
$message .= "\n\n" $mailcontent['message'];
            
$message .= "\n\n";

            if (
getOption('contactform_confirm')) {
                echo 
get_language_string(getOption("contactform_confirmtext"));
                if (
getOption('contactform_sendcopy'))
                    echo 
get_language_string(getOption("contactform_sendcopy_text"));
                
?>
                <div>
                    <?PHP
                    $_processing_post 
true;
                    include(
getPlugin('contact_form/form.php'true));
                    
?>
                    <form id="confirm" action="<?php echo html_encode(getRequestURI()); ?>" method="post" accept-charset="UTF-8" style="float: left">
                        <input type="hidden" id="confirm" name="confirm" value="confirm" />
                        <input type="hidden" id="name" name="name"    value="<?php echo html_encode($name); ?>" />
                        <input type="hidden" id="subject" name="subject"    value="<?php echo html_encode($subject); ?>" />
                        <input type="hidden" id="message"    name="message" value="<?php echo html_encode($message); ?>" />
                        <input type="hidden" id="mailaddress" name="mailaddress" value="<?php echo html_encode($mailaddress); ?>" />
                        <input type="submit" value="<?php echo gettext("Confirm"); ?>" />
                    </form>
                    <form id="discard" action="<?php echo html_encode(getRequestURI()); ?>" method="post" accept-charset="UTF-8">
                        <input type="hidden" id="discard" name="discard" value="discard" />
                        <input type="submit" value="<?php echo gettext("Discard"); ?>" />
                    </form>
                </div>
                <?php
                
return;
            } else {
                
// simulate confirmation action
                
$_POST['confirm'] = true;
                
$_POST['subject'] = $subject;
                
$_POST['message'] = $message;
                
$_POST['mailaddress'] = $mailaddress;
                
$_POST['name'] = $name;
            }
        }
    }
    if (isset(
$_POST['confirm'])) {
        
$subject sanitize($_POST['subject']);
        
$message sanitize($_POST['message'], 1);
        
$mailaddress sanitize($_POST['mailaddress']);
        
$name sanitize($_POST['name']);
        
$mailinglist explode(';'getOption("contactform_mailaddress"));
        if (
getOption('contactform_sendcopy')) {
            
$sendcopy = array($name => $mailaddress);
        } else {
            
$sendcopy NULL;
        }

        
// If honeypot was triggered, silently don't send the message
        
if (empty($mailcontent['honeypot'])) {
            
$err_msg zp_mail($subject$message$mailinglist$sendcopyNULL, array($name => $mailaddress));
        }
        if (
$err_msg) {
            
$msgs explode('.'$err_msg);
            unset(
$msgs[0]);     //    the "mail send failed" text
            
unset($msgs[count($msgs)]); //    a trailing empty one
            
?>
            <div class="errorbox">
                <strong><?php echo ngettext('Error sending mail:''Errors sending mail:'count($msgs)); ?></strong>
                <ul class="errorlist">
                    <?php
                    
foreach ($msgs as $line) {
                        echo 
'<li>' trim($line) . '</li>';
                    }
                    
?>
                </ul>
            </div>
            <?php
        
} else {
            echo 
get_language_string(getOption("contactform_thankstext"));
        }
        echo 
'<p><a href="?again">' get_language_string(getOption('contactform_newmessagelink')) . '</a></p>';
    } else {
        if (
count($error) <= 0) {
            if (
zp_loggedin()) {
                
$mailcontent = array('title'         => '''name'         => $_zp_current_admin_obj->getName(), 'company'     => '''street'     => '''city'         => '''state'         => '',
                                
'country'     => '''postal'     => '''email'         => $_zp_current_admin_obj->getEmail(), 'website'     => '''phone'         => '',
                                
'subject'     => $subject_override'message'     => '''honeypot' => '');
                if (
extensionEnabled('comment_form')) {
                    
$address getSerializedArray($_zp_current_admin_obj->getCustomData());
                    foreach (
$address as $key => $field) {
                        
$mailcontent[$key] = $field;
                    }
                }
            } else {
                
$mailcontent = array('title'         => '''name'         => '''company'     => '''street'     => '''city'         => '''state'         => '''country'     => '''email'         => '',
                                
'postal'     => '''website'     => '''phone'         => '''subject'     => $subject_override'message'     => '''honeypot' => '');
            }
        }
        echo 
get_language_string(getOption("contactform_introtext"));
        if (
getOption('contactform_sendcopy'))
            echo 
get_language_string(getOption("contactform_sendcopy_text"));
        
$_processing_post false;
        include(
getPlugin('contact_form/form.php'true));
    }
}

/**
 * Helper function that checks if a field should be shown ("required" or "show") or omitted ("ommitt").
 * Only for the fields set by radioboxes.
 *
 * @param string $option The option value
 * @return bool
 */
function showOrNotShowField($option) {
    return 
$option == "required" || $option == "show";
}

/**
 * Helper function that checks if the field is a required one. If it returns '*" to be appended to the field name as an indicator.
 * Not for the CAPTCHA field that is always required if shown...
 *
 * @param string $option the option value
 * @return string
 */
function checkRequiredField($option) {
    global 
$_processing_post;
    if (
$option == "required" && !$_processing_post) {
        return 
"<strong>*</strong>";
    } else {
        return 
"";
    }
}
?>