403Webshell
Server IP : 52.25.153.185  /  Your IP : 216.73.217.131
Web Server : Apache
System : Linux ip-172-26-6-158 5.10.0-35-cloud-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User : daemon ( 1)
PHP Version : 8.1.10
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /bitnami/wordpress/wp-content/plugins/fluentformpro/src/Integrations/Zapier/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /bitnami/wordpress/wp-content/plugins/fluentformpro/src/Integrations/Zapier/Bootstrap.php
<?php

namespace FluentFormPro\Integrations\Zapier;

if (!defined('ABSPATH')) {
    exit; // Exit if accessed directly.
}

use FluentForm\App\Modules\Acl\Acl;
use FluentForm\Framework\Foundation\Application;
use FluentForm\Framework\Helpers\ArrayHelper;

class Bootstrap
{
    protected $app = null;
    protected $notifier = null;
    protected $title = 'Zapier';

    public function __construct(Application $app)
    {
        $this->app = $app;
        $this->register();
    }

    public function register()
    {
        $isEnabled =  $this->isEnabled();
        add_filter('fluentform/global_addons', function ($addons) use ($isEnabled) {
            $addons['zapier'] = [
                'title' => 'Zapier',
                'category' => 'crm',
                'description' => __('Fluent Forms Zapier module allows you to connect your WordPress forms with over 6000+ web apps.', 'fluentformpro'),
                'logo' => fluentFormMix('img/integrations/zapier.png'),
                'enabled' => ($isEnabled) ? 'yes' : 'no'
            ];
            return $addons;
        });

        if(!$isEnabled) {
            return;
        }

       // add_filter('fluentform/notifying_async_zapier', '__return_false');

        add_filter('fluentform/global_notification_active_types', function ($types) {
            $types['fluentform_zapier_feed'] = 'zapier';
            return $types;
        }, 20, 1);
        add_action('fluentform/integration_notify_fluentform_zapier_feed', array($this, 'notify'), 20, 4);

        add_filter('fluentform/form_settings_menu', array($this, 'addFormMenu'));

        add_action('wp_ajax_fluentform-get-zapier-notifications', function () {
            Acl::verify('fluentform_forms_manager', absint($this->app->request->get('form_id')));
            $this->getApiClient()->getNotifications();
        });

        add_action('wp_ajax_fluentform-save-zapier-notification', function () {
            Acl::verify('fluentform_forms_manager', absint($this->app->request->get('form_id')));
            $this->getApiClient()->saveNotification();
        });

        add_action('wp_ajax_fluentform-delete-zapier-notification', function () {
            $client = $this->getApiClient();
            $notification = $client->resolveNotification($this->app->request->get('id'));

            Acl::verify('fluentform_forms_manager', $notification->form_id);
            $client->deleteNotification($notification);
        });

        add_action('wp_ajax_fluentform-verify-endpoint-zapier', function () {
            Acl::verify('fluentform_forms_manager', absint($this->app->request->get('form_id')));
            $this->getApiClient()->verifyEndpoint();
        });
    }

    public function addFormMenu($settingsMenus)
    {
        $settingsMenus['zapier'] = array(
            'slug'  => 'form_settings',
            'hash'  => 'zapier',
            'route' => '/zapier',
            'title' => $this->title,
        );
        return $settingsMenus;
    }

    public function notify($feed, $formData, $entry, $form)
    {
        $response = $this->getApiClient()->notify($feed, $formData, $entry, $form);
        if(is_wp_error($response)) {
            do_action('fluentform/integration_action_result', $feed, 'failed', $response->get_error_message());
            return;
        }

        $code = ArrayHelper::get($response, 'response.code');
        if($code < 300) {
            // it's a success
            do_action('fluentform/integration_action_result', $feed, 'success', __('Zapier payload has been fired. Status Code: ', 'fluentformpro') . $code);
            return;
        }

        do_action('fluentform/integration_action_result', $feed, 'failed', __('Zapier payload maybe failed to the target server. Status Code: ', 'fluentformpro') . $code);

    }

    protected function getApiClient()
    {
        return new Client($this->app);
    }

    public function isEnabled()
    {
        $globalModules = get_option('fluentform_global_modules_status');
        return $globalModules && isset($globalModules['zapier']) && $globalModules['zapier'] == 'yes';
    }

}

Youez - 2016 - github.com/yon3zu
LinuXploit