forked from UsabilityDynamics/wp-gravityforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
forms_model.php
4644 lines (3660 loc) · 180 KB
/
forms_model.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
if(!class_exists('GFForms')){
die();
}
require_once(ABSPATH . WPINC . "/post.php");
define("GFORMS_MAX_FIELD_LENGTH", 200);
class GFFormsModel {
public static $uploaded_files = array();
public static $unique_ids = array();
private static $_confirmations = array();
private static $_current_forms = array();
private static $_current_lead = null;
public static function flush_current_forms(){
self::$_current_forms = null;
}
public static function flush_current_lead(){
self::$_current_lead = null;
}
public static function flush_confirmations(){
self::$_confirmations = null;
}
public static function get_form_table_name(){
global $wpdb;
return $wpdb->prefix . "rg_form";
}
public static function get_meta_table_name(){
global $wpdb;
return $wpdb->prefix . "rg_form_meta";
}
public static function get_form_view_table_name(){
global $wpdb;
return $wpdb->prefix . "rg_form_view";
}
public static function get_lead_table_name(){
global $wpdb;
return $wpdb->prefix . "rg_lead";
}
public static function get_lead_meta_table_name(){
global $wpdb;
return $wpdb->prefix . "rg_lead_meta";
}
public static function get_lead_notes_table_name(){
global $wpdb;
return $wpdb->prefix . "rg_lead_notes";
}
public static function get_lead_details_table_name(){
global $wpdb;
return $wpdb->prefix . "rg_lead_detail";
}
public static function get_lead_details_long_table_name(){
global $wpdb;
return $wpdb->prefix . "rg_lead_detail_long";
}
public static function get_lead_view_name(){
global $wpdb;
return $wpdb->prefix . "rg_lead_view";
}
public static function get_forms($is_active = null, $sort_column = "title", $sort_dir = "ASC", $is_trash = false){
global $wpdb;
$form_table_name = self::get_form_table_name();
$lead_table_name = self::get_lead_table_name();
$view_table_name = self::get_form_view_table_name();
$where_arr = array();
$where_arr[] = $wpdb->prepare("is_trash=%d", $is_trash);
if($is_active !== null)
$where_arr[] = $wpdb->prepare("is_active=%d", $is_active);
$where_clause = "WHERE " . join(" AND ", $where_arr);
$sort_keyword = $sort_dir == "ASC" ? "ASC" : "DESC";
$sort_column = ESC_SQL($sort_column);
$order_by = !empty($sort_column) ? "ORDER BY $sort_column $sort_keyword" : "";
$sql = "SELECT f.id, f.title, f.date_created, f.is_active, 0 as lead_count, 0 view_count
FROM $form_table_name f
$where_clause
$order_by";
//Getting all forms
$forms = $wpdb->get_results($sql);
//Getting entry count per form
$sql = "SELECT form_id, count(id) as lead_count FROM $lead_table_name l WHERE status='active' GROUP BY form_id";
$entry_count = $wpdb->get_results($sql);
//Getting view count per form
$sql = "SELECT form_id, sum(count) as view_count FROM $view_table_name GROUP BY form_id";
$view_count = $wpdb->get_results($sql);
//Adding entry counts and to form array
foreach($forms as &$form){
foreach($view_count as $count){
if($count->form_id == $form->id){
$form->view_count = $count->view_count;
break;
}
}
foreach($entry_count as $count){
if($count->form_id == $form->id){
$form->lead_count = $count->lead_count;
break;
}
}
}
return $forms;
}
public static function get_forms_by_id($ids){
_deprecated_function('get_forms_by_id', '1.7', 'get_form_meta_by_id');
return self::get_form_meta_by_id($ids);
}
public static function get_form_payment_totals($form_id){
global $wpdb;
$lead_table_name = self::get_lead_table_name();
$sql = $wpdb->prepare(" SELECT sum(payment_amount) revenue, count(l.id) orders
FROM $lead_table_name l
WHERE form_id=%d AND payment_amount IS NOT null", $form_id);
$totals = $wpdb->get_row($sql, ARRAY_A);
$active = $wpdb->get_var($wpdb->prepare(" SELECT count(id) as active
FROM $lead_table_name
WHERE form_id=%d AND payment_status='Active'", $form_id));
if(empty($active))
$active = 0;
$totals["active"] = $active;
return $totals;
}
public static function get_form_counts($form_id){
global $wpdb;
$lead_table_name = self::get_lead_table_name();
$sql = $wpdb->prepare(
"SELECT
(SELECT count(0) FROM $lead_table_name WHERE form_id=%d AND status='active') as total,
(SELECT count(0) FROM $lead_table_name WHERE is_read=0 AND status='active' AND form_id=%d) as unread,
(SELECT count(0) FROM $lead_table_name WHERE is_starred=1 AND status='active' AND form_id=%d) as starred,
(SELECT count(0) FROM $lead_table_name WHERE status='spam' AND form_id=%d) as spam,
(SELECT count(0) FROM $lead_table_name WHERE status='trash' AND form_id=%d) as trash",
$form_id, $form_id, $form_id, $form_id, $form_id);
$results = $wpdb->get_results($sql, ARRAY_A);
return $results[0];
}
public static function get_form_summary(){
global $wpdb;
$form_table_name = self::get_form_table_name();
$lead_table_name = self::get_lead_table_name();
$sql = "SELECT l.form_id, count(l.id) as unread_count
FROM $lead_table_name l
WHERE is_read=0 AND status='active'
GROUP BY form_id";
//getting number of unread and total leads for all forms
$unread_results = $wpdb->get_results($sql, ARRAY_A);
$sql = "SELECT l.form_id, max(l.date_created) as last_lead_date, count(l.id) as total_leads
FROM $lead_table_name l
WHERE status='active'
GROUP BY form_id";
$lead_date_results = $wpdb->get_results($sql, ARRAY_A);
$sql = "SELECT id, title, '' as last_lead_date, 0 as unread_count
FROM $form_table_name
WHERE is_active=1
ORDER BY title";
$forms = $wpdb->get_results($sql, ARRAY_A);
for($i=0; $count = sizeof($forms), $i<$count; $i++){
if(is_array($unread_results)){
foreach($unread_results as $unread_result){
if($unread_result["form_id"] == $forms[$i]["id"]){
$forms[$i]["unread_count"] = $unread_result["unread_count"];
break;
}
}
}
if(is_array($lead_date_results)){
foreach($lead_date_results as $lead_date_result){
if($lead_date_result["form_id"] == $forms[$i]["id"]){
$forms[$i]["last_lead_date"] = $lead_date_result["last_lead_date"];
$forms[$i]["total_leads"] = $lead_date_result["total_leads"];
break;
}
}
}
}
return $forms;
}
public static function get_form_count(){
global $wpdb;
$form_table_name = self::get_form_table_name();
$results = $wpdb->get_results("
SELECT
(SELECT count(0) FROM $form_table_name WHERE is_trash = 0) as total,
(SELECT count(0) FROM $form_table_name WHERE is_active=1 AND is_trash = 0 ) as active,
(SELECT count(0) FROM $form_table_name WHERE is_active=0 AND is_trash = 0 ) as inactive,
(SELECT count(0) FROM $form_table_name WHERE is_trash=1) as trash
");
return array( "total" => intval($results[0]->total),
"active" => intval($results[0]->active),
"inactive" => intval($results[0]->inactive),
"trash" => intval($results[0]->trash)
);
}
public static function get_form_id($form_title){
$forms = self::get_forms();
foreach($forms as $form){
$sanitized_name = str_replace("[", "", str_replace("]","", $form->title));
if($form->title == $form_title || $sanitized_name == $form_title)
return $form->id;
}
return 0;
}
public static function get_form($form_id, $allow_trash = false){
global $wpdb;
$table_name = self::get_form_table_name();
$trash_clause = $allow_trash ? "" : "AND is_trash = 0";
$results = $wpdb->get_results($wpdb->prepare("SELECT * FROM $table_name WHERE id=%d {$trash_clause}", $form_id));
return isset($results[0]) ? $results[0] : false;
}
public static function unserialize($string){
if(is_serialized($string)){
$obj = @unserialize($string);
}
else{
$obj = json_decode($string, true);
}
return $obj;
}
public static function get_form_meta($form_id){
global $wpdb;
// return cached version if form meta has been previously retrieved for this form
if(isset(self::$_current_forms[$form_id])){
return self::$_current_forms[$form_id];
}
$table_name = self::get_meta_table_name();
$form_row = $wpdb->get_row($wpdb->prepare("SELECT display_meta, notifications FROM {$table_name} WHERE form_id=%d", $form_id), ARRAY_A);
//Loading main form object (supports serialized strings as well as JSON strings)
$form = self::unserialize($form_row["display_meta"]);
if(!$form)
return null;
//loading notifications
$form["notifications"] = self::unserialize($form_row["notifications"]);
//copying some form variables down to fields for easier access
$page_number = 1;
$description_placement = rgar($form, "descriptionPlacement") == "above" ? "above" : "below";
if(is_array(rgar($form,"fields"))){
foreach($form["fields"] as &$field){
$field["label"] = !isset($field["label"]) ? "" : $field["label"];
$field["formId"] = $form["id"];
$field["pageNumber"] = $page_number;
$field["descriptionPlacement"] = $description_placement;
if($field["type"] == "page"){
$page_number++;
$field["pageNumber"] = $page_number;
}
}
}
// loading confirmations from legacy structure into new structure
$form = self::load_confirmations($form);
//only migrate legacy notification if there isn't any notification configured in new structure
if(!isset($form["notifications"])){
$form = self::load_notifications_from_legacy($form); //moving notification data from legacy structure into new "notifications" array
}
//load notifications to legacy structure to maintain backward compatibility with legacy hooks and functions
$form = self::load_notifications_to_legacy($form);
$form = apply_filters('gform_form_post_get_meta', $form);
// cached form meta for cheaper retrieval on subsequent requests
self::$_current_forms[$form_id] = $form;
return $form;
}
public static function get_form_meta_by_id($ids){
global $wpdb;
$form_table_name = self::get_form_table_name();
$meta_table_name = self::get_meta_table_name();
if(is_array($ids))
$ids = implode(",", array_map('intval', $ids ) );
else
$ids = intval($ids);
$results = $wpdb->get_results(" SELECT display_meta, confirmations, notifications FROM {$form_table_name} f
INNER JOIN {$meta_table_name} m ON f.id = m.form_id
WHERE id in({$ids})", ARRAY_A);
foreach ($results as &$result) {
$form = self::unserialize($result["display_meta"]);
$form['confirmations'] = self::unserialize($result["confirmations"]);
$form['notifications'] = self::unserialize($result["notifications"]);
$result = $form;
}
return $results;
}
private static function load_notifications_to_legacy($form){
if(!is_array(rgar($form, "notifications")))
return $form;
foreach($form["notifications"] as $notification){
if(!in_array(rgar($notification,"type"), array("user", "admin")))
continue;
$legacy_notification = $notification;
if($notification["toType"] == "field"){
$legacy_notification["toField"] = $notification["to"];
unset($legacy_notification["to"]);
}
//unsetting new properties
unset($legacy_notification["toType"]);
unset($legacy_notification["id"]);
unset($legacy_notification["event"]);
unset($legacy_notification["name"]);
if(isset($legacy_notification["type"]))
unset($legacy_notification["type"]);
//saving into form object
$property = $notification["type"] == "user" ? "autoResponder" : "notification";
$form[$property] = $legacy_notification;
}
return $form;
}
private static function load_notifications_from_legacy($form){
$form["notifications"] = array();
if(GFCommon::has_admin_notification($form)){
$admin_notification = $form["notification"];
//if there is a fromField configured, move it to "from" as a merge tag
$admin_notification = self::convert_property_to_merge_tag($form, $form["notification"], "from", "fromField");
//if there is a fromNameField configured, move it to "fromName" as a merge tag
$admin_notification = self::convert_property_to_merge_tag($form, $form["notification"], "fromName", "fromNameField");
//if there is a replyToField configured, move it to "replyTo" as a merge tag
$admin_notification = self::convert_property_to_merge_tag($form, $form["notification"], "replyTo", "replyToField");
//if routing is configured, set toType to routing, otherwise, set it to email
$admin_notification["toType"] = !rgempty("routing", $admin_notification) ? "routing" : "email";
$notification_id = uniqid();
//assigning this notification to the form_submission action
$admin_notification["event"] = "form_submission";
$admin_notification["name"] = __("Admin Notification", "gravityforms");
$admin_notification["type"] = "admin";
$admin_notification["id"] = $notification_id;
//copying admin notification as an item in the new notifications array
$form["notifications"][$notification_id] = $admin_notification;
}
if(GFCommon::has_user_notification($form)){
$user_notification = $form["autoResponder"];
//if there is a toField configured, set toType to field, if not, set it toemail
$to_field = rgar($user_notification, "toField");
if(!empty($to_field)){
$user_notification["toType"] = "field";
$user_notification["to"] = $to_field;
}
else{
$user_notification["toType"] = "email";
}
$notification_id = uniqid();
//assigning this notification to the form_submission action
$user_notification["event"] = "form_submission";
$user_notification["name"] = __("User Notification", "gravityforms");
$user_notification["type"] = "user";
$user_notification["id"] = $notification_id;
//copying user notification as an item in the new notifications array
$form["notifications"][$notification_id] = $user_notification;
}
self::save_form_notifications($form["id"], $form["notifications"]);
return $form;
}
private static function convert_property_to_merge_tag($form, $array, $target_property, $source_property){
$merge_tag = self::get_field_merge_tag($form, rgar($array, $source_property));
if($merge_tag){
$array[$target_property] = $merge_tag;
unset($array[$source_property]);
}
return $array;
}
private static function get_field_merge_tag($form, $field_id){
$field = self::get_field($form, $field_id);
if(!$field)
return false;
return "{" . GFCommon::get_label($field, $field_id) . ":" . $field_id . "}";
}
public static function add_default_properties($form){
if(is_array(rgar($form,"fields"))){
$all_fields = array("adminLabel"=>"","adminOnly"=>"","allowsPrepopulate"=>"","defaultValue"=>"","description"=>"","content"=>"","cssClass"=>"",
"errorMessage"=>"","id"=>"","inputName"=>"","isRequired"=>"","label"=>"","noDuplicates"=>"",
"size"=>"","type"=>"","postCustomFieldName"=>"","displayAllCategories"=>"","displayCaption"=>"","displayDescription"=>"",
"displayTitle"=>"","inputType"=>"","rangeMin"=>"","rangeMax"=>"","calendarIconType"=>"",
"calendarIconUrl"=>"", "dateType"=>"","dateFormat"=>"","phoneFormat"=>"","addressType"=>"","defaultCountry"=>"","defaultProvince"=>"",
"defaultState"=>"","hideAddress2"=>"","hideCountry"=>"","hideState"=>"","inputs"=>"","nameFormat"=>"","allowedExtensions"=>"",
"captchaType"=>"","pageNumber"=>"","captchaTheme"=>"","simpleCaptchaSize"=>"","simpleCaptchaFontColor"=>"","simpleCaptchaBackgroundColor"=>"",
"failed_validation"=>"", "productField" => "", "enablePasswordInput" => "", "maxLength" => "", "enablePrice" => "", "basePrice" => "");
foreach($form["fields"] as &$field)
$field = wp_parse_args($field, $all_fields);
}
return $form;
}
public static function get_grid_column_meta($form_id){
global $wpdb;
$table_name = self::get_meta_table_name();
return maybe_unserialize($wpdb->get_var($wpdb->prepare("SELECT entries_grid_meta FROM $table_name WHERE form_id=%d", $form_id)));
}
public static function update_grid_column_meta($form_id, $columns){
global $wpdb;
$table_name = self::get_meta_table_name();
$meta = maybe_serialize(stripslashes_deep($columns) );
$wpdb->query( $wpdb->prepare("UPDATE $table_name SET entries_grid_meta=%s WHERE form_id=%d", $meta, $form_id) );
}
public static function get_lead_detail_id($current_fields, $field_number){
foreach($current_fields as $field)
if($field->field_number == $field_number)
return $field->id;
return 0;
}
public static function update_form_active($form_id, $is_active){
global $wpdb;
$form_table = self::get_form_table_name();
$sql = $wpdb->prepare("UPDATE $form_table SET is_active=%d WHERE id=%d", $is_active, $form_id);
$wpdb->query($sql);
}
public static function update_notification_active($form_id, $notification_id, $is_active){
$form = GFFormsModel::get_form_meta($form_id);
if(!isset($form["notifications"][$notification_id]))
return new WP_Error("not_found", __("Notification not found", "gravityforms"));
$form["notifications"][$notification_id]["isActive"] = (bool) $is_active;
$result = GFFormsModel::update_form_meta($form_id, $form["notifications"], "notifications");
return $result;
}
public static function update_confirmation_active($form_id, $confirmation_id, $is_active){
$form = GFFormsModel::get_form_meta($form_id);
if(!isset($form["confirmations"][$confirmation_id]))
return new WP_Error("not_found", __("Notification not found", "gravityforms"));
$form["confirmations"][$confirmation_id]["isActive"] = (bool) $is_active;
$result = GFFormsModel::update_form_meta($form_id, $form["confirmations"], "confirmations");
return $result;
}
public static function update_forms_active($forms, $is_active){
foreach($forms as $form_id)
self::update_form_active($form_id, $is_active);
}
public static function update_leads_property($leads, $property_name, $property_value){
foreach($leads as $lead)
self::update_lead_property($lead, $property_name, $property_value);
}
public static function update_lead_property($lead_id, $property_name, $property_value, $update_akismet=true, $disable_hook=false){
global $wpdb;
$lead_table = self::get_lead_table_name();
$lead = self::get_lead($lead_id);
//marking entry as "spam" or "not spam" with Akismet if the plugin is installed
if($update_akismet && GFCommon::akismet_enabled($lead["form_id"]) && $property_name == "status" && in_array($property_value, array("active", "spam"))){
$current_status = $lead["status"];
if($current_status == "spam" && $property_value == "active"){
$form = self::get_form_meta($lead["form_id"]);
GFCommon::mark_akismet_spam($form, $lead, false);
}
else if($current_status == "active" && $property_value == "spam"){
$form = self::get_form_meta($lead["form_id"]);
GFCommon::mark_akismet_spam($form, $lead, true);
}
}
//updating lead
$result = $wpdb->update($lead_table, array($property_name => $property_value ), array("id" => $lead_id));
if(!$disable_hook){
$previous_value = rgar($lead, $property_name);
if($previous_value != $property_value) {
// if property is status, prev value is spam and new value is active
if($property_name == 'status' && $previous_value == 'spam' && $property_value == 'active' && !rgar($lead, 'post_id')) {
$lead[$property_name] = $property_value;
$lead['post_id'] = GFCommon::create_post($form, $lead);
}
do_action("gform_update_{$property_name}", $lead_id, $property_value, $previous_value);
}
}
return $result;
}
public static function update_lead($lead){
_deprecated_function("GFFormsModel::update_lead()", "1.8.8", "GFAPI::update_entry()");
global $wpdb;
$lead_table = self::get_lead_table_name();
$payment_date = strtotime(rgar($lead,"payment_date")) ? "'" . gmdate( 'Y-m-d H:i:s', strtotime("{$lead["payment_date"]}") ) . "'" : "NULL";
$payment_amount = !rgblank(rgar($lead, "payment_amount")) ? (float) rgar($lead, "payment_amount") : "NULL";
$transaction_type = !rgempty("transaction_type", $lead) ? intval($lead["transaction_type"]) : "NULL";
$status = !rgempty("status", $lead) ? $lead["status"] : "active";
$source_url = self::truncate(rgar($lead,"source_url"), 200);
$user_agent = self::truncate(rgar($lead,"user_agent"), 250);
$sql = $wpdb->prepare("UPDATE $lead_table SET
form_id=%d,
post_id=%d,
is_starred=%d,
is_read=%d,
ip=%s,
source_url=%s,
user_agent=%s,
currency=%s,
payment_status=%s,
payment_date={$payment_date},
payment_amount={$payment_amount},
transaction_id=%s,
is_fulfilled=%d,
transaction_type={$transaction_type},
payment_method=%s,
status='{$status}'
WHERE id=%d", rgar($lead,"form_id"), rgar($lead,"post_id"), rgar($lead,"is_starred"), rgar($lead,"is_read"), rgar($lead,"ip"), $source_url, $user_agent,
rgar($lead,"currency"), rgar($lead,"payment_status"), rgar($lead,"transaction_id"), rgar($lead,"is_fulfilled"), rgar($lead, "payment_method"), rgar($lead,"id"));
$wpdb->query($sql);
self::set_current_lead($lead);
}
private static function truncate($str, $length){
if(strlen($str) > $length){
$str = substr($str, 0, $length);
}
return $str;
}
public static function delete_leads($leads){
foreach($leads as $lead_id)
self::delete_lead($lead_id);
}
public static function delete_forms($forms){
foreach($forms as $form_id)
self::delete_form($form_id);
}
public static function trash_forms($form_ids){
foreach($form_ids as $form_id)
self::trash_form($form_id);
}
public static function restore_forms($form_ids){
foreach($form_ids as $form_id)
self::restore_form($form_id);
}
public static function delete_leads_by_form($form_id, $status=""){
global $wpdb;
$lead_table = self::get_lead_table_name();
$lead_notes_table = self::get_lead_notes_table_name();
$lead_detail_table = self::get_lead_details_table_name();
$lead_detail_long_table = self::get_lead_details_long_table_name();
$lead_meta_table = self::get_lead_meta_table_name();
do_action("gform_delete_entries", $form_id, $status);
//deleting uploaded files
self::delete_files_by_form($form_id, $status);
$status_filter = empty($status) ? "" : $wpdb->prepare("AND status=%s", $status);
//Delete from detail long
$sql = $wpdb->prepare(" DELETE FROM $lead_detail_long_table
WHERE lead_detail_id IN(
SELECT ld.id FROM $lead_detail_table ld
INNER JOIN $lead_table l ON l.id = ld.lead_id
WHERE l.form_id=%d AND ld.form_id=%d {$status_filter}
)", $form_id, $form_id);
$wpdb->query($sql);
//Delete from lead details
$sql = $wpdb->prepare(" DELETE FROM $lead_detail_table
WHERE lead_id IN (
SELECT id FROM $lead_table WHERE form_id=%d {$status_filter}
)", $form_id);
$wpdb->query($sql);
//Delete from lead notes
$sql = $wpdb->prepare(" DELETE FROM $lead_notes_table
WHERE lead_id IN (
SELECT id FROM $lead_table WHERE form_id=%d {$status_filter}
)", $form_id);
$wpdb->query($sql);
//Delete from lead meta
$sql = $wpdb->prepare(" DELETE FROM $lead_meta_table
WHERE lead_id IN (
SELECT id FROM $lead_table WHERE form_id=%d {$status_filter}
)", $form_id);
$wpdb->query($sql);
//Delete from lead
$sql = $wpdb->prepare("DELETE FROM $lead_table WHERE form_id=%d {$status_filter}", $form_id);
$wpdb->query($sql);
}
public static function delete_views($form_id){
global $wpdb;
$form_view_table = self::get_form_view_table_name();
//Delete form view
$sql = $wpdb->prepare("DELETE FROM $form_view_table WHERE form_id=%d", $form_id);
$wpdb->query($sql);
}
public static function delete_form($form_id){
global $wpdb;
do_action("gform_before_delete_form", $form_id);
$form_meta_table = self::get_meta_table_name();
$form_table = self::get_form_table_name();
//Deleting form Entries
self::delete_leads_by_form($form_id);
//Delete form meta
$sql = $wpdb->prepare("DELETE FROM $form_meta_table WHERE form_id=%d", $form_id);
$wpdb->query($sql);
//Deleting form Views
self::delete_views($form_id);
//Delete form
$sql = $wpdb->prepare("DELETE FROM $form_table WHERE id=%d", $form_id);
$wpdb->query($sql);
do_action("gform_after_delete_form", $form_id);
}
public static function trash_form($form_id){
global $wpdb;
$form_table_name = self::get_form_table_name();
$sql = $wpdb->prepare("UPDATE $form_table_name SET is_trash=1 WHERE id=%d", $form_id) ;
$result = $wpdb->query($sql);
self::$_current_forms[$form_id] = null;
$success = $result == false;
return $success;
}
public static function restore_form($form_id){
global $wpdb;
$form_table_name = self::get_form_table_name();
$sql = $wpdb->prepare("UPDATE $form_table_name SET is_trash=0 WHERE id=%d", $form_id) ;
$result = $wpdb->query($sql);
self::$_current_forms[$form_id] = null;
$success = $result == false;
return $success;
}
public static function duplicate_form($form_id){
global $wpdb;
if(!GFCommon::current_user_can_any("gravityforms_create_form"))
die(__("You don't have adequate permission to create forms.", "gravityforms"));
//finding unique title
$form = self::get_form($form_id);
$count = 2;
$title = $form->title . " - Copy 1";
while(!self::is_unique_title($title)){
$title = $form->title . " - Copy $count";
$count++;
}
//creating new form
$new_id = self::insert_form($title);
//copying form meta
$meta = self::get_form_meta($form_id);
$meta["title"] = $title;
$meta["id"] = $new_id;
$notifications = $meta["notifications"];
$confirmations = $meta["confirmations"];
unset($meta["notifications"]);
unset($meta["confirmations"]);
self::update_form_meta($new_id, $meta);
//copying notification meta
self::update_form_meta($new_id, $notifications, "notifications");
//copying confirmation meta
self::update_form_meta($new_id, $confirmations, "confirmations");
do_action("gform_after_duplicate_form", $form_id, $new_id);
return $new_id;
}
public static function is_unique_title($title){
$forms = self::get_forms();
foreach($forms as $form){
if(strtolower($form->title) == strtolower($title))
return false;
}
return true;
}
public static function ensure_tables_exist(){
global $wpdb;
$form_table_name = self::get_form_table_name();
$form_count = $wpdb->get_var("SELECT count(0) FROM {$form_table_name}");
if($wpdb->last_error){
GFCommon::log_debug("Blog " . get_current_blog_id() . " - Form database table does not exist. Forcing database setup.");
GFForms::setup_database();
}
}
public static function insert_form($form_title){
global $wpdb;
$form_table_name = $wpdb->prefix . "rg_form";
//creating new form
$wpdb->query($wpdb->prepare("INSERT INTO $form_table_name(title, date_created) VALUES(%s, utc_timestamp())", $form_title));
//returning newly created form id
return $wpdb->insert_id;
}
public static function update_form_meta( $form_id, $form_meta, $meta_name = 'display_meta' ) {
global $wpdb;
$form_meta = apply_filters( 'gform_form_update_meta', $form_meta, $form_id, $meta_name );
$form_meta = apply_filters( "gform_form_update_meta_{$form_id}", $form_meta, $form_id, $meta_name );
$meta_table_name = self::get_meta_table_name();
$form_meta = json_encode( $form_meta );
if(intval($wpdb->get_var($wpdb->prepare("SELECT count(0) FROM $meta_table_name WHERE form_id=%d", $form_id))) > 0)
$result = $wpdb->query( $wpdb->prepare("UPDATE $meta_table_name SET $meta_name=%s WHERE form_id=%d", $form_meta, $form_id) );
else
$result = $wpdb->query( $wpdb->prepare("INSERT INTO $meta_table_name(form_id, $meta_name) VALUES(%d, %s)", $form_id, $form_meta ) );
self::$_current_forms[$form_id] = null;
do_action( 'gform_post_update_form_meta', $form_meta, $form_id, $meta_name );
do_action( "gform_post_update_form_meta_{$form_id}", $form_meta, $form_id, $meta_name );
return $result;
}
public static function delete_files($lead_id, $form=null){
$lead = self::get_lead($lead_id);
if($form == null)
$form = self::get_form_meta($lead["form_id"]);
$fields = GFCommon::get_fields_by_type($form, array("fileupload", "post_image"));
if(is_array($fields)){
foreach($fields as $field){
if(rgar($field, "multipleFiles")){
$value_json = self::get_lead_field_value($lead, $field);
if(!empty($value_json)){
$files = json_decode($value_json, true);
if(false === empty($files) && is_array($files)){
foreach ($files as $file){
self::delete_physical_file($file);
}
}
}
} else {
$value = self::get_lead_field_value($lead, $field);
self::delete_physical_file($value);
}
}
}
}
public static function delete_files_by_form($form_id, $status=""){
global $wpdb;
$form = self::get_form_meta($form_id);
$fields = GFCommon::get_fields_by_type($form, array("fileupload", "post_image"));
if(empty($fields))
return;
$status_filter = empty($status) ? "" : $wpdb->prepare("AND status=%s", $status);
$results = $wpdb->get_results($wpdb->prepare("SELECT id FROM {$wpdb->prefix}rg_lead WHERE form_id=%d {$status_filter}", $form_id), ARRAY_A);
foreach($results as $result){
self::delete_files($result["id"], $form);
}
}
public static function delete_file($entry_id, $field_id, $file_index = 0){
global $wpdb;
if($entry_id == 0 || $field_id == 0)
return;
$entry = self::get_lead($entry_id);
$form_id = $entry["form_id"];
$form = self::get_form_meta($form_id);
$field = self::get_field($form, $field_id);
$multiple_files = rgar($field, "multipleFiles");
if($multiple_files){
$file_urls = json_decode($entry[$field_id], true);
$file_url = $file_urls[$file_index];
unset($file_urls[$file_index]);
$file_urls = array_values($file_urls);
$field_value = empty($file_urls) ? "" : json_encode($file_urls);
} else {
$file_url = $entry[$field_id];
$field_value = "";
}
self::delete_physical_file($file_url);
// update lead field value - simulate form submission
$lead_detail_table = self::get_lead_details_table_name();
$sql = $wpdb->prepare("SELECT id FROM $lead_detail_table WHERE lead_id=%d AND field_number BETWEEN %s AND %s", $entry_id, doubleval($field_id) - 0.001, doubleval($field_id) + 0.001);
$entry_detail_id = $wpdb->get_var($sql);
self::update_lead_field_value($form, $entry, $field, $entry_detail_id, $field_id, $field_value);
}
private static function delete_physical_file($file_url){
$ary = explode("|:|", $file_url);
$url = rgar($ary,0);
if(empty($url))
return;
//Convert from url to physical path
if (is_multisite() && get_site_option( 'ms_files_rewriting' )) {
$file_path = preg_replace("|^(.*?)/files/gravity_forms/|", BLOGUPLOADDIR . "gravity_forms/", $url);
} else {
$file_path = str_replace(WP_CONTENT_URL, WP_CONTENT_DIR, $url);
}
if(file_exists($file_path)){
unlink($file_path);
}
}
public static function delete_field($form_id, $field_id){
global $wpdb;
if($form_id == 0)
return;
do_action("gform_before_delete_field", $form_id, $field_id);
$lead_table = self::get_lead_table_name();
$lead_detail_table = self::get_lead_details_table_name();
$lead_detail_long_table = self::get_lead_details_long_table_name();
$form = self::get_form_meta($form_id);
$field_type = "";
//Deleting field from form meta
$count = sizeof($form["fields"]);
for($i = $count-1; $i >= 0; $i--){
$field = $form["fields"][$i];
//Deleting associated conditional logic rules
if(!empty($field["conditionalLogic"])){
$rule_count = sizeof($field["conditionalLogic"]["rules"]);
for($j = $rule_count-1; $j >= 0; $j--){
if($field["conditionalLogic"]["rules"][$j]["fieldId"] == $field_id){
unset($form["fields"][$i]["conditionalLogic"]["rules"][$j]);
}
}
$form["fields"][$i]["conditionalLogic"]["rules"] = array_values($form["fields"][$i]["conditionalLogic"]["rules"]);
//If there aren't any rules, remove the conditional logic
if(sizeof($form["fields"][$i]["conditionalLogic"]["rules"]) == 0){
$form["fields"][$i]["conditionalLogic"] = false;
}
}
//Deleting field from form meta
if($field["id"] == $field_id){
$field_type = $field["type"];
unset($form["fields"][$i]);
}
}
//removing post content and title template if the field being deleted is a post content field or post title field
if($field_type == "post_content"){
$form["postContentTemplateEnabled"] = false;
$form["postContentTemplate"] = "";