ld-users.php
48.3 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
<?php
/**
* User functions
*
* @since 2.1.0
*
* @package LearnDash\Users
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Deletes the user data.
*
* Fires on `delete_user` hook.
*
* @global wpdb $wpdb WordPress database abstraction object.
*
* @since 2.1.0
*
* @param int|void $user_id User ID.
*/
function learndash_delete_user_data( $user_id ) {
global $wpdb;
if ( ! current_user_can( 'edit_users' ) ) {
return;
}
$user_id = intval( $user_id );
if ( ! empty( $user_id ) ) {
$user = get_user_by( 'id', $user_id );
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$ref_ids = $wpdb->get_col(
$wpdb->prepare(
'SELECT statistic_ref_id FROM ' . esc_sql( LDLMS_DB::get_table_name( 'quiz_statistic_ref' ) ) . ' WHERE user_id = %d ',
absint( $user->ID )
)
);
if ( ! empty( $ref_ids[0] ) ) {
$ref_ids = array_map( 'absint', $ref_ids );
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->query(
// phpcs:ignore WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare, WordPress.DB.PreparedSQL.NotPrepared -- IN clause
$wpdb->prepare( 'DELETE FROM ' . esc_sql( LDLMS_DB::get_table_name( 'quiz_statistic' ) ) . ' WHERE statistic_ref_id IN (' . LDLMS_DB::escape_IN_clause_placeholders( $ref_ids ) . ')', LDLMS_DB::escape_IN_clause_values( $ref_ids ) )
);
}
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->delete(
LDLMS_DB::get_table_name( 'quiz_statistic_ref' ),
array(
'user_id' => $user->ID,
)
);
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->delete(
$wpdb->usermeta,
array(
'meta_key' => '_sfwd-quizzes', // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_key
'user_id' => $user->ID,
)
);
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->delete(
$wpdb->usermeta,
array(
'meta_key' => '_sfwd-course_progress', // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_key
'user_id' => $user->ID,
)
);
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->query(
$wpdb->prepare(
"DELETE FROM {$wpdb->usermeta} WHERE meta_key LIKE %s AND user_id = %d",
'completed_%',
absint( $user->ID )
)
);
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->query(
$wpdb->prepare(
"DELETE FROM {$wpdb->usermeta} WHERE meta_key LIKE %s AND user_id = %d",
'course_%_access_from',
absint( $user->ID )
)
);
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->query(
$wpdb->prepare(
"DELETE FROM {$wpdb->usermeta} WHERE meta_key LIKE %s AND user_id = %d",
'course_completed_%',
absint( $user->ID )
)
);
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->query(
$wpdb->prepare(
"DELETE FROM {$wpdb->usermeta} WHERE meta_key LIKE %s AND user_id = %d",
'learndash_course_expired_%',
absint( $user->ID )
)
);
// Added in v2.3.1 to remove the quiz locks for user.
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->query(
$wpdb->prepare(
'DELETE FROM ' . esc_sql( LDLMS_DB::get_table_name( 'quiz_lock' ) ) . ' WHERE user_id = %d',
absint( $user->ID )
)
);
learndash_report_clear_user_activity_by_types( $user_id );
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->delete( LDLMS_DB::get_table_name( 'quiz_lock' ), array( 'user_id' => $user->ID ) );
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->delete( LDLMS_DB::get_table_name( 'quiz_toplist' ), array( 'user_id' => $user->ID ) );
// Move user uploaded Assignments to Trash.
$user_assignments_query_args = array(
'post_type' => 'sfwd-assignment',
'post_status' => 'publish',
'nopaging' => true,
'author' => $user->ID,
);
$user_assignments_query = new WP_Query( $user_assignments_query_args );
if ( $user_assignments_query->have_posts() ) {
foreach ( $user_assignments_query->posts as $assignment_post ) {
wp_trash_post( $assignment_post->ID );
}
}
wp_reset_postdata();
// Move user uploaded Essay to Trash.
$user_essays_query_args = array(
'post_type' => 'sfwd-essays',
'nopaging' => true,
'author' => $user->ID,
);
$user_essays_query = new WP_Query( $user_essays_query_args );
if ( $user_essays_query->have_posts() ) {
foreach ( $user_essays_query->posts as $essay_post ) {
wp_trash_post( $essay_post->ID );
}
}
wp_reset_postdata();
/**
* Fires after deleting user data.
*
* @param int $user_id User ID.
*/
do_action( 'learndash_delete_user_data', $user_id );
}
}
add_action( 'delete_user', 'learndash_delete_user_data' );
/**
* Gets the list of all courses enrolled by the user.
*
* @since 2.2.1
*
* @param int $user_id Optional. User ID. Default 0.
* @param array $course_query_args Optional. An array of `WP_Query` arguments. Default empty array.
* @param boolean $bypass_transient Optional. Whether to bypass the transient cache or not. Default false.
*
* @return array An array of courses enrolled by user.
*/
function learndash_user_get_enrolled_courses( $user_id = 0, $course_query_args = array(), $bypass_transient = false ) {
$course_ids = array();
if ( empty( $user_id ) ) {
return $course_ids;
}
$bypass_transient = true;
$transient_key = 'learndash_user_courses_' . $user_id;
if ( ! $bypass_transient ) {
$course_ids_transient = LDLMS_Transients::get( $transient_key );
} else {
$course_ids_transient = false;
}
if ( false === $course_ids_transient ) {
if ( learndash_can_user_autoenroll_courses( $user_id ) ) {
$defaults = array(
'post_type' => 'sfwd-courses',
'fields' => 'ids',
'nopaging' => true,
);
$course_query_args = wp_parse_args( $course_query_args, $defaults );
$course_query = new WP_Query( $course_query_args );
if ( ( is_a( $course_query, 'WP_Query' ) ) && ( ! empty( $course_query->posts ) ) ) {
$course_ids = $course_query->posts;
}
} else {
$course_ids_open = learndash_get_posts_by_price_type( learndash_get_post_type_slug( 'course' ), 'open' );
if ( ! empty( $course_ids_open ) ) {
$course_ids = array_merge( $course_ids, $course_ids_open );
}
if ( true === learndash_use_legacy_course_access_list() ) {
$course_ids_access = learndash_get_user_course_access_list( $user_id );
if ( ! empty( $course_ids_access ) ) {
$course_ids = array_merge( $course_ids, $course_ids_access );
}
}
$course_ids_meta = learndash_get_user_courses_from_meta( $user_id );
if ( ! empty( $course_ids_meta ) ) {
$course_ids = array_merge( $course_ids, $course_ids_meta );
}
$course_ids_groups = learndash_get_user_groups_courses_ids( $user_id );
if ( ! empty( $course_ids_groups ) ) {
$course_ids = array_merge( $course_ids, $course_ids_groups );
}
if ( ! empty( $course_ids ) ) {
$course_ids = array_unique( $course_ids );
$defaults = array(
'post_type' => 'sfwd-courses',
'fields' => 'ids',
'nopaging' => true,
);
$course_query_args = wp_parse_args( $course_query_args, $defaults );
$course_query_args['post__in'] = $course_ids;
$course_query = new WP_Query( $course_query_args );
if ( property_exists( $course_query, 'posts' ) ) {
$course_ids = $course_query->posts;
}
}
}
LDLMS_Transients::set( $transient_key, $course_ids, MINUTE_IN_SECONDS );
} else {
$course_ids = $course_ids_transient;
}
return $course_ids;
}
/**
* Enrolls the user in new courses.
*
* @since 2.2.1
*
* @param int $user_id Optional. The ID of user to enroll courses. Default 0.
* @param array $user_courses_new Optional. An array of new course ids to enroll a user. Default empty array.
*/
function learndash_user_set_enrolled_courses( $user_id = 0, $user_courses_new = array() ) {
if ( ! empty( $user_id ) ) {
$user_courses_old = learndash_user_get_enrolled_courses( $user_id, true );
if ( ( empty( $user_courses_old ) ) && ( ! is_array( $user_courses_old ) ) ) {
$user_courses_old = array();
}
$user_courses_intersect = array_intersect( $user_courses_new, $user_courses_old );
$user_courses_add = array_diff( $user_courses_new, $user_courses_intersect );
if ( ! empty( $user_courses_add ) ) {
foreach ( $user_courses_add as $course_id ) {
ld_update_course_access( $user_id, $course_id );
}
}
$user_courses_remove = array_diff( $user_courses_old, $user_courses_intersect );
if ( ! empty( $user_courses_remove ) ) {
foreach ( $user_courses_remove as $course_id ) {
ld_update_course_access( $user_id, $course_id, true );
}
}
// Finally clear our cache for other services.
$transient_key = 'learndash_user_courses_' . $user_id;
LDLMS_Transients::delete( $transient_key );
}
}
/**
* Gets all courses for the user via the user meta 'course_XXX_access_from'.
*
* @since 2.2.1
*
* @global wpdb $wpdb WordPress database abstraction object.
*
* @param int $user_id Optional. ID of the user to get meta. Default 0.
*
* @return array An array of user's course IDs.
*/
function learndash_get_user_courses_from_meta( $user_id = 0 ) {
global $wpdb;
$user_course_ids = array();
$user_id = intval( $user_id );
if ( ! empty( $user_id ) ) {
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$user_course_ids = $wpdb->get_col(
$wpdb->prepare(
"SELECT REPLACE( REPLACE(meta_key, 'course_', ''), '_access_from', '' ) FROM " . $wpdb->usermeta . ' as usermeta WHERE user_id=%d AND meta_key LIKE %s ',
$user_id,
'course_%_access_from'
)
);
if ( ! empty( $user_course_ids ) ) {
$user_course_ids = array_map( 'intval', $user_course_ids );
}
}
return $user_course_ids;
}
/**
* Checks whether to show user course complete.
*
* @global string $pagenow
*
* @param int $user_id Optional. User ID. Default 0.
*
* @return boolean Returns true to show user course complete otherwise false.
*/
function learndash_show_user_course_complete( $user_id = 0 ) {
$show_options = false;
if ( ! empty( $user_id ) ) {
global $pagenow;
if ( ( ( 'profile.php' == $pagenow ) || ( 'user-edit.php' == $pagenow ) ) && ( current_user_can( 'edit_users' ) ) ) {
$show_options = true;
} elseif ( 'admin.php' == $pagenow ) {
// phpcs:ignore WordPress.Security.NonceVerification.Recommended
if ( ( isset( $_GET['page'] ) ) && ( 'group_admin_page' == $_GET['page'] ) ) {
if ( ( learndash_is_admin_user() ) || ( learndash_is_group_leader_user() ) ) {
$show_options = true;
}
}
}
}
// See example snippet of this filter https://developers.learndash.com/hook/learndash_show_user_course_complete_options/.
/**
* Filters the status of whether the course is completed for a user or not.
*
* @since 2.3.0
*
* @param boolean $show_options Whether the course is completed or not.
* @param int $user_id ID of the logged in user to check.
*/
return apply_filters( 'learndash_show_user_course_complete_options', $show_options, $user_id );
}
/**
* Saves the date of course completion for a user.
*
* @since 2.3.0
*
* @param int $user_id Optional. User ID. Default 0.
*/
function learndash_save_user_course_complete( $user_id = 0 ) {
// Hate this cross-logic. But here it is.
// If we are clearing out the user's LD data then we abort this function. Now use going through the update.
if ( ( isset( $_POST['learndash_delete_user_data'] ) ) && ( ! empty( $_POST['learndash_delete_user_data'] ) ) ) {
return;
}
if ( empty( $user_id ) ) {
return;
}
if ( learndash_is_group_leader_user( get_current_user_id() ) ) {
if ( ! learndash_is_group_leader_of_user( get_current_user_id(), $user_id ) ) {
return;
}
} elseif ( ! current_user_can( 'edit_users' ) ) {
return;
}
if ( ( isset( $_POST['user_progress'] ) ) && ( isset( $_POST['user_progress'][ $user_id ] ) ) && ( ! empty( $_POST['user_progress'][ $user_id ] ) ) ) {
if ( ( isset( $_POST[ 'user_progress-' . $user_id . '-nonce' ] ) ) && ( ! empty( $_POST[ 'user_progress-' . $user_id . '-nonce' ] ) ) ) {
if ( wp_verify_nonce( $_POST[ 'user_progress-' . $user_id . '-nonce' ], 'user_progress-' . $user_id ) ) {
$user_progress = (array) json_decode( stripslashes( $_POST['user_progress'][ $user_id ] ) );
$user_progress = json_decode( wp_json_encode( $user_progress ), true );
learndash_process_user_course_progress_update( $user_id, $user_progress );
}
}
}
}
/**
* Process user course progress changes.
*
* @since 4.0.0
* @param int $user_id User ID to update.
* @param array $user_progress User progress array.
*
* @return array Array of processed course IDs.
*
* The user_progress structure should be as the following:
* The top-level nodes are 'course' and 'quiz'. Within each of these there is an array
* of course IDs. Within the course array there is an array of course steps.
*
* array(
* [course] => array (
* [123] => array(
* [completed] => 0
* [total] => 6
* [lessons] => array(
* [111] => 1
* [222] => 1
* )
* [topics] => array (
* [111] => array (
* [555] => 1
* [666] => 1
* )
* )
* )
* )
* [quiz] => array (
* [123] => array (
* [888] => 1
* [999] => 1
* )
* )
* )
*/
function learndash_process_user_course_progress_update( $user_id = 0, $user_progress = array() ) {
$processed_course_ids = array();
if ( empty( $user_id ) ) {
return $processed_course_ids;
}
if ( ( isset( $user_progress['course'] ) ) && ( ! empty( $user_progress['course'] ) ) ) {
$usermeta = get_user_meta( $user_id, '_sfwd-course_progress', true );
$course_progress = empty( $usermeta ) ? array() : $usermeta;
$course_changed = false; // Simple flag to let us know we changed the quiz data so we can save it back to user meta.
foreach ( $user_progress['course'] as $course_id => $course_data_new ) {
$processed_course_ids[ intval( $course_id ) ] = intval( $course_id );
if ( isset( $course_progress[ $course_id ] ) ) {
$course_data_old = $course_progress[ $course_id ];
} else {
$course_data_old = array();
}
$course_data_new = learndash_course_item_to_activity_sync( $user_id, $course_id, $course_data_new, $course_data_old );
$course_progress[ $course_id ] = $course_data_new;
$course_changed = true;
}
if ( true === $course_changed ) {
update_user_meta( $user_id, '_sfwd-course_progress', $course_progress );
}
}
if ( ( isset( $user_progress['quiz'] ) ) && ( ! empty( $user_progress['quiz'] ) ) ) {
$usermeta = get_user_meta( $user_id, '_sfwd-quizzes', true );
$quiz_progress = empty( $usermeta ) ? array() : $usermeta;
$quiz_changed = false; // Simple flag to let us know we changed the quiz data so we can save it back to user meta.
foreach ( $user_progress['quiz'] as $course_id => $course_quiz_set ) {
foreach ( $course_quiz_set as $quiz_id => $quiz_new_status ) {
$quiz_meta = get_post_meta( $quiz_id, '_sfwd-quiz', true );
if ( ! empty( $quiz_meta ) ) {
$quiz_old_status = ! learndash_is_quiz_notcomplete( $user_id, array( $quiz_id => 1 ), false, $course_id );
// For Quiz if the admin marks a qiz complete we don't attempt to update an existing attempt for the user quiz.
// Instead we add a new entry. LD doesn't care as it will take the complete one for calculations where needed.
if ( (bool) true === (bool) $quiz_new_status ) {
if ( (bool) true !== (bool) $quiz_old_status ) {
if ( isset( $quiz_meta['sfwd-quiz_lesson'] ) ) {
$lesson_id = absint( $quiz_meta['sfwd-quiz_lesson'] );
} else {
$lesson_id = 0;
}
if ( isset( $quiz_meta['sfwd-quiz_topic'] ) ) {
$topic_id = absint( $quiz_meta['sfwd-quiz_topic'] );
} else {
$topic_id = 0;
}
// If the admin is marking the quiz complete AND the quiz is NOT already complete...
// Then we add the minimal quiz data to the user profile.
$quizdata = array(
'quiz' => $quiz_id,
'score' => 0,
'count' => 0,
'question_show_count' => 0,
'pass' => true,
'rank' => '-',
'time' => time(),
'pro_quizid' => absint( $quiz_meta['sfwd-quiz_quiz_pro'] ),
'course' => $course_id,
'lesson' => $lesson_id,
'topic' => $topic_id,
'points' => 0,
'total_points' => 0,
'percentage' => 0,
'timespent' => 0,
'has_graded' => false,
'statistic_ref_id' => 0,
'm_edit_by' => get_current_user_id(), // Manual Edit By ID.
'm_edit_time' => time(), // Manual Edit timestamp.
);
$quiz_progress[] = $quizdata;
if ( true === $quizdata['pass'] ) {
$quizdata_pass = true;
} else {
$quizdata_pass = false;
}
// Then we add the quiz entry to the activity database.
learndash_update_user_activity(
array(
'course_id' => $course_id,
'user_id' => $user_id,
'post_id' => $quiz_id,
'activity_type' => 'quiz',
'activity_action' => 'insert',
'activity_status' => $quizdata_pass,
'activity_started' => $quizdata['time'],
'activity_completed' => $quizdata['time'],
'activity_meta' => $quizdata,
)
);
$quiz_changed = true;
if ( ( isset( $quizdata['course'] ) ) && ( ! empty( $quizdata['course'] ) ) ) {
$quizdata['course'] = get_post( $quizdata['course'] );
}
if ( ( isset( $quizdata['lesson'] ) ) && ( ! empty( $quizdata['lesson'] ) ) ) {
$quizdata['lesson'] = get_post( $quizdata['lesson'] );
}
if ( ( isset( $quizdata['topic'] ) ) && ( ! empty( $quizdata['topic'] ) ) ) {
$quizdata['topic'] = get_post( $quizdata['topic'] );
}
/**
* Fires after the quiz is marked as complete.
*
* @param array $quizdata An array of quiz data.
* @param WP_User $user WP_User object.
*/
do_action( 'learndash_quiz_completed', $quizdata, get_user_by( 'ID', $user_id ) );
}
} elseif ( true !== $quiz_new_status ) {
// If we are un-setting a quiz ( changing from complete to incomplete). We need to do some complicated things...
if ( true === $quiz_old_status ) {
if ( ! empty( $quiz_progress ) ) {
foreach ( $quiz_progress as $quiz_idx => $quiz_item ) {
if ( $quiz_item['quiz'] == $quiz_id && true === (bool) $quiz_item['pass'] ) {
$quiz_progress[ $quiz_idx ]['pass'] = false;
// We need to update the activity database records for this quiz_id.
$activity_query_args = array(
'post_ids' => $quiz_id,
'user_ids' => $user_id,
'activity_type' => 'quiz',
);
$quiz_activity = learndash_reports_get_activity( $activity_query_args );
if ( ( isset( $quiz_activity['results'] ) ) && ( ! empty( $quiz_activity['results'] ) ) ) {
foreach ( $quiz_activity['results'] as $result ) {
if ( ( isset( $result->activity_meta['pass'] ) ) && ( true === $result->activity_meta['pass'] ) ) {
// If the activity meta 'pass' element is set to true we want to update it to false.
learndash_update_user_activity_meta( $result->activity_id, 'pass', false );
// Also we need to update the 'activity_status' for this record.
learndash_update_user_activity(
array(
'activity_id' => $result->activity_id,
'course_id' => $course_id,
'user_id' => $user_id,
'post_id' => $quiz_id,
'activity_type' => 'quiz',
'activity_action' => 'update',
'activity_status' => false,
)
);
}
}
}
$quiz_changed = true;
}
/**
* Remove the quiz lock.
*
* @since 2.3.1
*/
if ( ( isset( $quiz_item['pro_quizid'] ) ) && ( ! empty( $quiz_item['pro_quizid'] ) ) ) {
learndash_remove_user_quiz_locks( $user_id, $quiz_item['quiz'] );
}
}
}
}
}
$processed_course_ids[ intval( $course_id ) ] = intval( $course_id );
}
}
}
if ( true === $quiz_changed ) {
update_user_meta( $user_id, '_sfwd-quizzes', $quiz_progress );
}
}
if ( ! empty( $processed_course_ids ) ) {
foreach ( array_unique( $processed_course_ids ) as $course_id ) {
learndash_process_mark_complete( $user_id, $course_id );
learndash_update_group_course_user_progress( $course_id, $user_id, true );
}
}
return $processed_course_ids;
}
/**
* Syncs the course date with the user activity.
*
* We need to compare the new course item progress array to the existing one. Also, update the new activity DB table
*
* @since 2.3.0
*
* @param int $user_id Optional. The user ID related to this course entry. Default 0.
* @param int $course_id Optional. The course ID related to this user course entry. Default 0.
* @param array $course_data_new Optional. The new course data item. Default empty array.
* @param array $course_data_old Optional. The old course data item. Default empty array.
*
* @return void|array
*/
function learndash_course_item_to_activity_sync( $user_id = 0, $course_id = 0, $course_data_new = array(), $course_data_old = array() ) {
if ( ( empty( $user_id ) ) || ( empty( $course_id ) ) || ( empty( $course_data_new ) ) ) {
return;
}
// If we don't have the old course data we can get it.
if ( empty( $course_data_old ) ) {
$user_course_progress = get_user_meta( $user_id, '_sfwd-course_progress', true );
if ( isset( $user_course_progress[ $course_id ] ) ) {
$course_data_old = $user_course_progress[ $course_id ];
} else {
$course_data_old = array();
}
}
// First we loop over the new Course data lessons. We add any items not in the old array to the activity table.
if ( ( isset( $course_data_new['lessons'] ) ) && ( ! empty( $course_data_new['lessons'] ) ) ) {
foreach ( $course_data_new['lessons'] as $lesson_id => $lesson_complete ) {
$lesson_complete = (bool) $lesson_complete;
if ( ( ! isset( $course_data_old['lessons'][ $lesson_id ] ) ) || ( $lesson_complete !== (bool) $course_data_old['lessons'][ $lesson_id ] ) ) {
$lesson_args = array(
'course_id' => $course_id,
'user_id' => $user_id,
'post_id' => $lesson_id,
'activity_type' => 'lesson',
);
$lesson_activity = learndash_get_user_activity( $lesson_args );
if ( ! $lesson_activity ) {
if ( true === $lesson_complete ) {
$lesson_args['activity_started'] = time();
$lesson_args['activity_completed'] = time();
} else {
$lesson_args['activity_started'] = 0;
$lesson_args['activity_completed'] = 0;
}
} else {
if ( true === $lesson_complete ) {
if ( empty( $lesson_activity->activity_started ) ) {
$lesson_args['activity_started'] = time();
}
if ( empty( $lesson_activity->activity_completed ) ) {
$lesson_args['activity_completed'] = time();
}
} else {
$lesson_args['activity_started'] = 0;
$lesson_args['activity_completed'] = 0;
}
}
if ( true === $lesson_complete ) {
$lesson_args['activity_status'] = true;
} else {
$lesson_args['activity_status'] = false;
}
learndash_update_user_activity( $lesson_args );
}
}
}
// Next we loop over the lesson topics. We add any new items not in the old array to the activity table.
if ( ( isset( $course_data_new['topics'] ) ) && ( ! empty( $course_data_new['topics'] ) ) ) {
foreach ( $course_data_new['topics'] as $lesson_id => $lesson_topics ) {
if ( ! empty( $lesson_topics ) ) {
foreach ( $lesson_topics as $topic_id => $topic_complete ) {
$topic_complete = (bool) $topic_complete;
if ( ( ! isset( $course_data_old['topics'][ $lesson_id ][ $topic_id ] ) ) || ( $topic_complete !== (bool) $course_data_old['topics'][ $lesson_id ][ $topic_id ] ) ) {
$topic_args = array(
'course_id' => $course_id,
'user_id' => $user_id,
'post_id' => $topic_id,
'activity_type' => 'topic',
);
$topic_activity = learndash_get_user_activity( $topic_args );
if ( ! $topic_activity ) {
if ( true === $topic_complete ) {
$topic_args['activity_started'] = time();
$topic_args['activity_completed'] = time();
} else {
$topic_args['activity_started'] = 0;
$topic_args['activity_completed'] = 0;
}
} else {
if ( true === $topic_complete ) {
if ( empty( $topic_activity->activity_started ) ) {
$topic_args['activity_started'] = time();
}
if ( empty( $topic_activity->activity_completed ) ) {
$topic_args['activity_completed'] = time();
}
} else {
$topic_args['activity_started'] = 0;
$topic_args['activity_completed'] = 0;
}
}
if ( true === $topic_complete ) {
$topic_args['activity_status'] = true;
} else {
$topic_args['activity_status'] = false;
}
learndash_update_user_activity( $topic_args );
}
}
}
}
}
// Then we loop over the old course lessons. Here if the lesson is NOT in the new course lessons we need to change the 'activity_status' to false.
if ( ( isset( $course_data_old['lessons'] ) ) && ( ! empty( $course_data_old['lessons'] ) ) ) {
foreach ( $course_data_old['lessons'] as $lesson_id => $lesson_complete ) {
if ( ! isset( $course_data_new['lessons'][ $lesson_id ] ) ) {
learndash_update_user_activity(
array(
'course_id' => $course_id,
'user_id' => $user_id,
'post_id' => $lesson_id,
'activity_type' => 'lesson',
'activity_status' => false,
'activity_started' => 0,
'activity_completed' => 0,
'activity_updated' => 0,
)
);
}
}
}
// Then we loop over the old course topics. Here if the lesson is NOT in the new course topics we need to change the 'activity_status' to false.
if ( ( isset( $course_data_old['topics'] ) ) && ( ! empty( $course_data_old['topics'] ) ) ) {
foreach ( $course_data_old['topics'] as $lesson_id => $lesson_topics ) {
if ( ! empty( $lesson_topics ) ) {
foreach ( $lesson_topics as $topic_id => $topic_complete ) {
if ( ! isset( $course_data_new['topics'][ $lesson_id ][ $topic_id ] ) ) {
learndash_update_user_activity(
array(
'course_id' => $course_id,
'user_id' => $user_id,
'post_id' => $topic_id,
'activity_type' => 'topic',
'activity_status' => false,
'activity_started' => 0,
'activity_completed' => 0,
'activity_updated' => 0,
)
);
}
}
}
}
}
// Finally we recalculate the course completed steps from the new course data.
$completed_steps = (int) learndash_course_get_completed_steps( $user_id, $course_id, $course_data_new );
if ( ( ! isset( $course_data_new['completed'] ) ) || ( $completed_steps != $course_data_new['completed'] ) ) {
$course_args = array(
'course_id' => $course_id,
'user_id' => $user_id,
'post_id' => $course_id,
'activity_type' => 'course',
);
if ( empty( $completed_steps ) ) {
$course_args['activity_status'] = false;
$course_args['activity_started'] = 0;
$course_args['activity_completed'] = 0;
$course_args['activity_updated'] = 0;
} else {
$course_activity = (array) learndash_get_user_activity( $course_args );
if ( ! isset( $course_activity['activity_id'] ) ) {
$course_args['activity_status'] = false;
$course_args['activity_started'] = learndash_activity_course_get_earliest_started( $user_id, $course_id, time() );
$course_args['activity_completed'] = 0;
} else {
$course_args = $course_activity;
}
if ( empty( $course_args['activity_started'] ) ) {
$course_args['activity_started'] = learndash_activity_course_get_earliest_started( $user_id, $course_id, time() );
}
}
$course_args['activity_meta'] = array(
'steps_completed' => $completed_steps,
);
learndash_update_user_activity( $course_args );
}
// Then return the new course data to the caller.
return $course_data_new;
}
/**
* Mark all course steps as complete for a user.
*
* @since 4.0.0
*
* @param int $user_id User ID.
* @param int $course_id Course ID.
*
* @return bool true if course steps marked as complete, false if not.
*/
function learndash_user_course_complete_all_steps( $user_id = 0, $course_id = 0 ) {
$user_id = absint( $user_id );
$course_id = absint( $course_id );
if ( ( empty( $user_id ) ) || ( empty( $course_id ) ) ) {
return false;
}
// User must have access to the course.
$course_access = sfwd_lms_has_access( $course_id, $user_id );
if ( true !== $course_access ) {
return;
}
// If the course is already complete.
if ( learndash_course_completed( $user_id, $course_id ) ) {
return;
}
$course_progress_object = LDLMS_Factory_User::course_progress( $user_id );
if ( ! $course_progress_object ) {
return false;
}
$course_progress_steps_legacy = $course_progress_object->get_progress( $course_id, 'legacy' );
if ( isset( $course_progress_steps_legacy['lessons'] ) ) {
foreach ( $course_progress_steps_legacy['lessons'] as $lesson_id => &$lesson_completed ) {
$lesson_completed = 1;
}
}
if ( isset( $course_progress_steps_legacy['topics'] ) ) {
foreach ( $course_progress_steps_legacy['topics'] as $lesson_id => &$lesson_topics ) {
foreach ( $lesson_topics as $topic_id => &$topic_complete ) {
$topic_complete = 1;
}
}
}
$quiz_progress = array();
$course_progress_steps_co = $course_progress_object->get_progress( $course_id, 'co' );
foreach ( $course_progress_steps_co as $key => $value ) {
list( $step_type, $step_id ) = explode( ':', $key );
if ( learndash_get_post_type_slug( 'quiz' ) === $step_type ) {
$quiz_progress[ absint( $step_id ) ] = 1;
}
}
$user_progress = array(
'course' => array(
$course_id => $course_progress_steps_legacy,
),
'quiz' => array(
$course_id => $quiz_progress,
),
);
$changed_courses_count = learndash_process_user_course_progress_update( $user_id, $user_progress );
if ( empty( $changed_courses_count ) ) {
return false;
}
return true;
}
/**
* Gets the list of course IDs accessible by the user.
*
* @global wpdb $wpdb WordPress database abstraction object.
*
* @since 2.3.0
*
* @param int $user_id Optional. The ID of the user to get course list. Default 0.
*
* @return array An array of course IDs.
*/
function learndash_get_user_course_access_list( $user_id = 0 ) {
global $wpdb;
$user_course_ids = array();
$user_id = intval( $user_id );
if ( ! empty( $user_id ) ) {
if ( true === learndash_use_legacy_course_access_list() ) {
$data_settings_courses = learndash_data_upgrades_setting( 'course-access-lists' );
if ( ( isset( $data_settings_courses['version'] ) ) && ( version_compare( $data_settings_courses['version'], LEARNDASH_SETTINGS_TRIGGER_UPGRADE_VERSION, '>=' ) ) ) {
$is_like = " postmeta.meta_value = '" . $user_id . "'
OR postmeta.meta_value REGEXP '^" . $user_id . ",'
OR postmeta.meta_value REGEXP '," . $user_id . ",'
OR postmeta.meta_value REGEXP '," . $user_id . "$'";
$sql_str = 'SELECT post_id FROM ' . $wpdb->prefix . 'postmeta as postmeta INNER JOIN ' . $wpdb->prefix . "posts as posts ON posts.ID = postmeta.post_id WHERE posts.post_status='publish' AND posts.post_type='sfwd-courses' AND postmeta.meta_key='course_access_list' AND (" . $is_like . ')';
} else {
// OR the access list is not empty.
$not_like = " postmeta.meta_value NOT REGEXP '\"sfwd-courses_course_access_list\";s:0:\"\";' ";
// OR the user ID is found in the access list. Note this pattern is four options
// 1. The user ID is the only entry.
// 1a. The single entry could be an int
// 1b. Ot the single entry could be an string
// 2. The user ID is at the front of the list as in "sfwd-courses_course_access_list";*:"X,*";
// 3. The user ID is in middle "sfwd-courses_course_access_list";*:"*,X,*";
// 4. The user ID is at the end "sfwd-courses_course_access_list";*:"*,X";.
$is_like = "
postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";i:" . $user_id . ";s:34:\"sfwd-courses_course_lesson_orderby\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";i:" . $user_id . ";s:40:\"sfwd-courses_course_prerequisite_compare\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";i:" . $user_id . ";s:35:\"sfwd-courses_course_lesson_per_page\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"" . $user_id . "\";s:34:\"sfwd-courses_course_lesson_orderby\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"" . $user_id . "\";s:40:\"sfwd-courses_course_prerequisite_compare\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"" . $user_id . "\";s:35:\"sfwd-courses_course_lesson_per_page\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"" . $user_id . ",(.*)\";s:34:\"sfwd-courses_course_lesson_orderby\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"" . $user_id . ",(.*)\";s:40:\"sfwd-courses_course_prerequisite_compare\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"" . $user_id . ",(.*)\";s:35:\"sfwd-courses_course_lesson_per_page\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"(.*)," . $user_id . ",(.*)\";s:34:\"sfwd-courses_course_lesson_orderby\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"(.*)," . $user_id . ",(.*)\";s:40:\"sfwd-courses_course_prerequisite_compare\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"(.*)," . $user_id . ",(.*)\";s:35:\"sfwd-courses_course_lesson_per_page\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"(.*)," . $user_id . "\";s:34:\"sfwd-courses_course_lesson_orderby\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"(.*)," . $user_id . "\";s:40:\"sfwd-courses_course_prerequisite_compare\"'
OR postmeta.meta_value REGEXP 's:31:\"sfwd-courses_course_access_list\";s:(.*):\"(.*)," . $user_id . "\";s:35:\"sfwd-courses_course_lesson_per_page\"'
";
$sql_str = 'SELECT post_id FROM ' . $wpdb->postmeta . ' as postmeta INNER JOIN ' . $wpdb->posts . " as posts ON posts.ID = postmeta.post_id WHERE posts.post_status='publish' AND posts.post_type='sfwd-courses' AND postmeta.meta_key='_sfwd-courses' AND ( " . $not_like . ' AND (' . $is_like . '))';
}
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$user_course_ids = $wpdb->get_col( $sql_str ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
} else {
$user_course_ids = learndash_user_get_enrolled_courses( $user_id );
}
}
return $user_course_ids;
}
/**
* Gets all courses accessible by the user's groups.
*
* @since 2.3.0
*
* @param int $user_id Optional. User ID. Default 0.
*
* @return array An array of course IDs.
*/
function learndash_get_user_groups_courses_ids( $user_id = 0 ) {
$user_group_course_ids = array();
if ( empty( $user_id ) ) {
return $user_group_course_ids;
}
// Next we grab all the groups the user is a member of.
$users_group_ids = learndash_get_users_group_ids( $user_id );
if ( ! empty( $users_group_ids ) ) {
foreach ( $users_group_ids as $group_id ) {
$group_course_ids = learndash_group_enrolled_courses( $group_id );
if ( ! empty( $group_course_ids ) ) {
$user_group_course_ids = array_merge( $user_group_course_ids, $group_course_ids );
}
}
}
/**
* Filters the list of user group courses.
*
* @param array $user_group_course_ids An array of found user group courses.
* @param int $user_id User ID.
*/
return apply_filters( 'learndash_get_user_groups_courses_ids', $user_group_course_ids, $user_id );
}
/**
* Records the last login time for the user.
*
* Fires on `wp_login` hook.
*
* @since 2.3.0
*
* @param string $user_login Optional. Username. Default empty.
* @param WP_User|string $user Optional. The `WP_User` object of the logged-in user. Default empty.
*/
function learndash_wp_login( $user_login = '', $user = '' ) {
if ( ! empty( $user_login ) ) {
if ( ! ( $user instanceof WP_User ) ) {
$user = get_user_by( 'login', $user_login );
}
if ( $user instanceof WP_User ) {
update_user_meta( $user->ID, 'learndash-last-login', time() );
}
}
}
add_action( 'wp_login', 'learndash_wp_login', 99, 1 );
/**
* Removes the lock from a quiz for a user.
*
* @global wpdb $wpdb WordPress database abstraction object.
*
* @since 2.3.1
*
* @param int $user_id Optional. The User ID. Default 0.
* @param int $quiz_id Optional. The Quiz post ID. Default 0.
*/
function learndash_remove_user_quiz_locks( $user_id = 0, $quiz_id = 0 ) {
global $wpdb;
if ( ( ! empty( $user_id ) ) && ( ! empty( $quiz_id ) ) ) {
$pro_quiz_id = get_post_meta( $quiz_id, 'quiz_pro_id', true );
if ( ! empty( $pro_quiz_id ) ) {
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$wpdb->query(
$wpdb->prepare(
'DELETE FROM ' . esc_sql( LDLMS_DB::get_table_name( 'quiz_lock' ) ) . ' WHERE quiz_id = %d AND user_id = %s',
$pro_quiz_id,
$user_id
)
);
}
}
}
/**
* Gets the course points for a user.
*
* The course points calculation is based on all completed courses by the user. From
* these completed courses we get any with assigned course points into a total.
* Then we add the optional 'course_points' user meta value if present. This is a value the
* admin can set to help increase the student's point total.
*
* The calculated course points plus user meta course points are added together and returned.
*
* @global wpdb $wpdb WordPress database abstraction object.
*
* @since 2.4.0
*
* @param int $user_id Optional. User ID. Default 0.
*
* @return mixed User course points.
*/
function learndash_get_user_course_points( $user_id = 0 ) {
global $wpdb;
if ( empty( $user_id ) ) {
if ( ! is_user_logged_in() ) {
return false;
}
$user_id = get_current_user_id();
}
$user_id = intval( $user_id );
if ( ! empty( $user_id ) ) {
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$course_points_results = $wpdb->get_results(
$wpdb->prepare(
'SELECT DISTINCT postmeta.post_id as post_id, postmeta.meta_value as points
FROM ' . $wpdb->postmeta . " as postmeta
WHERE postmeta.post_id IN
(
SELECT DISTINCT REPLACE(user_meta.meta_key, 'course_completed_', '') as course_id
FROM " . $wpdb->usermeta . " as user_meta
WHERE user_meta.meta_key LIKE %s
AND user_meta.user_id = %d and user_meta.meta_value != ''
)
AND postmeta.meta_key=%s
AND postmeta.meta_value != ''",
'course_completed_%',
$user_id,
'course_points'
)
);
$course_points_sum = 0;
if ( ! empty( $course_points_results ) ) {
foreach ( $course_points_results as $course_points ) {
$course_points_sum += learndash_format_course_points( $course_points->points );
}
}
$user_course_points = get_user_meta( $user_id, 'course_points', true );
$user_course_points = learndash_format_course_points( $user_course_points );
return learndash_format_course_points( (string) ( $course_points_sum + $user_course_points ) );
}
}
/**
* Gets the quiz statistic ID for a quiz attempt.
*
* @global wpdb $wpdb WordPress database abstraction object.
*
* @param int $user_id Optional. Quiz ID. Default 0.
* @param array $quiz_attempt Optional. An array of quiz attempt data. Default empty array.
*
* @return int The quiz statistic reference ID.
*/
function learndash_get_quiz_statistics_ref_for_quiz_attempt( $user_id = 0, $quiz_attempt = array() ) {
global $wpdb;
if ( empty( $user_id ) ) {
return 0;
}
if ( ( ! isset( $quiz_attempt['pro_quizid'] ) ) || ( empty( $quiz_attempt['pro_quizid'] ) ) ) {
return 0;
}
if ( ( ! isset( $quiz_attempt['time'] ) ) || ( empty( $quiz_attempt['time'] ) ) ) {
return 0;
}
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$ref_id = $wpdb->get_var(
$wpdb->prepare(
'SELECT statistic_ref_id FROM ' . esc_sql( LDLMS_DB::get_table_name( 'quiz_statistic_ref' ) ) . ' as stat
INNER JOIN ' . esc_sql( LDLMS_DB::get_table_name( 'quiz_master' ) ) . ' as master ON stat.quiz_id=master.id
WHERE user_id = %d AND quiz_id = %d AND create_time = %d AND master.statistics_on=1 LIMIT 1',
$user_id,
$quiz_attempt['pro_quizid'],
$quiz_attempt['time']
)
);
return $ref_id;
}
/**
* Gets the available fields for `usermeta` shortcode.
*
* @since 2.4.0
*
* @param array $attr Optional. An array of attributes to provide context for filter. Default empty array.
*
* @return array An array of available usermeta fields.
*/
function learndash_get_usermeta_shortcode_available_fields( $attr = array() ) {
/**
* Filters the `usermeta` shortcode available fields.
*
* Added logic to allow protect certain user meta fields. The default
* fields is based on some of the fields returned via get_userdata().
*
* @since 2.4.0
*
* @param array $available_fields An array of available shortcode fields.
* @param array $attributes An array of attributes to provide context for the filter.
*/
return apply_filters(
'learndash_usermeta_shortcode_available_fields',
array(
'user_login' => esc_html__( 'User Login', 'learndash' ),
'first_name' => esc_html__( 'User First Name', 'learndash' ),
'last_name' => esc_html__( 'User Last Name', 'learndash' ),
'first_last_name' => esc_html__( 'User First and Last Name', 'learndash' ),
'display_name' => esc_html__( 'User Display Name', 'learndash' ),
'user_nicename' => esc_html__( 'User Nicename', 'learndash' ),
'nickname' => esc_html__( 'User Nickname', 'learndash' ),
'user_email' => esc_html__( 'User Email', 'learndash' ),
'user_url' => esc_html__( 'User URL', 'learndash' ),
'description' => esc_html__( 'User Description', 'learndash' ),
),
$attr
);
}
/**
* Utility function to return the admin user Courses capabilities.
*
* @since 3.2.3.5
*
* @return array of role capabilities.
*/
function learndash_get_admin_courses_capabilities(): array {
return array(
'read_post' => 'read_course',
'publish_posts' => 'publish_courses',
'edit_posts' => 'edit_courses',
'edit_others_posts' => 'edit_others_courses',
'delete_posts' => 'delete_courses',
'delete_others_posts' => 'delete_others_courses',
'read_private_posts' => 'read_private_courses',
'edit_private_posts' => 'edit_private_courses',
'delete_private_posts' => 'delete_private_courses',
'delete_post' => 'delete_course',
'edit_published_posts' => 'edit_published_courses',
'delete_published_posts' => 'delete_published_courses',
);
}
/**
* Initialize the admin user Courses capabilities.
*
* @since 3.2.3.5
*
* @return void
*/
function learndash_init_admin_courses_capabilities(): void {
$admin_role = get_role( 'administrator' );
if ( is_null( $admin_role ) ) {
return;
}
// Not sure why this is here.
if ( ! $admin_role->has_cap( 'enroll_users' ) ) {
$admin_role->add_cap( 'enroll_users' );
}
foreach ( learndash_get_admin_courses_capabilities() as $capability ) {
if ( ! $admin_role->has_cap( $capability ) ) {
$admin_role->add_cap( $capability );
}
}
}
/**
* Utility function to return the admin user Groups capabilities.
*
* @since 3.2.3.5
*
* @return array of role capabilities.
*/
function learndash_get_admin_groups_capabilities(): array {
return array(
'read_post' => 'read_group',
'publish_posts' => 'publish_groups',
'edit_posts' => 'edit_groups',
'edit_post' => 'edit_group',
'edit_others_posts' => 'edit_others_groups',
'delete_posts' => 'delete_groups',
'delete_others_posts' => 'delete_others_groups',
'read_private_posts' => 'read_private_groups',
'delete_post' => 'delete_group',
'edit_published_posts' => 'edit_published_groups',
'delete_published_posts' => 'delete_published_groups',
);
}
/**
* Initialize the admin user Groups capabilities.
*
* @since 3.2.3.5
*
* @return void
*/
function learndash_init_admin_groups_capabilities(): void {
$admin_role = get_role( 'administrator' );
if ( is_null( $admin_role ) ) {
return;
}
foreach ( learndash_get_admin_groups_capabilities() as $capability ) {
if ( ! $admin_role->has_cap( $capability ) ) {
$admin_role->add_cap( $capability );
}
}
}
/**
* Utility function to return the admin user Coupons capabilities.
*
* @since 4.1.0
*
* @return array of role capabilities.
*/
function learndash_get_admin_coupons_capabilities(): array {
return array(
'read_post' => 'read_coupon',
'publish_posts' => 'publish_coupons',
'edit_posts' => 'edit_coupons',
'edit_post' => 'edit_coupon',
'edit_others_posts' => 'edit_others_coupons',
'delete_posts' => 'delete_coupons',
'delete_others_posts' => 'delete_others_coupons',
'read_private_posts' => 'read_private_coupons',
'delete_post' => 'delete_coupon',
'edit_published_posts' => 'edit_published_coupons',
'delete_published_posts' => 'delete_published_coupons',
);
}
/**
* Initialize the admin user Coupons capabilities.
*
* @since 4.1.0
*
* @return void
*/
function learndash_init_admin_coupons_capabilities(): void {
$admin_role = get_role( 'administrator' );
if ( is_null( $admin_role ) ) {
return;
}
foreach ( learndash_get_admin_coupons_capabilities() as $capability ) {
if ( ! $admin_role->has_cap( $capability ) ) {
$admin_role->add_cap( $capability );
}
}
}
add_action( 'admin_init', 'learndash_init_admin_coupons_capabilities' );
/**
* Gets all expired courses for the user via the user meta 'learndash_course_expired_XXX'.
*
* @since 3.4.2
*
* @global wpdb $wpdb WordPress database abstraction object.
*
* @param int $user_id Optional. ID of the user to get meta. Default 0.
*
* @return array An array of user's expired course IDs.
*/
function learndash_get_expired_user_courses_from_meta( $user_id = 0 ) {
global $wpdb;
$expired_user_course_ids = array();
$user_id = intval( $user_id );
if ( ! empty( $user_id ) ) {
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$expired_user_course_ids = $wpdb->get_col(
$wpdb->prepare(
"SELECT REPLACE(meta_key, 'learndash_course_expired_', '') FROM " . $wpdb->usermeta . ' as usermeta WHERE user_id=%d AND meta_key LIKE %s ',
$user_id,
'learndash_course_expired_%'
)
);
if ( ! empty( $expired_user_course_ids ) ) {
$expired_user_course_ids = array_map( 'intval', $expired_user_course_ids );
}
}
return $expired_user_course_ids;
}
/**
* Utility function to check if users can register for the site.
*
* @since 3.6.0
*/
function learndash_users_can_register() {
if ( is_multisite() ) {
$users_can_register = (bool) users_can_register_signup_filter();
} else {
$users_can_register = (bool) get_option( 'users_can_register' );
}
/**
* Filter for users can register.
*
* @since 3.6.0
* @param bool $users_can_register True if users can register.
*/
return (bool) apply_filters( 'learndash_users_can_register', $users_can_register );
}