145 lines
4.4 KiB
PHP
145 lines
4.4 KiB
PHP
<?php
|
|
|
|
namespace FluentForm\App\Services\Integrations\Slack;
|
|
|
|
use FluentForm\App\Helpers\Helper;
|
|
use FluentForm\App\Modules\Form\FormDataParser;
|
|
use FluentForm\App\Modules\Form\FormFieldsParser;
|
|
use FluentForm\App\Services\Integrations\LogResponseTrait;
|
|
use FluentForm\Framework\Helpers\ArrayHelper;
|
|
|
|
class Slack
|
|
{
|
|
use LogResponseTrait;
|
|
|
|
/**
|
|
* The slack integration settings of the form.
|
|
*
|
|
* @var array $settings
|
|
*/
|
|
protected $settings = [];
|
|
|
|
/**
|
|
* Handle slack notifier.
|
|
*
|
|
* @param $submissionId
|
|
* @param $formData
|
|
* @param $form
|
|
*/
|
|
public static function handle($feed, $formData, $form, $entry)
|
|
{
|
|
$settings = $feed['processedValues'];
|
|
|
|
$inputs = FormFieldsParser::getEntryInputs($form);
|
|
|
|
$labels = FormFieldsParser::getAdminLabels($form, $inputs);
|
|
|
|
$labels = apply_filters_deprecated(
|
|
'fluentform_slack_field_label_selection',
|
|
[
|
|
$labels,
|
|
$settings,
|
|
$form
|
|
],
|
|
FLUENTFORM_FRAMEWORK_UPGRADE,
|
|
'fluentform/slack_field_label_selection',
|
|
'Use fluentform/slack_field_label_selection instead of fluentform_slack_field_label_selection.'
|
|
);
|
|
|
|
$labels = apply_filters('fluentform/slack_field_label_selection', $labels, $settings, $form);
|
|
|
|
foreach ($inputs as $name => $input) {
|
|
if (empty($formData[$name])) {
|
|
continue;
|
|
}
|
|
if ('tabular_grid' == ArrayHelper::get($input, 'element', '')) {
|
|
$formData[$name] = Helper::getTabularGridFormatValue($formData[$name], $input, '<br />', ', ', 'markdown');
|
|
}
|
|
}
|
|
$formData = FormDataParser::parseData((object) $formData, $inputs, $form->id);
|
|
|
|
$slackTitle = ArrayHelper::get($settings, 'textTitle');
|
|
|
|
if ('' === $slackTitle) {
|
|
$title = 'New submission on ' . $form->title;
|
|
} else {
|
|
$title = $slackTitle;
|
|
}
|
|
|
|
$footerText = ArrayHelper::get($settings, 'footerText');
|
|
if ($footerText === '') {
|
|
$footerText = "fluentform";
|
|
}
|
|
|
|
$fields = [];
|
|
|
|
foreach ($formData as $attribute => $value) {
|
|
$value = str_replace('<br />', "\n", $value);
|
|
$value = str_replace('&', '&', $value);
|
|
$value = str_replace('<', '<', $value);
|
|
$value = str_replace('>', '>', $value);
|
|
if (! isset($labels[$attribute]) || empty($value)) {
|
|
continue;
|
|
}
|
|
$fields[] = [
|
|
'title' => $labels[$attribute],
|
|
'value' => $value,
|
|
'short' => false,
|
|
];
|
|
}
|
|
$slackHook = ArrayHelper::get($settings, 'webhook');
|
|
|
|
$titleLink = admin_url(
|
|
'admin.php?page=fluent_forms&form_id='
|
|
. $form->id
|
|
. '&route=entries#/entries/'
|
|
. $entry->id
|
|
);
|
|
|
|
$body = [
|
|
'payload' => json_encode([
|
|
'attachments' => [
|
|
[
|
|
'color' => '#0078ff',
|
|
'fallback' => $title,
|
|
'title' => $title,
|
|
'title_link' => $titleLink,
|
|
'fields' => $fields,
|
|
'footer' => $footerText,
|
|
'ts' => round(microtime(true) * 1000)
|
|
]
|
|
]
|
|
])
|
|
];
|
|
|
|
$result = wp_remote_post($slackHook, [
|
|
'method' => 'POST',
|
|
'timeout' => 30,
|
|
'redirection' => 5,
|
|
'httpversion' => '1.0',
|
|
'headers' => [],
|
|
'body' => $body,
|
|
'cookies' => [],
|
|
]);
|
|
|
|
if (is_wp_error($result)) {
|
|
$status = 'failed';
|
|
$message = $result->get_error_message();
|
|
} else {
|
|
$message = $result['response'];
|
|
$status = 200 == $result['response']['code'] ? 'success' : 'failed';
|
|
}
|
|
|
|
if ('failed' == $status) {
|
|
do_action('fluentform/integration_action_result', $feed, 'failed', $message);
|
|
} else {
|
|
do_action('fluentform/integration_action_result', $feed, 'success', 'Submission notification has been successfully delivered to slack channel');
|
|
}
|
|
|
|
return [
|
|
'status' => $status,
|
|
'message' => $message,
|
|
];
|
|
}
|
|
}
|