| 1 |
<?php |
| 2 |
/** |
| 3 |
* User Course |
| 4 |
* |
| 5 |
* @package AutomatorWP\Integrations\Tutor_LMS\Actions\User_Course |
| 6 |
* @author AutomatorWP <[email protected]>, Ruben Garcia <[email protected]> |
| 7 |
* @since 1.0.0 |
| 8 |
*/ |
| 9 |
// Exit if accessed directly |
| 10 |
if( !defined( 'ABSPATH' ) ) exit; |
| 11 |
|
| 12 |
class AutomatorWP_Tutor_LMS_User_Course extends AutomatorWP_Integration_Action { |
| 13 |
|
| 14 |
public $integration = 'tutor'; |
| 15 |
public $action = 'tutor_user_course'; |
| 16 |
|
| 17 |
/** |
| 18 |
* Register the trigger |
| 19 |
* |
| 20 |
* @since 1.0.0 |
| 21 |
*/ |
| 22 |
public function register() { |
| 23 |
|
| 24 |
automatorwp_register_action( $this->action, array( |
| 25 |
'integration' => $this->integration, |
| 26 |
'label' => __( 'Enroll user to a course', 'automatorwp' ), |
| 27 |
'select_option' => __( 'Enroll user to <strong>a course</strong>', 'automatorwp' ), |
| 28 |
/* translators: %1$s: Operation (add or remove). %2$s: Post title. */ |
| 29 |
'edit_label' => sprintf( __( 'Enroll user to %1$s', 'automatorwp' ), '{post}' ), |
| 30 |
/* translators: %1$s: Operation (add or remove). %2$s: Post title. */ |
| 31 |
'log_label' => sprintf( __( 'Enroll user to %1$s', 'automatorwp' ), '{post}' ), |
| 32 |
'options' => array( |
| 33 |
'post' => automatorwp_utilities_post_option( array( |
| 34 |
'name' => __( 'Course:', 'automatorwp' ), |
| 35 |
'option_none_label' => __( 'all courses', 'automatorwp' ), |
| 36 |
'option_custom' => true, |
| 37 |
'option_custom_desc' => __( 'Course ID', 'automatorwp' ), |
| 38 |
'post_type' => apply_filters( 'tutor_course_post_type', 'courses' ), |
| 39 |
) ), |
| 40 |
), |
| 41 |
) ); |
| 42 |
|
| 43 |
} |
| 44 |
|
| 45 |
/** |
| 46 |
* Action execution function |
| 47 |
* |
| 48 |
* @since 1.0.0 |
| 49 |
* |
| 50 |
* @param stdClass $action The action object |
| 51 |
* @param int $user_id The user ID |
| 52 |
* @param array $action_options The action's stored options (with tags already passed) |
| 53 |
* @param stdClass $automation The action's automation object |
| 54 |
*/ |
| 55 |
public function execute( $action, $user_id, $action_options, $automation ) { |
| 56 |
|
| 57 |
// Shorthand |
| 58 |
$course_id = $action_options['post']; |
| 59 |
|
| 60 |
$courses = array(); |
| 61 |
|
| 62 |
// Check specific course |
| 63 |
if( $course_id !== 'any' ) { |
| 64 |
|
| 65 |
$course = get_post( $course_id ); |
| 66 |
|
| 67 |
// Bail if course doesn't exists |
| 68 |
if( ! $course ) { |
| 69 |
return; |
| 70 |
} |
| 71 |
|
| 72 |
$courses = array( $course_id ); |
| 73 |
|
| 74 |
} |
| 75 |
|
| 76 |
// If enrolling to all courses, get all courses |
| 77 |
if( $course_id === 'any' ) { |
| 78 |
|
| 79 |
$query = new WP_Query( array( |
| 80 |
'post_type' => apply_filters( 'tutor_course_post_type', 'courses' ), |
| 81 |
'post_status' => 'publish', |
| 82 |
'fields' => 'ids', |
| 83 |
'nopaging' => true, |
| 84 |
) ); |
| 85 |
|
| 86 |
$courses = $query->get_posts(); |
| 87 |
} |
| 88 |
|
| 89 |
// Enroll user in courses |
| 90 |
foreach( $courses as $course_id ) { |
| 91 |
|
| 92 |
// To know if is a paid course |
| 93 |
$is_purchasable = tutor_utils()->is_course_purchasable( $course_id ); |
| 94 |
|
| 95 |
if ( ! $is_purchasable ){ |
| 96 |
|
| 97 |
// Add a filter to force all enrollment to completed |
| 98 |
add_filter( 'tutor_enroll_data', array( $this, 'force_enrollment_status_to_completed' ) ); |
| 99 |
|
| 100 |
// Add student in free course |
| 101 |
tutor_utils()->do_enroll( $course_id, $order_id = 0, $user_id ); |
| 102 |
|
| 103 |
} else{ |
| 104 |
|
| 105 |
do_action( 'tutor_before_enroll', $course_id ); |
| 106 |
$title = __('Course Enrolled', 'tutor') . " – ".date_i18n( get_option( 'date_format' ) ) .' @ '.date_i18n( get_option( 'time_format' ) ) ; |
| 107 |
$enroll_data = apply_filters( 'tutor_enroll_data', |
| 108 |
array( |
| 109 |
'post_type' => 'tutor_enrolled', |
| 110 |
'post_title' => $title, |
| 111 |
'post_status' => 'completed', |
| 112 |
'post_author' => $user_id, |
| 113 |
'post_parent' => $course_id, |
| 114 |
) |
| 115 |
); |
| 116 |
|
| 117 |
// Get the student in the paid course |
| 118 |
$user_exists = tutor_utils()->is_enrolled( $course_id, $user_id ); |
| 119 |
|
| 120 |
if ( ! $user_exists ){ |
| 121 |
// Insert the post into the database |
| 122 |
$isEnrolled = wp_insert_post( $enroll_data ); |
| 123 |
|
| 124 |
if ($isEnrolled) { |
| 125 |
|
| 126 |
do_action('tutor_after_enroll', $course_id, $isEnrolled); |
| 127 |
|
| 128 |
//Mark Current User as Students with user meta data |
| 129 |
update_user_meta( $user_id, '_is_tutor_student', time() ); |
| 130 |
$product_id = tutor_utils()->get_course_product_id($course_id); |
| 131 |
update_post_meta( $isEnrolled, '_tutor_enrolled_by_product_id', $product_id ); |
| 132 |
|
| 133 |
} |
| 134 |
} |
| 135 |
|
| 136 |
} |
| 137 |
|
| 138 |
} |
| 139 |
|
| 140 |
// Remove the filter added previously |
| 141 |
remove_filter( 'tutor_enroll_data', array( $this, 'force_enrollment_status_to_completed' ) ); |
| 142 |
|
| 143 |
} |
| 144 |
|
| 145 |
/** |
| 146 |
* Forces the enrollment status to completed |
| 147 |
* |
| 148 |
* @param array $enrollment |
| 149 |
* |
| 150 |
* @return array |
| 151 |
*/ |
| 152 |
public function force_enrollment_status_to_completed( $enrollment ) { |
| 153 |
|
| 154 |
$enrollment['status'] = 'completed'; |
| 155 |
|
| 156 |
return $enrollment; |
| 157 |
|
| 158 |
} |
| 159 |
|
| 160 |
} |
| 161 |
|
| 162 |
new AutomatorWP_Tutor_LMS_User_Course(); |