44 lines
3.4 KiB
PHP
44 lines
3.4 KiB
PHP
<?php
|
||
|
||
require_once($_SERVER['DOCUMENT_ROOT']."/config.php");
|
||
ini_set('display_errors', 1);
|
||
error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE);
|
||
|
||
header('Content-Type: application/json');
|
||
|
||
//$content = '{"chats":[{"chatId":43117305,"offerId":278723788,"createdAt":"2023-06-11T10:19:48.380579+00:00","updatedAt":"2023-06-11T10:19:49.453829+00:00","messages":[{"messageId":"79cbb860ae2e3e5695bfa57e6e293cbf34a4a81954b3714a300520f66c236c53","userId":68341617,"direction":"in","content":{"offers":[],"text":"Здравствуйте. А есть фото планировки ?"},"createdAt":"2023-06-11T10:19:49.453829+00:00"}]}],"users":[{"userId":68341617,"name":"68341617","avatar":{"images":{"small":"https://www.cian.ru/avatar.axd?i=68341617&t=2&p=1","big":"https://www.cian.ru/avatar.axd?i=68341617&t=2&p=2"}}}],"offers":[{"id":278723788,"userId":12478139,"url":"https://cian.ru/sale/flat/278723788/","title":"4-комн. кв., 127,7 м², 2/7 этаж","address":"Санкт-Петербург, улица Композиторов, 4","publishedUserId":76677006,"mainPhoto":{"miniUrl":"https://cdn-p.cian.site/images/32/558/831/1388552350-3.jpg","url":"https://cdn-p.cian.site/images/32/558/831/1388552350-1.jpg"},"price":"25 700 000 ₽","externalId":"36278839"}]}';
|
||
$data = json_decode($content, true);
|
||
//var_dump($data);
|
||
/*if($_SESSION['id'] == 5238){
|
||
$data = json_decode('{"chats":[{"chatId":43117305,"offerId":278723788,"createdAt":"2023-06-15T10:19:48.380579+00:00","updatedAt":"2023-06-15T10:19:49.453829+00:00","messages":[{"messageId":"79cbb860ae2e3e5695bfa57e6e293cbf34a4a81954b3714a300520f66c236c53","userId":68341617,"direction":"in","content":{"offers":[],"text":"Здравствуйте. А есть фото планировки ?"},"createdAt":"2023-06-11T10:19:49.453829+00:00"}]}],"users":[{"userId":68341617,"name":"68341617","avatar":{"images":{"small":"https://www.cian.ru/avatar.axd?i=68341617&t=2&p=1","big":"https://www.cian.ru/avatar.axd?i=68341617&t=2&p=2"}}}],"offers":[{"id":278723788,"userId":12478139,"url":"https://cian.ru/sale/flat/278723788/","title":"4-комн. кв., 127,7 м², 2/7 этаж","address":"Санкт-Петербург, улица Композиторов, 4","publishedUserId":76677006,"mainPhoto":{"miniUrl":"https://cdn-p.cian.site/images/32/558/831/1388552350-3.jpg","url":"https://cdn-p.cian.site/images/32/558/831/1388552350-1.jpg"},"price":"25 700 000 ₽","externalId":"36278839"}]}', true);
|
||
var_dump($data);
|
||
}*/
|
||
|
||
$chat = new ChatsCianAvito();
|
||
|
||
$arrayChat = array();
|
||
|
||
$arrayChat['chatId'] = $data['chats'][0]['chatId'];
|
||
if(empty($arrayChat['chatId'])) die();
|
||
$arrayChat['messageId'] = $data['chats'][0]['messages'][0]['messageId'];
|
||
$arrayChat['type'] = 'cian';
|
||
//$timeZone = 3*3600;
|
||
$arrayChat['new'] = 0;
|
||
if($data['chats'][0]['messages'][0]['direction'] == 'in'){
|
||
$arrayChat['new'] = 1;
|
||
}
|
||
$arrayChat['object_id'] = $data['offers'][0]['externalId'];
|
||
$arrayChat['cian_id'] = $data['offers'][0]['publishedUserId'];
|
||
$arrayChat['details'] = $content;
|
||
$arrayChat['create_at_original'] = date('Y-m-d H:i:s', (strtotime($data['chats'][0]['createdAt'])));
|
||
$arrayChat['update_at_original'] = date('Y-m-d H:i:s', (strtotime($data['chats'][0]['updatedAt'])));
|
||
if(isset($agency_id) && (int)$agency_id > 0){
|
||
$arrayChat['agency_id'] = (int)$agency_id;
|
||
}
|
||
//var_dump($arrayChat);
|
||
//if($agency_id != 5238){
|
||
$chat->add_message($arrayChat);
|
||
//}
|
||
|
||
//var_dump($arrayChat);
|