update marketing
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 5m14s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 17s
Build, Push and Deploy / deploy-staging (push) Successful in 41s
Build, Push and Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-05-14 11:55:22 +07:00
parent f80fcc4c1b
commit 05fd3230b8
448 changed files with 17545 additions and 5128 deletions

View File

@@ -0,0 +1,99 @@
<?php
namespace Modules\MarketingAddon\App\WhatsappGateways;
use Illuminate\Support\Facades\Http;
class AiSensy
{
public static function send_message($gateway, $phone, $template, $name, $data)
{
$payload = [
'apiKey' => $gateway->params['api_key'],
'campaignName' => $template->template,
'destination' => $phone,
'userName' => $name,
'templateParams' => self::buildParams($template, $data),
'buttons' => self::aiSensyButtons($data['copy_text'] ?? ''),
'media' => self::buildMedia($template),
];
// 🔍 Log payload before sending
\Illuminate\Support\Facades\Log::info('AiSensy Payload', $payload);
$response = Http::withHeaders([
'Content-Type' => 'application/json',
])->post(
'https://backend.aisensy.com/campaign/t1/api/v2',
$payload
);
if ($response->successful()) {
return $response->json();
}
throw new \Exception(
'AiSensy Error: ' . $response->body()
);
}
/**
* Convert named data positional params (WhatsApp only)
*/
protected static function buildParams($template, array $data): array
{
if (empty($template->variables) || !is_array($template->variables)) {
return [];
}
$params = [];
foreach ($template->variables as $variable) {
// Skip button-related vars
if (in_array($variable, ['copy_text', 'expire_at'])) {
continue;
}
if (!isset($data[$variable])) {
continue;
}
$params[] = $data[$variable];
}
return $params;
}
protected static function aiSensyButtons(? string $copyText = null)
{
if (!$copyText) {
return [];
}
return [
[
'type' => 'button',
'sub_type' => 'url',
'index' => 0,
'parameters' => [
[
'type' => 'text',
'text' => $copyText ?? ''
]
]
]
];
}
protected static function buildMedia($template): ?array
{
if (empty($template?->attachment)) {
return null;
}
return [
'url' => asset($template->attachment),
'filename' => 'sample_media',
];
}
}

View File

@@ -0,0 +1,161 @@
<?php
namespace Modules\MarketingAddon\App\WhatsappGateways;
use Illuminate\Support\Facades\Http;
class WhatsAppCloudApi
{
public static function send_message($gateway, $phone, $template, $name, $data)
{
$payload = [
'messaging_product' => 'whatsapp',
'recipient_type' => 'individual',
'to' => $phone,
'type' => 'template',
'template' => [
'name' => $template->template,
'language' => [
'code' => $gateway->params['language_code'] ?? 'en_US',
],
],
];
$components = self::buildComponents($template, $data);
if (!empty($components)) {
$payload['template']['components'] = $components;
}
$apiVersion = $gateway->params['api_version'] ?? 'v25.0';
$phoneNumberId = $gateway->params['phone_number_id'];
$url = "https://graph.facebook.com/{$apiVersion}/{$phoneNumberId}/messages";
$response = Http::withToken($gateway->params['access_token'])
->withHeaders([
'Content-Type' => 'application/json',
])
->post($url, $payload);
if ($response->successful()) {
return $response->json();
}
throw new \Exception(
'WhatsApp Cloud API Error: ' . $response->body()
);
}
protected static function buildComponents($template, array $data): array
{
$components = [];
$header = self::buildHeader($template);
$body = self::buildBody($template, $data);
$button = self::buildButton($data['copy_text'] ?? null);
if (!empty($header)) {
$components[] = $header;
}
if (!empty($body)) {
$components[] = $body;
}
if (!empty($button)) {
$components[] = $button;
}
return $components;
}
protected static function buildBody($template, array $data): ?array
{
if (empty($template->variables) || !is_array($template->variables)) {
return null;
}
$parameters = [];
foreach ($template->variables as $variable) {
if (in_array($variable, ['copy_text', 'expire_at'])) {
continue;
}
if (!isset($data[$variable])) {
continue;
}
$parameters[] = [
'type' => 'text',
'text' => (string) $data[$variable],
];
}
if (empty($parameters)) {
return null;
}
return [
'type' => 'body',
'parameters' => $parameters,
];
}
protected static function buildHeader($template): ?array
{
if (empty($template?->attachment)) {
return null;
}
$mediaType = self::mediaType($template->attachment);
$media = ['link' => asset($template->attachment)];
if ($mediaType === 'document') {
$media['filename'] = basename($template->attachment);
}
return [
'type' => 'header',
'parameters' => [
[
'type' => $mediaType,
$mediaType => $media,
],
],
];
}
protected static function buildButton(?string $copyText = null): ?array
{
if (!$copyText) {
return null;
}
return [
'type' => 'button',
'sub_type' => 'url',
'index' => 0,
'parameters' => [
[
'type' => 'text',
'text' => $copyText,
],
],
];
}
protected static function mediaType(string $attachment): string
{
$extension = strtolower(pathinfo($attachment, PATHINFO_EXTENSION));
if (in_array($extension, ['jpg', 'jpeg', 'png', 'webp'])) {
return 'image';
}
if (in_array($extension, ['mp4', '3gp'])) {
return 'video';
}
return 'document';
}
}