-
Notifications
You must be signed in to change notification settings - Fork 0
/
CF7DBPlugin.php
executable file
·1270 lines (1120 loc) · 55.4 KB
/
CF7DBPlugin.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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
"Contact Form to Database" Copyright (C) 2011-2014 Michael Simpson (email : [email protected])
This file is part of Contact Form to Database.
Contact Form to Database is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Contact Form to Database is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Contact Form to Database.
If not, see <http://www.gnu.org/licenses/>.
*/
require_once('CF7DBPluginLifeCycle.php');
require_once('CFDBShortcodeTable.php');
require_once('CFDBShortcodeDataTable.php');
require_once('CFDBShortcodeValue.php');
require_once('CFDBShortcodeCount.php');
require_once('CFDBShortcodeJson.php');
require_once('CFDBShortcodeHtml.php');
require_once('CFDBShortcodeExportUrl.php');
require_once('CFDBShortCodeSavePostData.php');
require_once('CFDBDeobfuscate.php');
/**
* Implementation for CF7DBPluginLifeCycle.
*/
class CF7DBPlugin extends CF7DBPluginLifeCycle {
public function getPluginDisplayName() {
return 'Contact Form to DB Extension';
}
protected function getMainPluginFileName() {
return 'contact-form-7-db.php';
}
public function getOptionMetaData() {
return array(
//'_version' => array('Installed Version'), // For testing upgrades
//'Donated' => array(__('I have donated to this plugin', 'contact-form-7-to-database-extension'), 'false', 'true'),
'IntegrateWithCF7' => array(__('Capture form submissions from Contact Form 7 Plugin', 'contact-form-7-to-database-extension'), 'true', 'false'),
'IntegrateWithFSCF' => array(__('Capture form submissions from Fast Secure Contact Form Plugin', 'contact-form-7-to-database-extension'), 'true', 'false'),
'IntegrateWithJetPackContactForm' => array(__('Capture form submissions from JetPack Contact Form', 'contact-form-7-to-database-extension'), 'true', 'false'),
'IntegrateWithGravityForms' => array(__('Capture form submissions from Gravity Forms', 'contact-form-7-to-database-extension'), 'true', 'false'),
'CanSeeSubmitData' => array(__('Can See Submission data', 'contact-form-7-to-database-extension'),
'Administrator', 'Editor', 'Author', 'Contributor', 'Subscriber', 'Anyone'),
'CanSeeSubmitDataViaShortcode' => array(__('Can See Submission when using shortcodes', 'contact-form-7-to-database-extension'),
'Administrator', 'Editor', 'Author', 'Contributor', 'Subscriber', 'Anyone'),
'CanChangeSubmitData' => array(__('Can Edit/Delete Submission data', 'contact-form-7-to-database-extension'),
'Administrator', 'Editor', 'Author', 'Contributor', 'Subscriber', 'Anyone'),
'FunctionsInShortCodes' => array(__('Allow Any Function in Short Codes', 'contact-form-7-to-database-extension') .
' <a target="_blank" href="http://cfdbplugin.com/?page_id=1073">' . __('(Creates a security hole)', 'contact-form-7-to-database-extension') . '</a>', 'false', 'true'),
'AllowRSS' => array(__('Allow RSS URLs', 'contact-form-7-to-database-extension') .
' <a target="_blank" href="http://cfdbplugin.com/?p=918">' . __('(Creates a security hole)', 'contact-form-7-to-database-extension') . '</a>', 'false', 'true'),
'Timezone' => array(__('Timezone to capture Submit Time. Blank will use WordPress Timezone setting. <a target="_blank" href="http://www.php.net/manual/en/timezones.php">Options</a>', 'contact-form-7-to-database-extension')),
'MaxRows' => array(__('Maximum number of rows to retrieve from the DB for the Admin display', 'contact-form-7-to-database-extension')),
'MaxVisibleRows' => array(__('#Rows (of maximum above) visible in the Admin datatable', 'contact-form-7-to-database-extension')),
'UseDataTablesJS' => array(__('Use Javascript-enabled tables in Admin Database page', 'contact-form-7-to-database-extension'), 'true', 'false'),
'ShowLineBreaksInDataTable' => array(__('Show line breaks in submitted data table', 'contact-form-7-to-database-extension'), 'true', 'false'),
'UseCustomDateTimeFormat' => array(__('Use Custom Date-Time Display Format (below)', 'contact-form-7-to-database-extension'), 'true', 'false'),
'SubmitDateTimeFormat' => array('<a target="_blank" href="http://php.net/manual/en/function.date.php">' . __('Date-Time Display Format', 'contact-form-7-to-database-extension') . '</a>'),
'ShowFileUrlsInExport' => array(__('Export URLs instead of file names for uploaded files', 'contact-form-7-to-database-extension'), 'false', 'true'),
'NoSaveFields' => array(__('Do not save <u>fields</u> in DB named (comma-separated list, no spaces)', 'contact-form-7-to-database-extension')),
'NoSaveForms' => array(__('Do not save <u>forms</u> in DB named (comma-separated list, no spaces)', 'contact-form-7-to-database-extension')),
'SaveCookieData' => array(__('Save Cookie Data with Form Submissions', 'contact-form-7-to-database-extension'), 'false', 'true'),
'SaveCookieNames' => array(__('Save only cookies in DB named (comma-separated list, no spaces, and above option must be set to true)', 'contact-form-7-to-database-extension')),
'ShowQuery' => array(__('Show the query used to display results', 'contact-form-7-to-database-extension'), 'false', 'true'),
'DropOnUninstall' => array(__('Drop this plugin\'s Database table on uninstall', 'contact-form-7-to-database-extension'), 'false', 'true'),
//'SubmitTableNameOverride' => array(__('Use this table to store submission data rather than the default (leave blank for default)', 'contact-form-7-to-database-extension'))
);
}
protected function getOptionValueI18nString($optionValue) {
switch ($optionValue) {
case 'true':
return __('true', 'contact-form-7-to-database-extension');
case 'false':
return __('false', 'contact-form-7-to-database-extension');
case 'Administrator':
return __('Administrator', 'contact-form-7-to-database-extension');
case 'Editor':
return __('Editor', 'contact-form-7-to-database-extension');
case 'Author':
return __('Author', 'contact-form-7-to-database-extension');
case 'Contributor':
return __('Contributor', 'contact-form-7-to-database-extension');
case 'Subscriber':
return __('Subscriber', 'contact-form-7-to-database-extension');
case 'Anyone':
return __('Anyone', 'contact-form-7-to-database-extension');
}
return $optionValue;
}
public function upgrade() {
global $wpdb;
$upgradeOk = true;
$savedVersion = $this->getVersionSaved();
if (!$savedVersion) { // Prior to storing version in options (pre 1.2)
// DB Schema Upgrade to support i18n using UTF-8
$tableName = $this->getSubmitsTableName();
$wpdb->show_errors();
$upgradeOk &= false !== $wpdb->query("ALTER TABLE `$tableName` MODIFY form_name VARCHAR(127) CHARACTER SET utf8");
$upgradeOk &= false !== $wpdb->query("ALTER TABLE `$tableName` MODIFY field_name VARCHAR(127) CHARACTER SET utf8");
$upgradeOk &= false !== $wpdb->query("ALTER TABLE `$tableName` MODIFY field_value longtext CHARACTER SET utf8");
$wpdb->hide_errors();
// Remove obsolete options
$this->deleteOption('_displayName');
$this->deleteOption('_metatdata');
$savedVersion = '1.0';
}
if ($this->isVersionLessThan($savedVersion, '2.4.1')) {
if ($this->isVersionLessThan($savedVersion, '2.2')) {
if ($this->isVersionLessThan($savedVersion, '2.0')) {
if ($this->isVersionLessThan($savedVersion, '1.8')) {
if ($this->isVersionLessThan($savedVersion, '1.4.5')) {
if ($this->isVersionLessThan($savedVersion, '1.3.1')) {
// Version 1.3.1 update
$tableName = $this->getSubmitsTableName();
$wpdb->show_errors();
$upgradeOk &= false !== $wpdb->query("ALTER TABLE `$tableName` ADD COLUMN `field_order` INTEGER");
$upgradeOk &= false !== $wpdb->query("ALTER TABLE `$tableName` ADD COLUMN `file` LONGBLOB");
$upgradeOk &= false !== $wpdb->query("ALTER TABLE `$tableName` ADD INDEX `submit_time_idx` ( `submit_time` )");
$wpdb->hide_errors();
}
// Version 1.4.5 update
if (!$this->getOption('CanSeeSubmitDataViaShortcode')) {
$this->addOption('CanSeeSubmitDataViaShortcode', 'Anyone');
}
// Misc
$submitDateTimeFormat = $this->getOption('SubmitDateTimeFormat');
if (!$submitDateTimeFormat || $submitDateTimeFormat == '') {
$this->addOption('SubmitDateTimeFormat', 'Y-m-d H:i:s P');
}
}
// Version 1.8 update
if (!$this->getOption('MaxRows')) {
$this->addOption('MaxRows', '100');
}
$tableName = $this->getSubmitsTableName();
$wpdb->show_errors();
/* $upgradeOk &= false !== */
$wpdb->query("ALTER TABLE `$tableName` MODIFY COLUMN submit_time DECIMAL(16,4) NOT NULL");
/* $upgradeOk &= false !== */
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `form_name_idx` ( `form_name` )");
/* $upgradeOk &= false !== */
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `form_name_field_name_idx` ( `form_name`, `field_name` )");
$wpdb->hide_errors();
}
// Version 2.0 upgrade
$tableName = $this->getSubmitsTableName();
$oldTableName = $this->prefixTableName('SUBMITS');
@$wpdb->query("RENAME TABLE `$oldTableName` TO `$tableName`");
}
// Version 2.2 upgrade
$tableName = $this->getSubmitsTableName();
$wpdb->query("ALTER TABLE `$tableName` DROP INDEX `form_name_field_name_idx`");
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `field_name_idx` ( `field_name` )");
}
// Version 2.4.1 upgrade
$tableName = $this->getSubmitsTableName();
$oldTableName = strtolower($tableName);
$wpdb->query("RENAME TABLE '$oldTableName' TO '$tableName'");
}
// Post-upgrade, set the current version in the options
$codeVersion = $this->getVersion();
if ($upgradeOk && $savedVersion != $codeVersion) {
$this->saveInstalledVersion();
}
}
/**
* Called by install()
* You should: Prefix all table names with $wpdb->prefix
* Also good: additionally use the prefix for this plugin:
* $table_name = $wpdb->prefix . $this->prefix('MY_TABLE');
* @return void
*/
protected function installDatabaseTables() {
global $wpdb;
$tableName = $this->getSubmitsTableName();
$wpdb->show_errors();
$wpdb->query("CREATE TABLE IF NOT EXISTS `$tableName` (
`submit_time` DECIMAL(16,4) NOT NULL,
`form_name` VARCHAR(127) CHARACTER SET utf8,
`field_name` VARCHAR(127) CHARACTER SET utf8,
`field_value` LONGTEXT CHARACTER SET utf8,
`field_order` INTEGER,
`file` LONGBLOB)");
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `submit_time_idx` ( `submit_time` )");
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `form_name_idx` ( `form_name` )");
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `field_name_idx` ( `field_name` )");
$wpdb->hide_errors();
}
/**
* Called by uninstall()
* You should: Prefix all table names with $wpdb->prefix
* Also good: additionally use the prefix for this plugin:
* $table_name = $wpdb->prefix . $this->prefix('MY_TABLE');
* @return void
*/
protected function unInstallDatabaseTables() {
if ('true' == $this->getOption('DropOnUninstall', 'false')) {
global $wpdb;
$tableName = $this->getSubmitsTableName();
$wpdb->query("DROP TABLE IF EXISTS `$tableName`");
// $tables = array('SUBMITS');
// foreach ($tables as $aTable) {
// $tableName = $this->prefixTableName($aTable);
// $wpdb->query("DROP TABLE IF EXISTS `$tableName`");
// }
}
}
protected function initOptions() {
// By default ignore CF7 metadata fields
$this->addOption('NoSaveFields', '/.*wpcf7.*/,_wpnonce');
}
public function add_wpcf7_noSaveFields() {
$nsfArray = explode(',', $this->getOption('NoSaveFields',''));
$wpcf7Fields = array('/.*wpcf7.*/', '_wpnonce');
foreach ($wpcf7Fields as $aWpcf7) {
if (!in_array($aWpcf7, $nsfArray)) {
$nsfArray[] = $aWpcf7;
}
}
$this->updateOption('NoSaveFields', implode(',', $nsfArray));
}
public function delete_wpcf7_fields($formName) {
global $wpdb;
$wpdb->query($wpdb->prepare(
'delete from `' . $this->getSubmitsTableName() .
"` where `form_name` = '%s' and `field_name` in ('_wpcf7', '_wpcf7_version', '_wpcf7_unit_tag', '_wpnonce', '_wpcf7_is_ajax_call', '_wpcf7_captcha_challenge_captcha')",
$formName));
}
public function addActionsAndFilters() {
// Admin notices
add_action('admin_notices', array(&$this, 'addAdminNotices'));
// Add the Admin Config page for this plugin
// Add Config page as a top-level menu item on the Admin page
add_action('admin_menu', array(&$this, 'createAdminMenu'));
// Add Database Options page
add_action('admin_menu', array(&$this, 'addSettingsSubMenuPage'));
// Hook into Contact Form 7 when a form post is made to save the data to the DB
if ($this->getOption('IntegrateWithCF7', 'true') == 'true') {
add_action('wpcf7_before_send_mail', array(&$this, 'saveFormData'));
}
// Hook into Fast Secure Contact Form
if ($this->getOption('IntegrateWithFSCF', 'true') == 'true') {
add_action('fsctf_mail_sent', array(&$this, 'saveFormData'));
add_action('fsctf_menu_links', array(&$this, 'fscfMenuLinks'));
}
// Hook into JetPack Contact Form
if ($this->getOption('IntegrateWithJetPackContactForm', 'true') == 'true') {
add_action('grunion_pre_message_sent', array(&$this, 'saveJetPackContactFormData'), 10, 3);
}
// Hook into Gravity Forms
if ($this->getOption('IntegrateWithGravityForms', 'true') == 'true') {
add_action('gform_after_submission', array(&$this, 'saveGravityFormData'), 10, 2);
}
// Have our own hook to receive form submissions independent of other plugins
add_action('cfdb_submit', array(&$this, 'saveFormData'));
// Register Export URL
add_action('wp_ajax_nopriv_cfdb-export', array(&$this, 'ajaxExport'));
add_action('wp_ajax_cfdb-export', array(&$this, 'ajaxExport'));
// Register Get File URL
add_action('wp_ajax_nopriv_cfdb-file', array(&$this, 'ajaxFile'));
add_action('wp_ajax_cfdb-file', array(&$this, 'ajaxFile'));
// Register Get Form Fields URL
add_action('wp_ajax_nopriv_cfdb-getFormFields', array(&$this, 'ajaxGetFormFields'));
add_action('wp_ajax_cfdb-getFormFields', array(&$this, 'ajaxGetFormFields'));
// Register Validate submit_time value (used in short code builder page)
add_action('wp_ajax_nopriv_cfdb-validate-submit_time', array(&$this, 'ajaxValidateSubmitTime'));
add_action('wp_ajax_cfdb-validate-submit_time', array(&$this, 'ajaxValidateSubmitTime'));
// Login via Ajax instead of login form
add_action('wp_ajax_nopriv_cfdb-login', array(&$this, 'ajaxLogin'));
add_action('wp_ajax_cfdb-login', array(&$this, 'ajaxLogin'));
// Shortcode to add a table to a page
$sc = new CFDBShortcodeTable();
$sc->register(array('cf7db-table', 'cfdb-table')); // cf7db-table is deprecated
// Shortcode to add a DataTable
$sc = new CFDBShortcodeDataTable();
$sc->register('cfdb-datatable');
// Shortcode to add a JSON to a page
$sc = new CFDBShortcodeJson();
$sc->register('cfdb-json');
// Shortcode to add a value (just text) to a page
$sc = new CFDBShortcodeValue();
$sc->register('cfdb-value');
// Shortcode to add entry count to a page
$sc = new CFDBShortcodeCount();
$sc->register('cfdb-count');
// Shortcode to add values wrapped in user-defined html
$sc = new CFDBShortcodeHtml();
$sc->register('cfdb-html');
// Shortcode to generate Export URLs
$sc = new CFDBShortcodeExportUrl();
$sc->register('cfdb-export-link');
// Shortcode to save data from non-CF7/FSCF forms
$sc = new CFDBShortCodeSavePostData();
$sc->register('cfdb-save-form-post');
}
public function ajaxLogin() {
// Login the user
$key = '3M#v$-.u';
$creds = array();
$user = null;
$password = null;
if (!empty($_REQUEST['l'])) {
$userPass = CFDBDeobfuscate::deobfuscateHexString($_REQUEST['l'], $key);
$userPass = explode('/', $userPass, 2);
$count = count($userPass);
if ($count >= 1) {
$user = $userPass[0];
if ($count > 1) {
$password = $userPass[1];
}
}
}
if (!$user) {
$user = !empty($_REQUEST['username']) ? $_REQUEST['username'] : null;
}
if (!$password) {
$password = !empty($_REQUEST['password']) ? $_REQUEST['password'] : null;
}
$creds['user_login'] = $user;
$creds['user_password'] = $password;
$creds['remember'] = !empty($_REQUEST['rememberme']) ? $_REQUEST['rememberme'] : null;
$user = wp_signon($creds, false);
if (is_wp_error($user)) {
echo $user->get_error_message();
die;
}
wp_set_current_user($user->ID);
// User is logged in. Now do the requested action
if (!empty($_REQUEST['cfdb-action'])) {
switch ($_REQUEST['cfdb-action']) {
case 'cfdb-export':
if (!$this->canUserDoRoleOption('CanSeeSubmitData')) {
echo '<strong>ERROR</strong>: user ' . $_REQUEST['username'] . ' is not authorized to export CFDB data';
die;
}
$this->ajaxExport();
break;
default:
break;
}
}
die;
}
public function ajaxExport() {
require_once('CF7DBPluginExporter.php');
CF7DBPluginExporter::doExportFromPost();
die();
}
public function ajaxFile() {
require_once('CFDBDie.php');
if (!$this->canUserDoRoleOption('CanSeeSubmitData') &&
!$this->canUserDoRoleOption('CanSeeSubmitDataViaShortcode')) {
CFDBDie::wp_die(__('You do not have sufficient permissions to access this page.', 'contact-form-7-to-database-extension'));
}
$submitTime = $_REQUEST['s'];
$formName = $_REQUEST['form'];
$fieldName = $_REQUEST['field'];
if (!$submitTime || !$formName || !$fieldName) {
CFDBDie::wp_die(__('Missing form parameters', 'contact-form-7-to-database-extension'));
}
$fileInfo = (array)$this->getFileFromDB($submitTime, $formName, $fieldName);
if ($fileInfo == null) {
CFDBDie::wp_die(__('No such file.', 'contact-form-7-to-database-extension'));
}
require_once('CFDBMimeTypeExtensions.php');
$mimeMap = new CFDBMimeTypeExtensions();
$mimeType = $mimeMap->get_type_by_filename($fileInfo[0]);
if ($mimeType) {
header('Content-Type: ' . $mimeType);
header("Content-Disposition: inline; filename=\"$fileInfo[0]\"");
}
else {
header("Content-Disposition: attachment; filename=\"$fileInfo[0]\"");
}
echo($fileInfo[1]);
die();
}
public function ajaxGetFormFields() {
if (!$this->canUserDoRoleOption('CanSeeSubmitData') || !isset($_REQUEST['form'])) {
die();
}
header('Content-Type: application/json; charset=UTF-8');
header("Pragma: no-cache");
header("Expires: Thu, 01 Jan 1970 00:00:00 GMT");
global $wpdb;
$tableName = $this->getSubmitsTableName();
$formName = $_REQUEST['form'];
$rows = $wpdb->get_results("SELECT DISTINCT `field_name` FROM `$tableName` WHERE `form_name` = '$formName' ORDER BY field_order");
$fields = array();
if (!empty($rows)) {
$fields[] = 'Submitted';
foreach ($rows as $aRow) {
$fields[] = $aRow->field_name;
}
$fields[] = 'submit_time';
}
echo json_encode($fields);
die();
}
public function ajaxValidateSubmitTime() {
header('Content-Type: text/plain; charset=UTF-8');
header("Pragma: no-cache");
header("Expires: Thu, 01 Jan 1970 00:00:00 GMT");
$submitTime = $_REQUEST['submit_time'];
$invalid = false;
$time = $submitTime;
if (!is_numeric($submitTime)) {
if (version_compare(phpversion(), '5.1.0') == -1) {
$invalid = -1;
}
$this->setTimezone();
$time = strtotime($submitTime);
}
if ($invalid === $time) {
_e('Invalid: ', 'contact-form-7-to-database-extension');
}
else {
_e('Valid: ', 'contact-form-7-to-database-extension');
}
echo "'$submitTime' = $time";
if ($invalid !== $time) {
echo " = " . $this->formatDate($time);
}
die();
}
public function addSettingsSubMenuPage() {
// $this->requireExtraPluginFiles();
// $displayName = $this->getPluginDisplayName();
// add_submenu_page('wpcf7', //$this->getDBPageSlug(),
// $displayName . ' Options',
// __('Database Options', 'contact-form-7-to-database-extension'),
// 'manage_options',
// get_class($this) . 'Settings',
// array(&$this, 'settingsPage'));
}
/**
* Function courtesy of Mike Challis, author of Fast Secure Contact Form.
* Displays Admin Panel links in FSCF plugin menu
* @return void
*/
public function fscfMenuLinks() {
$displayName = $this->getPluginDisplayName();
echo '
<p>
' . $displayName .
' | <a href="admin.php?page=' . $this->getDBPageSlug() . '">' .
__('Database', 'contact-form-7-to-database-extension') .
'</a> | <a href="admin.php?page=CF7DBPluginSettings">' .
__('Database Options', 'contact-form-7-to-database-extension') .
'</a> | <a href="admin.php?page=' . $this->getShortCodeBuilderPageSlug() . '">' .
__('Build Short Code', 'contact-form-7-to-database-extension') .
'</a> | <a href="http://cfdbplugin.com/">' .
__('Reference', 'contact-form-7-to-database-extension') . '</a>
</p>
';
}
/**
* Callback from Contact Form 7. CF7 passes an object with the posted data which is inserted into the database
* by this function.
* Also callback from Fast Secure Contact Form
* @param $cf7 WPCF7_ContactForm|object the former when coming from CF7, the latter $fsctf_posted_data object variable
* if coming from FSCF
* @return bool
*/
public function saveFormData($cf7) {
try {
$time = function_exists('microtime') ? microtime(true) : time();
$ip = (isset($_SERVER['X_FORWARDED_FOR'])) ? $_SERVER['X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR'];
// Set up to allow all this data to be filtered
$cf7->submit_time = $time;
$cf7->ip = $ip;
$user = null;
if (is_user_logged_in()) {
$current_user = wp_get_current_user(); // WP_User
$user = $current_user->user_login;
}
$cf7->user = $user;
try {
$newCf7 = apply_filters('cfdb_form_data', $cf7);
if ($newCf7 && is_object($newCf7)) {
$cf7 = $newCf7;
$time = $cf7->submit_time;
$ip = $cf7->ip;
$user = $cf7->user;
}
else {
//error_log('CFDB Error: No or invalid value returned from "cfdb_form_data" filter: ' .
// print_r($newCf7, true));
// Returning null from cfdb_form_data is a way to stop from saving the form
return true;
}
// Get title after applying filter
$title = stripslashes($cf7->title);
if ($this->fieldMatches($title, $this->getNoSaveForms())) {
return true; // Don't save in DB
}
}
catch (Exception $ex) {
error_log(sprintf('CFDB Error: %s:%s %s %s', $ex->getFile(), $ex->getLine(), $ex->getMessage(), $ex->getTraceAsString()));
}
$tableName = $this->getSubmitsTableName();
$parametrizedQuery = "INSERT INTO `$tableName` (`submit_time`, `form_name`, `field_name`, `field_value`, `field_order`) VALUES (%s, %s, %s, %s, %s)";
$parametrizedFileQuery = "INSERT INTO `$tableName` (`submit_time`, `form_name`, `field_name`, `field_value`, `field_order`, `file`) VALUES (%s, %s, %s, %s, %s, %s)";
$order = 0;
$noSaveFields = $this->getNoSaveFields();
$foundUploadFiles = array();
global $wpdb;
// $hasDropBox = $this->getOption('dropbox');
// if ($hasDropBox) {
// require_once('CFDBShortCodeSavePostData.php');
// }
foreach ($cf7->posted_data as $name => $value) {
$nameClean = stripslashes($name);
if ($this->fieldMatches($nameClean, $noSaveFields)) {
continue; // Don't save in DB
}
$value = is_array($value) ? implode($value, ', ') : $value;
$valueClean = stripslashes($value);
// Check if this is a file upload field
$didSaveFile = false;
if ($cf7->uploaded_files && isset($cf7->uploaded_files[$nameClean])) {
$foundUploadFiles[] = $nameClean;
$filePath = $cf7->uploaded_files[$nameClean];
if ($filePath) {
$content = file_get_contents($filePath);
$didSaveFile = $wpdb->query($wpdb->prepare($parametrizedFileQuery,
$time,
$title,
$nameClean,
$valueClean,
$order++,
$content));
if (!$didSaveFile) {
error_log("CFDB Error: could not save uploaded file, field=$nameClean, file=$filePath");
}
}
}
if (!$didSaveFile) {
$wpdb->query($wpdb->prepare($parametrizedQuery,
$time,
$title,
$nameClean,
$valueClean,
$order++));
}
}
// Since Contact Form 7 version 3.1, it no longer puts the names of the files in $cf7->posted_data
// So check for them only only in $cf7->uploaded_files
// Update: This seems to have been reversed back to the original in Contact Form 7 3.2 or 3.3
if ($cf7->uploaded_files && is_array($cf7->uploaded_files)) {
foreach ($cf7->uploaded_files as $field => $filePath) {
if (!in_array($field, $foundUploadFiles) &&
$filePath &&
!$this->fieldMatches($field, $noSaveFields)) {
$fileName = basename($filePath);
$content = file_get_contents($filePath);
$didSaveFile = $wpdb->query($wpdb->prepare($parametrizedFileQuery,
$time,
$title,
$field,
$fileName,
$order++,
$content));
if (!$didSaveFile) {
error_log("CFDB Error: could not save uploaded file, field=$field, file=$filePath");
}
}
}
}
// Save Cookie data if that option is true
if ($this->getOption('SaveCookieData', 'false') == 'true' && is_array($_COOKIE)) {
$saveCookies = $this->getSaveCookies();
foreach ($_COOKIE as $cookieName => $cookieValue) {
if (empty($saveCookies) || $this->fieldMatches($cookieName, $saveCookies)) {
$wpdb->query($wpdb->prepare($parametrizedQuery,
$time,
$title,
'Cookie ' . $cookieName,
$cookieValue,
$order++));
}
}
}
// If the submitter is logged in, capture his id
if ($user) {
$order = ($order < 9999) ? 9999 : $order + 1; // large order num to try to make it always next-to-last
$wpdb->query($wpdb->prepare($parametrizedQuery,
$time,
$title,
'Submitted Login',
$user,
$order));
}
// Capture the IP Address of the submitter
$order = ($order < 10000) ? 10000 : $order + 1; // large order num to try to make it always last
$wpdb->query($wpdb->prepare($parametrizedQuery,
$time,
$title,
'Submitted From',
$ip,
$order));
}
catch (Exception $ex) {
error_log(sprintf('CFDB Error: %s:%s %s %s', $ex->getFile(), $ex->getLine(), $ex->getMessage(), $ex->getTraceAsString()));
}
// Indicate success to WordPress so it continues processing other unrelated hooks.
return true;
}
/**
* @param $fieldName string
* @param $patternsArray array
* @return boolean true if $fieldName is in $patternsArray or matches any element of it that is a regex
*/
public function fieldMatches($fieldName, $patternsArray) {
if (is_array($patternsArray)) {
foreach($patternsArray as $pattern) {
if ($fieldName == $pattern) {
return true;
}
if (strncmp($pattern, '/', 1) == 0) {
if (@preg_match($pattern , $fieldName)) {
return true;
}
}
}
}
return false;
}
/**
* @param $post_id int
* @param $all_values array
* @param $extra_values array
* @return bool
*/
public function saveJetPackContactFormData($post_id, $all_values, $extra_values) {
// error_log('POST=' . print_r($_POST, true));
// error_log('$all_values=' . print_r($all_values, true));
// error_log('$extra_values=' . print_r($extra_values, true));
$title = 'JetPack Contact Form';
if (isset($_POST['contact-form-id'])) {
$title .= ' ' . $_POST['contact-form-id'];
//$all_values['contact-form-id'] = $_POST['contact-form-id'];
}
else {
$title .= ' ' . $post_id;
}
$all_values['post_id'] = $post_id;
$data = (object) array(
'title' => $title,
'posted_data' => $all_values,
'uploaded_files' => null);
return $this->saveFormData($data);
}
/**
* http://www.gravityhelp.com/documentation/page/Gform_after_submission
* @param $entry Entry Object The entry that was just created.
* http://www.gravityhelp.com/documentation/page/Entry_Object
* @param $form Form Object The current form
* http://www.gravityhelp.com/documentation/page/Form_Object
* @return bool
*/
public function saveGravityFormData($entry, $form) {
//error_log('Form Definition: ' . print_r($form, true)); // debug
//error_log('Entry Definition: ' . print_r($entry, true)); // debug
$postedData = array();
$uploadFiles = array();
// Iterate through the field definitions and get their values
if (! is_array($form['fields'])) {
return true;
}
foreach ($form['fields'] as $field) {
if (! is_array($field)) {
continue;
}
$fieldName = $field['label'];
if (!empty($field['inputs']) && is_array($field['inputs'])) {
// This is a multi-input field
if ($field['type'] == 'checkbox') {
$values = array();
foreach ($field['inputs'] as $input) {
$inputId = strval($input['id']); // Need string value of number like '1.3'
if (! empty($entry[$inputId])) {
$values[] = $entry[$inputId];
}
}
$postedData[$fieldName] = implode(',', $values);
}
else {
foreach ($field['inputs'] as $input) {
$inputId = strval($input['id']); // Need string value of number like '1.3'
$label = $input['label']; // Assumption: all inputs have diff labels
$effectiveFieldName = $fieldName;
if (!empty($label)) {
$effectiveFieldName = $fieldName . ' ' . $label;
}
$postedData[$effectiveFieldName] = $entry[$inputId];
}
}
}
else {
$fieldId = $field['id'];
switch ($field['type']) {
case 'list' :
// List - value is serialized array
$valueArray = @unserialize($entry[$fieldId]);
if (is_array($valueArray)) {
$postedData[$fieldName] = implode(',',$valueArray);
}
else {
$postedData[$fieldName] = $entry[$fieldId];
}
break;
case 'fileupload':
// File Upload - value is file URL
// http://<SITE>/wp-content/uploads/gravity_forms/<PATH>/<FILE>
$url = $entry[$fieldId];
$fileName = basename($url);
$postedData[$fieldName] = $fileName;
$filePath = ABSPATH . substr($url, strlen(get_site_url()));
$uploadFiles[$fieldName] = $filePath;
break;
default:
$postedData[$fieldName] = $entry[$fieldId];
break;
}
}
}
// Other form metadata
$paymentMetaData = array(
//'currency',
'payment_status', 'payment_date',
'transaction_id', 'payment_amount', 'payment_method',
'is_fulfilled', 'transaction_type');
foreach ($paymentMetaData as $pmt) {
$hasPaymentInfo = false;
if (! empty($entry[$pmt])) {
$postedData[$pmt] = $entry[$pmt];
$hasPaymentInfo = true;
}
if ($hasPaymentInfo && ! empty($entry['currency'])) {
// It seems currency is always set but only meaningful
// if the other payment info is set.
$postedData['currency'] = $entry['currency'];
}
}
$data = (object) array(
'title' => $form['title'],
'posted_data' => $postedData,
'uploaded_files' => $uploadFiles);
return $this->saveFormData($data);
}
/**
* @param $time string form submit time
* @param $formName string form name
* @param $fieldName string field name (should be an upload file field)
* @return array of (file-name, file-contents) or null if not found
*/
public function getFileFromDB($time, $formName, $fieldName) {
global $wpdb;
$tableName = $this->getSubmitsTableName();
$parametrizedQuery = "SELECT `field_value`, `file` FROM `$tableName` WHERE `submit_time` = %F AND `form_name` = %s AND `field_name` = '%s'";
$rows = $wpdb->get_results($wpdb->prepare($parametrizedQuery, $time, $formName, $fieldName));
if ($rows == null || count($rows) == 0) {
return null;
}
return array($rows[0]->field_value, $rows[0]->file);
}
/**
* Install page for this plugin in WP Admin
* @return void
*/
public function createAdminMenu() {
$displayName = $this->getPluginDisplayName();
$roleAllowed = $this->getRoleOption('CanSeeSubmitData');
if (!$roleAllowed) {
$roleAllowed = 'administrator';
}
$menuSlug = $this->getDBPageSlug();
//create new top-level menu
add_menu_page($displayName,
__('Contact Form DB', 'contact-form-7-to-database-extension'),
$this->roleToCapability($roleAllowed),
$menuSlug, //$this->getDBPageSlug(),
array(&$this, 'whatsInTheDBPage'));
// Needed for dialog in whatsInTheDBPage
if (strpos($_SERVER['REQUEST_URI'], $this->getDBPageSlug()) !== false) {
$pluginUrl = $this->getPluginFileUrl() . '/';
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script('jquery-ui-dialog');
wp_enqueue_script('CF7DBdes', $pluginUrl . 'des.js');
wp_enqueue_style('jquery-ui.css', $pluginUrl . 'jquery-ui/jquery-ui-1.8.21.custom.css');
// Datatables http://www.datatables.net
if ($this->getOption('UseDataTablesJS', 'true') == 'true') {
// wp_enqueue_style('datatables-demo', 'http://www.datatables.net/release-datatables/media/css/demo_table.css');
// wp_enqueue_script('datatables', 'http://www.datatables.net/release-datatables/media/js/jquery.dataTables.js', array('jquery'));
wp_enqueue_style('datatables-demo', $pluginUrl .'DataTables/media/css/demo_table.css');
wp_enqueue_script('datatables', $pluginUrl . 'DataTables/media/js/jquery.dataTables.min.js', array('jquery'));
if ($this->canUserDoRoleOption('CanChangeSubmitData')) {
do_action_ref_array('cfdb_edit_enqueue', array());
}
// Would like to add ColReorder but it causes slowness and display issues with DataTable footer
//wp_enqueue_style('datatables-ColReorder', $pluginUrl .'DataTables/extras/ColReorder/media/css/ColReorder.css');
//wp_enqueue_script('datatables-ColReorder', $pluginUrl . 'DataTables/extras/ColReorder/media/js/ColReorder.min.js', array('datatables', 'jquery'));
}
}
if (strpos($_SERVER['REQUEST_URI'], $this->getShortCodeBuilderPageSlug()) !== false) {
wp_enqueue_script('jquery');
$pluginUrl = $this->getPluginFileUrl() . '/';
wp_enqueue_script('CF7DBdes', $pluginUrl . 'des.js');
}
// // Put page under CF7's "Contact" page
// add_submenu_page('wpcf7',
// $displayName . ' Submissions',
// __('Database', 'contact-form-7-to-database-extension'),
// $this->roleToCapability($roleAllowed),
// $this->getDBPageSlug(),
// array(&$this, 'whatsInTheDBPage'));
add_submenu_page($menuSlug,
$displayName . ' Short Code Builder',
__('Short Code', 'contact-form-7-to-database-extension'),
$this->roleToCapability($roleAllowed),
$this->getShortCodeBuilderPageSlug(),
array(&$this, 'showShortCodeBuilderPage'));
if ($this->isEditorActive()) {
add_submenu_page($menuSlug,
$displayName . ' Import',
__('Import', 'contact-form-7-to-database-extension'),
$this->roleToCapability($this->getRoleOption('CanChangeSubmitData')),
get_class($this) . 'Import',
array(&$this, 'showShortImportCsvPage'));
}
add_submenu_page($menuSlug,
$displayName . ' Options',
__('Options', 'contact-form-7-to-database-extension'),
'manage_options',
get_class($this) . 'Settings',
array(&$this, 'settingsPage'));
// // Put page under CF7's "Contact" page
// add_submenu_page('wpcf7',
// $displayName . ' Short Code Builder',
// __('Database Short Code', 'contact-form-7-to-database-extension'),
// $this->roleToCapability($roleAllowed),
// $this->getSortCodeBuilderPageSlug(),
// array(&$this, 'showShortCodeBuilderPage'));
}
/**
* @return string WP Admin slug for page to view DB data
*/
public function getDBPageSlug() {
return get_class($this) . 'Submissions';
}
public function getShortCodeBuilderPageSlug() {
return get_class($this) . 'ShortCodeBuilder';
}
public function showShortCodeBuilderPage() {
require_once('CFDBViewShortCodeBuilder.php');
$view = new CFDBViewShortCodeBuilder;
$view->display($this);
}
public function showShortImportCsvPage() {
require_once('CFDBViewImportCsv.php');
$view = new CFDBViewImportCsv;
$view->display($this);
}
/**
* Display the Admin page for this Plugin that show the form data saved in the database
* @return void
*/
public function whatsInTheDBPage() {
if (isset($_REQUEST['form_name']) && isset($_REQUEST['submit_time'])) {
require_once('ExportEntry.php');
$exp = new ExportEntry();
$exp->export($_REQUEST['form_name'], array('submit_time' => $_REQUEST['submit_time']));