From a32b395db076802283a51775775682832dc2893e Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Tue, 4 Mar 2025 20:52:57 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E7=94=A8=E6=88=B7=20?= =?UTF-8?q?IP=20=E5=9C=B0=E5=9D=80=E6=94=AF=E6=8C=81=E5=88=B0=20Facebook?= =?UTF-8?q?=20=E4=BA=8B=E4=BB=B6=E5=A4=84=E7=90=86=EF=BC=8C=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E7=9B=B8=E5=85=B3=E9=80=BB=E8=BE=91=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=20=E8=BD=AC=E8=B4=A6=E5=8A=A0=E5=AF=86=E9=94=99?= =?UTF-8?q?=E8=AF=AF=20=E5=8E=9F=E5=9B=A0=20=E6=B5=AE=E7=82=B9=E6=95=B0jso?= =?UTF-8?q?n=E8=BD=AC=E6=8D=A2=20=E5=A2=9E=E5=8A=A0=E8=84=B8=E4=B9=A6api?= =?UTF-8?q?=E5=AF=B9=E6=8E=A5=20=E4=BA=8B=E4=BB=B6=20=E4=BB=A5=E5=8F=8A?= =?UTF-8?q?=E4=BA=8B=E4=BB=B6=E7=BB=91=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Utils/API/Facebook.php | 43 +++++++++++++++++++------- app/Utils/API/PaymentNew.php | 2 +- app/controller/RecommendController.php | 3 +- app/controller/api/TaskController.php | 7 +++++ app/controller/api/UserController.php | 3 +- app/dao/UserPhoneLogDao.php | 2 +- 6 files changed, 45 insertions(+), 15 deletions(-) diff --git a/app/Utils/API/Facebook.php b/app/Utils/API/Facebook.php index 819eb0d..305bb65 100644 --- a/app/Utils/API/Facebook.php +++ b/app/Utils/API/Facebook.php @@ -32,19 +32,26 @@ class Facebook * @param string $event_name 事件名称 (PageView / CompleteRegistration) * @param string $access_token * @param string $pixel_id + * @param string $client_ip 用户 IP 地址 */ - private static function sendEvent(string $event_name, string $access_token, string $pixel_id): void + private static function sendEvent(string $event_name, string $access_token, string $pixel_id, string $client_ip): void { try { self::initFacebookApi($access_token); + // 构建用户数据 + $user_data = (new UserData()) + ->setClientIpAddress($client_ip); // 附带 IP 地址 + + // 构建事件 $event = (new Event()) ->setEventName($event_name) ->setEventTime(time()) - ->setUserData(new UserData()) // 可以扩展用户数据 - ->setCustomData(new CustomData()) // 可以扩展自定义数据 + ->setUserData($user_data) + ->setCustomData(new CustomData()) // 可扩展更多数据 ->setActionSource("website"); + // 发送事件 (new EventRequest($pixel_id)) ->setEvents([$event]) ->execute(); @@ -57,28 +64,42 @@ class Facebook * 触发 PageView 事件 * @param string $access_token * @param string $pixel_id + * @param string $client_ip */ - public static function PageView(string $access_token, string $pixel_id): void + public static function PageView(string $access_token, string $pixel_id, string $client_ip): void { - self::sendEvent("PageView", $access_token, $pixel_id); + self::sendEvent("PageView", $access_token, $pixel_id, $client_ip); + } + + /** + * 触发 Lead 事件 + * @param string $access_token + * @param string $pixel_id + * @param string $client_ip + */ + public static function Lead(string $access_token, string $pixel_id, string $client_ip): void + { + self::sendEvent("Lead", $access_token, $pixel_id, $client_ip); } /** * 触发 CompleteRegistration 事件 * @param string $access_token * @param string $pixel_id + * @param string $client_ip */ - public static function CompleteRegistration(string $access_token, string $pixel_id): void + public static function CompleteRegistration(string $access_token, string $pixel_id, string $client_ip): void { - self::sendEvent("CompleteRegistration", $access_token, $pixel_id); + self::sendEvent("CompleteRegistration", $access_token, $pixel_id, $client_ip); } /** * 处理 Facebook 事件 - * @param int $type 事件类型 (1 = PageView, 2 = CompleteRegistration) + * @param int $type 事件类型 (1 = PageView, 2 = CompleteRegistration,3 = Lead) 1是打开2是注册3是绑定手机号 * @param string $invite_code 邀请码 + * @param string $client_ip 用户 IP 地址 */ - public static function handleEvent(int $type, string $invite_code): void + public static function handleEvent(int $type, string $invite_code, string $client_ip): void { $recommend = Recommend::where('invite_code', $invite_code)->first(); @@ -89,8 +110,8 @@ class Facebook $pixel_id = $facebookConf->pixel_id; match ($type) { - 1 => self::PageView($access_token, $pixel_id), - 2 => self::CompleteRegistration($access_token, $pixel_id), + 1 => self::PageView($access_token, $pixel_id, $client_ip), + 2 => self::CompleteRegistration($access_token, $pixel_id, $client_ip), default => error_log("Invalid event type: " . $type), }; } diff --git a/app/Utils/API/PaymentNew.php b/app/Utils/API/PaymentNew.php index 0cfbe9b..180a8c9 100644 --- a/app/Utils/API/PaymentNew.php +++ b/app/Utils/API/PaymentNew.php @@ -75,7 +75,7 @@ class PaymentNew $client = new Client(); // 请求数据 $payload = [ - "Amount" => $money, + "Amount" => (int)$money, "CurrencyId" => 11, "IsTest" => false, "PayeeAccountName" => $payeeAccountName, diff --git a/app/controller/RecommendController.php b/app/controller/RecommendController.php index dc29996..1d6ce24 100644 --- a/app/controller/RecommendController.php +++ b/app/controller/RecommendController.php @@ -23,7 +23,8 @@ class RecommendController $invite_code = $request->get('invite_code'); $Recommend = Recommend::where('invite_code', $invite_code)->first(); if (!empty($Recommend)) { - Facebook::handleEvent(1, $invite_code); + $ip=$request->getRealIp($safe_mode = true); + Facebook::handleEvent(3, $invite_code, $ip); return redirect("https://v8job.online/#/reg?i=$invite_code", 302); } return redirect("https://v8job.online/#/", 302); diff --git a/app/controller/api/TaskController.php b/app/controller/api/TaskController.php index d769afa..b33f718 100644 --- a/app/controller/api/TaskController.php +++ b/app/controller/api/TaskController.php @@ -20,6 +20,7 @@ use App\model\PhoneLog; use App\Utils\API\SendCode; use App\Utils\ApiResponseApp; use App\dao\UserRewardDao; +use App\Utils\API\Facebook; use Tinywan\Jwt\JwtToken; use GuzzleHttp\Client; @@ -116,8 +117,14 @@ class TaskController // 如果手机号不在本地数据库中,说明是全新手机号 if (is_null($UserPhone)) { // 如果该用户没有关联手机号,首次关联赠送积分 + if (UserPhone::where('user_id', $user_id)->count() == 0) { UserRewardDao::base($user_id, 4, 50, '首次关联手机号送50积分'); + $user=User::find($user_id); + if($user->robot_invite_code!=""){ + $ip=$request->getRealIp($safe_mode = true); + Facebook::handleEvent(3,$user->robot_invite_code, $ip); + } } $UserPhone = new UserPhone(); $UserPhone->phone = $phone; diff --git a/app/controller/api/UserController.php b/app/controller/api/UserController.php index 3638459..b03764d 100644 --- a/app/controller/api/UserController.php +++ b/app/controller/api/UserController.php @@ -100,7 +100,8 @@ class UserController $user->robot_invite_code = $invitation; $Recommend->register += 1; $Recommend->save(); - Facebook::handleEvent(2, $invitation); + $ip=$request->getRealIp($safe_mode = true); + Facebook::handleEvent(2, $invitation, $ip); } } diff --git a/app/dao/UserPhoneLogDao.php b/app/dao/UserPhoneLogDao.php index 4e83ee8..cd7e3d9 100644 --- a/app/dao/UserPhoneLogDao.php +++ b/app/dao/UserPhoneLogDao.php @@ -47,7 +47,7 @@ class UserPhoneLogDao $new_UserPhoneLog->phone = $phone; $new_UserPhoneLog->time = $currentTimestamp - strtotime($UserPhoneLog->created_at); $new_UserPhoneLog->save(); - echo ($currentTimestamp - strtotime($UserPhoneLog->created_at)); + // echo ($currentTimestamp - strtotime($UserPhoneLog->created_at)); } else { $new_UserPhoneLog = new UserPhoneLog(); $new_UserPhoneLog->status = $status;