25 lines
2.2 KiB
PHP
25 lines
2.2 KiB
PHP
|
|
<?php
|
|||
|
|
ini_set('display_errors', 1);
|
|||
|
|
error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE);
|
|||
|
|
|
|||
|
|
/*$pdo = new MysqlPdo(hst, ndb, user, pass);
|
|||
|
|
$sql = "SET NAMES 'utf8'";
|
|||
|
|
$pdo->query($sql);*/
|
|||
|
|
|
|||
|
|
$content = file_get_contents('php://input');
|
|||
|
|
/*if(isset($_GET['userId'])){
|
|||
|
|
|
|||
|
|
$content = $_GET['userId'].' '.$content;
|
|||
|
|
}*/
|
|||
|
|
$arPath = explode('/', __FILE__);
|
|||
|
|
|
|||
|
|
$agency_id = $arPath[count($arPath)-2];
|
|||
|
|
/*if($agency_id == 5238){
|
|||
|
|
$content = '{"webhookType":"offersMessages","chats":[{"chatId":72488492,"offerId":299720689,"createdAt":"2024-03-27T12:15:14.316422+00:00","updatedAt":"2024-03-27T12:16:11.597107+00:00","messages":[{"messageId":"0c001fce4bdee809932cd930174a62334193cfbd92efa1bb70c841a7fa5073eb","userId":97701726,"direction":"out","content":{"text":"Спасибо! Скоро перезвоним.","offers":[]},"createdAt":"2024-03-27T12:16:11.597107+00:00"},{"messageId":"6786d6f4b56dddc8807176d5a5461a01d6a57432706c24683735c86c8a29e513","userId":24082667,"direction":"in","content":{"text":"9126203000, лучше ватсап","offers":[]},"createdAt":"2024-03-27T12:16:11.365023+00:00"}]}],"users":[{"userId":97701726,"name":"TIME-HOME","avatar":{"images":{"small":"https://www.cian.ru/avatar.axd?i=97701726&t=2&p=1","big":"https://www.cian.ru/avatar.axd?i=97701726&t=2&p=2"}}},{"userId":24082667,"name":"Юлия","firstName":"Юлия","avatar":{"images":{"small":"https://www.cian.ru/avatar.axd?i=24082667&t=2&p=1","big":"https://www.cian.ru/avatar.axd?i=24082667&t=2&p=2"}}}],"offers":[{"id":299720689,"userId":97701726,"url":"https://cian.ru/sale/flat/299720689/","title":"2-комн. кв., 63,8 м², 2/14 этаж","address":"Свердловская область, Екатеринбург, улица Щербакова, 148","publishedUserId":97701726,"mainPhoto":{"miniUrl":"https://images.cdn-cian.ru/images/2125639680-3.jpg","url":"https://images.cdn-cian.ru/images/2125639680-1.jpg"},"price":"6 498 000 ₽","externalId":"37519543"}]}';
|
|||
|
|
}*/
|
|||
|
|
|
|||
|
|
file_put_contents($_SERVER['DOCUMENT_ROOT']."/webhooks/cian/5238/log_cian.txt", $content."\n", FILE_APPEND);
|
|||
|
|
//$data = json_decode($content, true);
|
|||
|
|
|
|||
|
|
require_once($_SERVER['DOCUMENT_ROOT']."/webhooks/cian.php");
|
|||
|
|
//var_dump($data);
|