2023-08-30 10:37:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Service\Forms\Webhooks;
|
|
|
|
|
|
|
|
use App\Service\Forms\FormSubmissionFormatter;
|
2023-08-30 12:20:14 +00:00
|
|
|
use Illuminate\Support\Arr;
|
2024-02-23 10:54:12 +00:00
|
|
|
use Vinkla\Hashids\Facades\Hashids;
|
2023-08-30 10:37:08 +00:00
|
|
|
|
|
|
|
class SlackHandler extends AbstractWebhookHandler
|
|
|
|
{
|
|
|
|
protected function getProviderName(): string
|
|
|
|
{
|
|
|
|
return 'Slack';
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getWebhookUrl(): ?string
|
|
|
|
{
|
|
|
|
return $this->form->slack_webhook_url;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getWebhookData(): array
|
|
|
|
{
|
2024-02-23 10:54:12 +00:00
|
|
|
$settings = (array) Arr::get((array) $this->form->notification_settings, 'slack', []);
|
2023-08-30 12:20:14 +00:00
|
|
|
$externalLinks = [];
|
2024-02-23 10:54:12 +00:00
|
|
|
if (Arr::get($settings, 'link_open_form', true)) {
|
|
|
|
$externalLinks[] = '*<'.$this->form->share_url.'|🔗 Open Form>*';
|
2023-08-30 12:20:14 +00:00
|
|
|
}
|
2024-02-23 10:54:12 +00:00
|
|
|
if (Arr::get($settings, 'link_edit_form', true)) {
|
|
|
|
$editFormURL = front_url('forms/'.$this->form->slug.'/show');
|
|
|
|
$externalLinks[] = '*<'.$editFormURL.'|✍️ Edit Form>*';
|
2023-08-30 12:20:14 +00:00
|
|
|
}
|
|
|
|
if (Arr::get($settings, 'link_edit_submission', true) && $this->form->editable_submissions) {
|
|
|
|
$submissionId = Hashids::encode($this->data['submission_id']);
|
2024-02-23 10:54:12 +00:00
|
|
|
$externalLinks[] = '*<'.$this->form->share_url.'?submission_id='.$submissionId.'|✍️ '.$this->form->editable_submissions_button_text.'>*';
|
2023-08-30 10:37:08 +00:00
|
|
|
}
|
|
|
|
|
2023-08-30 12:20:14 +00:00
|
|
|
$blocks = [
|
|
|
|
[
|
|
|
|
'type' => 'section',
|
|
|
|
'text' => [
|
|
|
|
'type' => 'mrkdwn',
|
2024-02-23 10:54:12 +00:00
|
|
|
'text' => 'New submission for your form *'.$this->form->title.'*',
|
|
|
|
],
|
|
|
|
],
|
2023-08-30 10:37:08 +00:00
|
|
|
];
|
2023-08-30 12:20:14 +00:00
|
|
|
|
2024-02-23 10:54:12 +00:00
|
|
|
if (Arr::get($settings, 'include_submission_data', true)) {
|
2023-08-30 12:20:14 +00:00
|
|
|
$submissionString = '';
|
|
|
|
$formatter = (new FormSubmissionFormatter($this->form, $this->data))->outputStringsOnly();
|
|
|
|
foreach ($formatter->getFieldsWithValue() as $field) {
|
|
|
|
$tmpVal = is_array($field['value']) ? implode(',', $field['value']) : $field['value'];
|
2024-02-23 10:54:12 +00:00
|
|
|
$submissionString .= '>*'.ucfirst($field['name']).'*: '.$tmpVal." \n";
|
2023-08-30 12:20:14 +00:00
|
|
|
}
|
|
|
|
$blocks[] = [
|
|
|
|
'type' => 'section',
|
|
|
|
'text' => [
|
|
|
|
'type' => 'mrkdwn',
|
|
|
|
'text' => $submissionString,
|
2024-02-23 10:54:12 +00:00
|
|
|
],
|
2023-08-30 12:20:14 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2024-02-23 10:54:12 +00:00
|
|
|
if (Arr::get($settings, 'views_submissions_count', true)) {
|
|
|
|
$countString = '*👀 Views*: '.(string) $this->form->views_count." \n";
|
|
|
|
$countString .= '*🖊️ Submissions*: '.(string) $this->form->submissions_count;
|
2023-08-30 12:20:14 +00:00
|
|
|
$blocks[] = [
|
|
|
|
'type' => 'section',
|
|
|
|
'text' => [
|
|
|
|
'type' => 'mrkdwn',
|
|
|
|
'text' => $countString,
|
2024-02-23 10:54:12 +00:00
|
|
|
],
|
2023-08-30 12:20:14 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2024-02-23 10:54:12 +00:00
|
|
|
if (count($externalLinks) > 0) {
|
2023-08-30 12:20:14 +00:00
|
|
|
$blocks[] = [
|
|
|
|
'type' => 'section',
|
|
|
|
'text' => [
|
|
|
|
'type' => 'mrkdwn',
|
|
|
|
'text' => implode(' ', $externalLinks),
|
2024-02-23 10:54:12 +00:00
|
|
|
],
|
2023-08-30 12:20:14 +00:00
|
|
|
];
|
2023-08-30 10:37:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
2024-02-23 10:54:12 +00:00
|
|
|
'blocks' => $blocks,
|
2023-08-30 10:37:08 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function shouldRun(): bool
|
|
|
|
{
|
2024-02-23 10:54:12 +00:00
|
|
|
return ! is_null($this->getWebhookUrl())
|
2023-08-30 10:37:08 +00:00
|
|
|
&& str_contains($this->getWebhookUrl(), 'https://hooks.slack.com/')
|
|
|
|
&& $this->form->is_pro;
|
|
|
|
}
|
|
|
|
}
|