send_leads.php 4.28 KB
<?php
class PostData
{
    public function callback()
    {

        $channel = $_COOKIE['cstm_ppc_channel'];
        $campaign = $_COOKIE['cstm_ppc_campaign'];
        $placement = $_COOKIE['cstm_ppc_placement'];
        $keyword = $_COOKIE['cstm_ppc_keyword'];
        $gclid = $_COOKIE['gclid'];
        $srd = $_COOKIE['srd'];
        $utm_source = $_COOKIE['utm_source'];
        $fbclid = $_COOKIE['fbclid'];
        $fbc = $_COOKIE['_fbc'];
        $fbp = $_COOKIE['_fbp'];
        $fbcidclick = $_COOKIE['fbcidclick'];

        $fname = $_REQUEST['fname'];
        $lname = $_REQUEST['lname'];
        $email = $_REQUEST['email'];
        $mobile = str_replace(' ', '', $_REQUEST['mobile']);
        $source = $_REQUEST['source'];
        $message = $_REQUEST['message'];
        $unit_type = $_REQUEST['unit_type'];
        //$country_code = $_REQUEST['country_code'];
        $name = $fname . ' ' . $lname;


        $fullmobile = "91" . $mobile;

        if ($fbc == "") {
            $fbcidclick = $fbclid;
        } else {
            $fbcidclick = $fbc;
        }


        // Google Sheet Interation------------------

        $postFields = "entry.449648499=" . $name;
        $postFields .= "&entry.1379833540=" . $email;
        $postFields .= "&entry.758332158=" . $fullmobile;
        $postFields .= "&entry.1900106466=" . $srd;
        $postFields .= "&entry.1693361781=" . $source;
        $postFields .= "&entry.94323770=" . $unit_type;

        $postFields .= '&entry.1830911442=' . urlencode($_COOKIE['cstm_ppc_campaign']);
        $postFields .= '&entry.939490048=' . urlencode($_COOKIE['cstm_ppc_channel']);
        $postFields .= '&entry.729166844=' . urlencode($_COOKIE['cstm_ppc_keyword']);
        $postFields .= '&entry.839903606=' . urlencode($_COOKIE['cstm_ppc_placement']);
        $postFields .= '&entry.2003337495=' . urlencode($_COOKIE['cstm_ppc_device']);


        $ch3 = curl_init();
        curl_setopt($ch3, CURLOPT_URL, "https://docs.google.com/forms/u/0/d/e/1FAIpQLSd6sYbPGRcEEvbYGhWkx_0Jr7ZWJ_uRvhkJOD9XsoJR2bNSXQ/formResponse");
        curl_setopt($ch3, CURLOPT_POST, 1);
        curl_setopt($ch3, CURLOPT_POSTFIELDS, $postFields);
        curl_setopt($ch3, CURLOPT_HEADER, 0);
        curl_setopt($ch3, CURLOPT_RETURNTRANSFER, true);
        $result3 = curl_exec($ch3);

        // do not delete


        $curl = curl_init();

        $data = [
            "name" => $fname,
            "state" => "",
            "city" => "",
            "location" => "",
            "budget" => "",
            "notes" => "comments",
            "email" => $email,
            "countryCode" => "91",
            "mobile" => $mobile,
            "project" => "Lake Estates",
            "property" => "Villa",
            "leadExpectedBudget" => "6000000",
            "propertyType" => "Flat",
            "submittedDate" => "28-03-18",
            "submittedTime" => "22:22:32",
            "subsource" => "",
            "leadStatus" => "Schedule Site Visit or Schedule Meeting or Booked or Booking Cancel",
            "callRecordingUrl" => "",
            "leadScheduledDate" => "28-03-18",
            "leadScheduleTime" => "22:22:32",
            "bhkType" => "Simplex/Duplex/PentHouse/Others",
            "leadBookedDate" => "28-03-18",
            "leadBookedTime" => "22:22:32",
            "additionalProperties" => [
                "EnquiredFor" => "Buy/Sale/Rent",
                "BHKType" => "Simplex/Duplex/PentHouse/Others",
                "NoOfBHK" => "0",
                "key1" => "value1",
                "key2" => "value1"
            ]
        ];


        // var_dump($data);

        curl_setopt_array($curl, [
            CURLOPT_URL => "https://connect.leadrat.com/api/v1/integration/GoogleAds",
            CURLOPT_RETURNTRANSFER => true,
            CURLOPT_ENCODING => "",
            CURLOPT_MAXREDIRS => 10,
            CURLOPT_TIMEOUT => 30,
            CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
            CURLOPT_CUSTOMREQUEST => "POST",
            CURLOPT_POSTFIELDS => json_encode($data),
            CURLOPT_HTTPHEADER => [
                "API-Key: NDAxNGM5MzUtOGQzMS00Y2M1LTg4ODMtNTk3NTQ3OTdkN2Mx",
                "Content-Type: application/json"
            ],
        ]);

        $response = curl_exec($curl);

        // var_dump($response);
        // die;

        return true;
    }
}