164 lines
5.7 KiB
PHP
164 lines
5.7 KiB
PHP
<?php
|
|
|
|
namespace FluentCrm\App\Services\Funnel\Triggers;
|
|
|
|
use FluentCrm\App\Services\Funnel\BaseTrigger;
|
|
use FluentCrm\App\Services\Funnel\FunnelHelper;
|
|
use FluentCrm\App\Services\Funnel\FunnelProcessor;
|
|
use FluentCrm\Framework\Support\Arr;
|
|
|
|
class FluentFormSubscriptionCancelledTrigger extends BaseTrigger
|
|
{
|
|
public function __construct()
|
|
{
|
|
if (!defined('FLUENTFORM')) {
|
|
return;
|
|
}
|
|
|
|
|
|
$this->actionArgNum = 3;
|
|
$this->triggerName = 'fluentform/subscription_payment_canceled';
|
|
$this->priority = 25;
|
|
parent::__construct();
|
|
}
|
|
|
|
public function getTrigger()
|
|
{
|
|
return [
|
|
'category' => __('Fluent Forms', 'fluent-crm'),
|
|
'label' => __('Subscription Cancelled (Fluent Forms)', 'fluent-crm'),
|
|
'description' => __('This Funnel will be initiated when a subscription is cancelled via Fluent Forms.', 'fluent-crm'),
|
|
'icon' => 'fc-icon-fluentforms',
|
|
];
|
|
}
|
|
|
|
public function getFunnelSettingsDefaults()
|
|
{
|
|
return [
|
|
'subscription_status' => 'subscribed'
|
|
];
|
|
}
|
|
|
|
public function getSettingsFields($funnel)
|
|
{
|
|
return [
|
|
'title' => __('Subscription Cancelled Funnel', 'fluent-crm'),
|
|
'sub_title' => __('This Funnel will be initiated when a subscription is cancelled via Fluent Forms.', 'fluent-crm'),
|
|
'fields' => [
|
|
'subscription_status' => [
|
|
'type' => 'select',
|
|
'is_multiple' => false,
|
|
'options' => [
|
|
[
|
|
'id' => 'subscribed',
|
|
'title' => __('Subscribed', 'fluent-crm')
|
|
],
|
|
[
|
|
'id' => 'pending',
|
|
'title' => __('Pending', 'fluent-crm')
|
|
]
|
|
],
|
|
'label' => __('Subscription Status', 'fluent-crm'),
|
|
'placeholder' => __('Select Status', 'fluent-crm')
|
|
],
|
|
'subscription_status_info' => [
|
|
'type' => 'html',
|
|
'info' => sprintf('<b>%s</b>', __('An automated double-opt-in email will be sent if the contact is new or not already subscribed.', 'fluent-crm')),
|
|
'dependency' => [
|
|
'depends_on' => 'subscription_status',
|
|
'operator' => '=',
|
|
'value' => 'pending'
|
|
]
|
|
]
|
|
]
|
|
];
|
|
}
|
|
|
|
protected function getForms($funnel)
|
|
{
|
|
return fluentCrmDb()->table('fluentform_forms')
|
|
->select('id', 'title')
|
|
->orderBy('id', 'DESC')
|
|
->get();
|
|
}
|
|
|
|
public function getFunnelConditionDefaults($funnel)
|
|
{
|
|
return [
|
|
'form_ids' => []
|
|
];
|
|
}
|
|
|
|
public function getConditionFields($funnel)
|
|
{
|
|
return [
|
|
'form_ids' => [
|
|
'type' => 'multi-select',
|
|
'label' => __('Target Forms', 'fluent-crm'),
|
|
'options' => $this->getForms($funnel),
|
|
'inline_help' => __('Keep it blank to run for any form', 'fluent-crm')
|
|
],
|
|
'run_multiple' => [
|
|
'type' => 'yes_no_check',
|
|
'label' => '',
|
|
'check_label' => __('Restart the Automation Multiple times for a contact for this event. (Only enable if you want to restart automation for the same contact)', 'fluent-crm'),
|
|
'inline_help' => __('If you enable, then it will restart the automation for a contact if the contact already in the automation. Otherwise, It will just skip if already exist', 'fluent-crm')
|
|
]
|
|
];
|
|
}
|
|
|
|
public function handle($funnel, $originalArgs)
|
|
{
|
|
[$subscription, $submission, $vendorData] = $originalArgs;
|
|
|
|
$userId = $submission->user_id;
|
|
|
|
$subscriberData = FunnelHelper::prepareUserData($userId);
|
|
|
|
if (empty($subscriberData['email'])) {
|
|
return;
|
|
}
|
|
|
|
$willProcess = $this->isProcessable($funnel, $subscription, $subscriberData);
|
|
|
|
$willProcess = apply_filters('fluentcrm_funnel_will_process_' . $this->triggerName, $willProcess, $funnel, $subscriberData, $originalArgs);
|
|
if (!$willProcess) {
|
|
return;
|
|
}
|
|
|
|
$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' => $subscription->id
|
|
]);
|
|
}
|
|
|
|
private function isProcessable($funnel, $subscription, $subscriberData)
|
|
{
|
|
$conditions = $funnel->conditions;
|
|
// check the Form Ids
|
|
if ($conditions['form_ids']) {
|
|
if (!in_array($subscription->form_id, $conditions['form_ids'])) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$subscriber = FunnelHelper::getSubscriber($subscriberData['email']);
|
|
|
|
// 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]);
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
} |