triggerName = 'fluent_community/course/enrolled';
$this->priority = 30;
$this->actionArgNum = 2;
parent::__construct();
}
public function getTrigger()
{
return [
'category' => __('Community', 'fluent-community'),
'label' => __('Enrolled in a course', 'fluent-community'),
'description' => __('This automation will be initiated when a user enrolls in a course.', 'fluent-community'),
'icon' => 'fc-icon-wp_new_user_signup',
'svg_icon' => ''
];
}
public function getSettingsFields($funnel)
{
return [
'title' => __('Enrolled in a course', 'fluent-community'),
'sub_title' => __('This automation will be initiated when a user enrolls in a course.', 'fluent-community'),
'fields' => [
'subscription_status' => [
'type' => 'option_selectors',
'option_key' => 'editable_statuses',
'is_multiple' => false,
'label' => __('Subscription Status', 'fluent-community'),
'placeholder' => __('Select Status', 'fluent-community')
],
'subscription_status_info' => [
'type' => 'html',
'info' => '' . __('An Automated double-opt-in email will be sent for new subscribers', 'fluent-community') . '',
'dependency' => [
'depends_on' => 'subscription_status',
'operator' => '=',
'value' => 'pending'
]
]
]
];
}
public function getFunnelSettingsDefaults()
{
return [
'subscription_status' => 'subscribed'
];
}
public function getConditionFields($funnel)
{
$courses = Course::orderBy('title', 'ASC')->select(['id', 'title'])->get();
return [
'update_type' => [
'type' => 'radio',
'label' => __('If Contact Already Exists?', 'fluent-community'),
'help' => __('Please specify what will happen if the subscriber already exists in the database', 'fluent-community'),
'options' => FunnelHelper::getUpdateOptions()
],
'course_ids' => [
'type' => 'multi-select',
'is_multiple' => true,
'label' => __('Targeted Courses', 'fluent-community'),
'help' => __('Select which courses this automation is for.', 'fluent-community'),
'placeholder' => __('Select Courses', 'fluent-community'),
'options' => $courses,
'inline_help' => __('Leave blank to run for all Courses', 'fluent-community')
],
'run_multiple' => [
'type' => 'yes_no_check',
'label' => '',
'check_label' => __('Restart the automation multiple times for a contact for this event. (Only enable this if you want to restart the automation for the same contact)', 'fluent-community'),
'inline_help' => __('If you enable this, it will restart the automation for a contact even if they are already in the automation. Otherwise, it will skip if the contact already exists.', 'fluent-community')
]
];
}
public function getFunnelConditionDefaults($funnel)
{
return [
'update_type' => 'update', // skip_all_actions, skip_update_if_exist
'course_ids' => [],
'run_multiple' => 'yes'
];
}
public function handle($funnel, $originalArgs)
{
$course = $originalArgs[0];
$userId = $originalArgs[1];
$user = get_user_by('ID', $userId);
if (!$user || !$this->isProcessable($funnel, $user, $course)) {
return false;
}
$subscriberData = FunnelHelper::prepareUserData($user);
$subscriberData = wp_parse_args($subscriberData, $funnel->settings);
$subscriberData['status'] = $subscriberData['subscription_status'];
unset($subscriberData['subscription_status']);
(new FunnelProcessor())->startFunnelSequence($funnel, $subscriberData, [
'source_trigger_name' => $this->triggerName,
'source_ref_id' => $course->id
]);
}
private function isProcessable($funnel, $user, $course)
{
$conditions = $funnel->conditions;
// check update_type
$updateType = Arr::get($conditions, 'update_type');
$subscriber = FunnelHelper::getSubscriber($user->user_email);
if ($updateType == 'skip_all_if_exist' && $subscriber) {
return false;
}
// check user roles
if ($checkIds = Arr::get($conditions, 'course_ids', [])) {
if (!in_array($course->id, $checkIds)) {
return false;
}
}
// check run_only_one
if ($subscriber && FunnelHelper::ifAlreadyInFunnel($funnel->id, $subscriber->id)) {
$multipleRun = Arr::get($conditions, 'run_multiple') == 'yes';
if ($multipleRun) {
FunnelHelper::removeSubscribersFromFunnel($funnel->id, [$subscriber->id]);
}
return $multipleRun;
}
return true;
}
}